﻿.barefoot-panel {
  background: linear-gradient(180deg, rgba(112, 39, 20, 0.85), rgba(42, 17, 11, 0.97)),
              radial-gradient(circle at top left, rgba(255, 180, 140, 0.18), transparent 35%),
              rgba(18, 7, 4, 0.95);
  /* border: 1px solid rgba(255, 182, 148, 0.35); */
  border: 2px solid rgba(255, 0, 255);
  box-shadow: 0 0 40px rgba(200, 120, 85, 0.25);
  padding: 2rem;
  border-radius: 18px;
  max-width: 860px;
  margin: 2rem auto;
  color: #f3e4d9;
  backdrop-filter: blur(10px);
}

.barefoot-panel h2,
.barefoot-panel h3 {
  font-family: 'Verdana', sans-serif;
  color: #ffd8bf;
  margin-top: 1.5rem;
}

.barefoot-panel h2 {
  font-size: 2rem;
}

.barefoot-panel h3 {
  font-size: 1.35rem;
}

.barefoot-panel p,
.barefoot-panel li {
  line-height: 1.75;
  color: #f7e7dc;
}

.barefoot-panel ul {
  margin: 1rem 0 0 1.25rem;
  padding: 0;
  list-style: disc;
}

.barefoot-panel li {
  margin-bottom: 0.8rem;
}

.barefoot-panel .tiny {
  color: #f1d4c3;
}

.barefoot-panel .post-nav {
  margin-top: 2rem;
}

.barefoot-panel .post-nav a {
  color: #ffd6b5;
}

.barefoot-panel .post-nav a:hover {
  text-shadow: 0 0 12px rgba(255, 210, 170, 0.6);
}







.crt-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 20px;
}

/* Base image styling */
.crt-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  filter: contrast(1.1) brightness(1.05) saturate(1.2);
}

/* Scanlines overlay */
.crt-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0px,
    rgba(0, 0, 0, 0.25) 1px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* RGB shift + glow */
.crt-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.08;
  filter: blur(1px);
  transform: translate(1px, 0);
}

/* Flicker animation */
@keyframes crt-flicker {
  0%   { opacity: 0.95; }
  50%  { opacity: 1; }
  100% { opacity: 0.96; }
}

.crt-image {
  animation: crt-flicker 0.15s infinite;
}