/* ============================================
   FLY ZONE USA — Raw Detroit Energy
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0a1628;
  --deep-navy: #060e1a;
  --red: #c41e3a;
  --bright-red: #e63946;
  --white: #f5f5f5;
  --silver: #b0b8c1;
  --dark-gray: #1a2332;
  --mid-gray: #2a3a4e;
  --grit-texture: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M5 0h1L0 5v1zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--deep-navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* === GRIT OVERLAY === */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grit-texture);
  pointer-events: none;
  z-index: 1000;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(6, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 30, 58, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--silver);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bright-red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bright-red);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6,14,26,0.97) 0%, rgba(10,22,40,0.92) 50%, rgba(196,30,58,0.15) 100%),
    var(--deep-navy);
}

.hero-photo {
  background:
    linear-gradient(135deg, rgba(6,14,26,0.88) 0%, rgba(10,22,40,0.82) 40%, rgba(196,30,58,0.25) 100%),
    url('images/trick-trick-hero.jpg') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196,30,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--deep-navy), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero-logo {
  width: 280px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 40px rgba(196,30,58,0.3));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 20px rgba(196,30,58,0.2)); }
  to { filter: drop-shadow(0 0 50px rgba(196,30,58,0.4)); }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .accent {
  -webkit-text-fill-color: var(--bright-red);
  display: block;
  font-size: 1.2em;
}

.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--silver);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

.btn-primary:hover {
  background: var(--bright-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,30,58,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--silver);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

.btn-outline:hover {
  border-color: var(--bright-red);
  color: var(--bright-red);
  transform: translateY(-2px);
}

/* === SECTIONS === */
section {
  padding: 6rem 2rem;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.section-header .line {
  width: 80px;
  height: 3px;
  background: var(--red);
  margin: 1rem auto;
}

.section-header p {
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto;
}

/* === RED STRIPE DIVIDER === */
.divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

/* === ABOUT PREVIEW (Homepage) === */
.about-preview {
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--bright-red);
}

.about-text p {
  color: var(--silver);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-box {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  padding: 1.5rem;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.stat-box .number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--bright-red);
}

.stat-box .label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--silver);
}

/* === LATEST EPISODES === */
.latest-episodes {
  background: var(--deep-navy);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.episode-card {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.episode-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.episode-thumb {
  width: 100%;
  height: 200px;
  background: var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.episode-thumb .play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.episode-card:hover .play-icon {
  transform: scale(1.1);
}

.episode-info {
  padding: 1.5rem;
}

.episode-info .ep-number {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bright-red);
  margin-bottom: 0.5rem;
}

.episode-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.episode-info p {
  font-size: 0.9rem;
  color: var(--silver);
}

/* === HOST SECTION === */
.host-section {
  background: var(--navy);
  overflow: hidden;
}

.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.host-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--dark-gray), var(--mid-gray));
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.host-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,14,26,0.7) 100%);
  z-index: 1;
}

.host-image::after {
  display: none;
}

.host-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.host-info .host-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bright-red);
  margin-bottom: 2rem;
}

.host-info p {
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === JOIN / NEWSLETTER === */
.join-section {
  background:
    linear-gradient(135deg, var(--deep-navy) 0%, rgba(196,30,58,0.1) 100%);
  text-align: center;
}

.join-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.join-section p {
  color: var(--silver);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--dark-gray);
  border: 2px solid var(--mid-gray);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.email-form input:focus {
  border-color: var(--red);
}

.email-form input::placeholder {
  color: var(--silver);
}

.email-form button {
  padding: 1rem 2rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.email-form button:hover {
  background: var(--bright-red);
}

/* === CONSENT CHECKBOX (SMS / Privacy / Terms) === */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--silver);
  text-align: left;
  margin: 0.25rem 0 0.5rem;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}

.consent-label a {
  color: var(--bright-red);
  text-decoration: underline;
}

.consent-label a:hover {
  color: var(--white);
}

/* === SOCIAL ICONS === */
.socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding: 3rem 0;
}

.social-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 0 rgba(196,30,58,0));
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon:hover img {
  filter: drop-shadow(0 0 10px rgba(230,57,70,0.6));
}

/* === FOOTER === */
.footer {
  background: var(--deep-navy);
  border-top: 1px solid var(--mid-gray);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--silver);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--bright-red);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--silver);
}

/* === ABOUT PAGE === */
.page-header {
  padding: 8.5rem 2rem 1rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(196,30,58,0.1) 0%, var(--deep-navy) 100%),
    var(--navy);
}

.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 4px;
}

.page-header .line {
  width: 80px;
  height: 3px;
  background: var(--red);
  margin: 1rem auto;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.25rem 0;
}

.content-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--bright-red);
}

.content-block p {
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Ecosystem cards */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.eco-card {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
}

.eco-card:hover {
  border-color: var(--red);
}

.eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.eco-card-logo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 0 12px rgba(196,30,58,0.2));
}

.eco-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.eco-card .card-type {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bright-red);
  margin-bottom: 1rem;
}

.eco-card p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === PODCAST PAGE === */
.podcast-list {
  max-width: 900px;
  margin: 0 auto;
}

.podcast-episode {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--mid-gray);
  align-items: center;
  transition: all 0.3s;
}

.podcast-episode:hover {
  background: rgba(255,255,255,0.02);
  padding-left: 1rem;
}

.podcast-thumb {
  width: 200px;
  height: 120px;
  background: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--mid-gray);
}

.podcast-details .ep-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bright-red);
}

.podcast-details h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0.3rem 0;
}

.podcast-details p {
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.watch-btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bright-red);
  border: 1px solid var(--bright-red);
  padding: 0.5rem 1.5rem;
  transition: all 0.3s;
}

.watch-btn:hover {
  background: var(--bright-red);
  color: var(--white);
}

/* === MEDIA PAGE === */
.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.clip-card {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  overflow: hidden;
  transition: all 0.3s;
}

.clip-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.clip-thumb {
  height: 180px;
  background: var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.clip-thumb .play-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(196,30,58,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clip-category {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--red);
  padding: 0.3rem 0.8rem;
  color: var(--white);
}

.clip-info {
  padding: 1.2rem;
}

.clip-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.clip-info .clip-date {
  font-size: 0.8rem;
  color: var(--silver);
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background: var(--dark-gray);
  border: 2px solid var(--mid-gray);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form textarea {
  height: 180px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--silver);
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: var(--bright-red);
}

.contact-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--mid-gray);
}

.contact-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bright-red);
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: var(--silver);
}

/* === CLIP FILTER TABS === */
.filter-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--mid-gray);
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--red);
  color: var(--white);
  background: rgba(196,30,58,0.15);
}

/* === PHOTO WALL — RAW DETROIT STYLE === */
.photo-wall-section {
  background: var(--deep-navy);
  overflow: hidden;
}

/* Scratch-to-reveal Detroit image */
.scratch-reveal {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  cursor: url('images/FlyZoneUSAcoin-cursor.png') 54 52, crosshair;
  user-select: none;
  -webkit-user-select: none;
}
.scratch-light {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#scratchCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.scratch-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.scratch-hint.hidden {
  opacity: 0;
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 6px;
  margin-top: 2rem;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--dark-gray);
  cursor: pointer;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.2);
  transition: all 0.5s ease;
}

.photo-frame:hover img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.08);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(196,30,58,0.15) 100%);
  transition: all 0.5s ease;
  pointer-events: none;
}

.photo-frame:hover .photo-overlay {
  background: linear-gradient(180deg, transparent 50%, rgba(196,30,58,0.35) 100%);
}

.photo-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.7);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  z-index: 2;
  transition: all 0.3s;
}

.photo-frame:hover .photo-tag {
  color: var(--bright-red);
  text-shadow: 2px 2px 12px rgba(0,0,0,0.9);
}

/* Large frame spans 2 columns */
.photo-frame-lg {
  grid-column: span 2;
}

/* Tall frame spans 2 rows */
.photo-frame-tall {
  grid-row: span 2;
}

/* Wide frame spans 2 columns */
.photo-frame-wide {
  grid-column: span 2;
}

/* Red accent border on left of frames */
.photo-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-frame:hover::before {
  opacity: 1;
}

/* Grunge noise overlay on photos */
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grit-texture);
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(6,14,26,0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 2px solid var(--red);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid,
  .host-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .podcast-episode {
    grid-template-columns: 1fr;
  }

  .podcast-thumb {
    width: 100%;
  }

  .hero-logo {
    width: 200px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.9rem 1.5rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .email-form {
    flex-direction: column;
  }

  .photo-wall {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .photo-frame-lg,
  .photo-frame-wide {
    grid-column: span 2;
  }

  .photo-frame-tall {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .photo-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .photo-frame-lg,
  .photo-frame-wide {
    grid-column: span 1;
  }
}

/* === BLENDED SOCIAL FEED — THE WIRE === */
.social-wire-section {
  background: var(--navy);
  overflow: hidden;
}

.social-wire {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 2rem;
}

.wire-card {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.wire-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

/* Platform color stripe on top */
.wire-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 3;
  transition: height 0.3s;
}

.wire-card:hover::before {
  height: 4px;
}

.wire-card[data-platform="instagram"]::before { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.wire-card[data-platform="x"]::before { background: #fff; }
.wire-card[data-platform="tiktok"]::before { background: linear-gradient(90deg, #00f2ea, #ff0050); }
.wire-card[data-platform="truth"]::before { background: linear-gradient(90deg, #1a3a6b, #4a90d9); }
.wire-card[data-platform="threads"]::before { background: linear-gradient(90deg, #000, #333); }
.wire-card[data-platform="youtube"]::before { background: #c41e3a; }

.wire-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--silver);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Card header with platform tag */
.wire-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem 0.6rem;
}

.wire-platform {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 0.25rem 0.7rem;
  border: 1px solid;
}

.wire-card[data-platform="instagram"] .wire-platform {
  color: #e6683c;
  border-color: rgba(230, 104, 60, 0.4);
}
.wire-card[data-platform="x"] .wire-platform {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.wire-card[data-platform="tiktok"] .wire-platform {
  color: #00f2ea;
  border-color: rgba(0, 242, 234, 0.4);
}
.wire-card[data-platform="truth"] .wire-platform {
  color: #4a90d9;
  border-color: rgba(74, 144, 217, 0.4);
}
.wire-card[data-platform="threads"] .wire-platform {
  color: #999;
  border-color: rgba(153, 153, 153, 0.4);
}
.wire-card[data-platform="youtube"] .wire-platform {
  color: #c41e3a;
  border-color: rgba(196, 30, 58, 0.4);
}

.wire-handle {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--silver);
}

/* Card image area */
.wire-image {
  width: 100%;
  height: 200px;
  background: var(--mid-gray);
  overflow: hidden;
  position: relative;
}

.wire-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.1);
  transition: all 0.5s;
}

.wire-card:hover .wire-image img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.05);
}

/* Card body */
.wire-body {
  padding: 1rem 1.2rem;
  flex: 1;
}

.wire-body p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.6;
}

.wire-body .wire-hashtag {
  color: var(--bright-red);
  font-weight: 500;
}

/* Card footer */
.wire-footer {
  padding: 0.8rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wire-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(176, 184, 193, 0.5);
}

.wire-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bright-red);
  transition: color 0.3s;
}

.wire-card:hover .wire-cta {
  color: var(--white);
}

/* Tall card variation */
.wire-card-tall .wire-image {
  height: 300px;
}

/* Text-only card (no image) */
.wire-card-text {
  background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(196,30,58,0.08) 100%);
}

.wire-card-text .wire-body {
  padding: 1.5rem 1.2rem;
}

.wire-card-text .wire-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white);
}

/* Featured wide card */
.wire-card-featured {
  grid-column: span 2;
}

.wire-card-featured .wire-image {
  height: 260px;
}

/* Grit overlay on all cards */
.wire-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grit-texture);
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}

/* Follow bar */
.social-follow-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.follow-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.8rem 2rem;
  border: 2px solid var(--mid-gray);
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.follow-btn:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.follow-btn[data-platform="instagram"]:hover {
  border-color: #e6683c;
  box-shadow: 0 6px 24px rgba(230, 104, 60, 0.25);
}
.follow-btn[data-platform="x"]:hover {
  border-color: #fff;
  box-shadow: 0 6px 24px rgba(255,255,255,0.15);
}
.follow-btn[data-platform="tiktok"]:hover {
  border-color: #00f2ea;
  box-shadow: 0 6px 24px rgba(0, 242, 234, 0.25);
}
.follow-btn[data-platform="truth"]:hover {
  border-color: #4a90d9;
  box-shadow: 0 6px 24px rgba(74, 144, 217, 0.25);
}

.follow-btn .follow-tag {
  font-size: 0.65rem;
  opacity: 0.6;
}

/* Responsive social wire */
@media (max-width: 1024px) {
  .social-wire {
    grid-template-columns: repeat(2, 1fr);
  }
  .wire-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .social-wire {
    grid-template-columns: 1fr;
  }
  .wire-card-featured {
    grid-column: span 1;
  }
  .social-follow-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .follow-btn {
    justify-content: center;
    text-align: center;
  }
}

/* === VIDEO COMPONENTS === */

/* Hero video background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.35;
  filter: grayscale(40%) contrast(1.2);
}

/* Torch overlay — replaces ::after so JS can control it */
.hero-torch-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,14,26,0.7) 0%, rgba(6,14,26,0.4) 40%, rgba(6,14,26,0.85) 100%),
    linear-gradient(135deg, rgba(196,30,58,0.15) 0%, transparent 60%);
  z-index: 1;
  transition: background 0.15s ease;
  pointer-events: none;
}

/* Spark canvas — floats above video, below content */
#sparkCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* Torchlight cursor — red dot center, white ring, warm glow */
.fire-cursor {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 4;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* Warm ambient glow behind everything */
.fire-cursor::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,160,40,0.25) 0%, rgba(255,106,0,0.1) 40%, transparent 70%);
  animation: torchPulse 2.5s ease-in-out infinite alternate;
  filter: blur(8px);
}
/* Red center dot */
.fire-cursor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bright-red, #e63946);
  box-shadow: 0 0 6px 2px rgba(230,57,70,0.6), 0 0 16px 4px rgba(230,57,70,0.25);
}
/* Thin white ring — added via extra element in HTML */
.fire-cursor-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  animation: ringPulse 2.5s ease-in-out infinite alternate;
}

@keyframes torchPulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}
@keyframes ringPulse {
  0% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1.05); }
}

/* Hide default cursor in hero */
#hero { cursor: none; }
#hero .hero-content { cursor: none; }
#hero .hero-content a.btn { cursor: none; }

/* Video episode cards — homepage */
.video-episode-card {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.video-episode-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(196,30,58,0.2), 0 8px 30px rgba(0,0,0,0.5);
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
  background: var(--mid-gray);
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: grayscale(30%) contrast(1.15);
}

.video-episode-card:hover .video-thumb-wrap img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.06);
}

/* Animated preview on hover (WebP) */
.video-thumb-wrap .preview-anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

.video-episode-card:hover .video-thumb-wrap .preview-anim {
  opacity: 1;
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(196,30,58,0.5);
  cursor: pointer;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(196,30,58,0.4);
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

.video-episode-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--bright-red);
  box-shadow: 0 6px 30px rgba(230,57,70,0.6);
}

/* Red corner accent */
.video-thumb-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--bright-red);
  z-index: 4;
  transition: height 0.4s;
}

.video-episode-card:hover .video-thumb-wrap::before {
  height: 100%;
}

/* Gradient overlay */
.video-thumb-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(6,14,26,0.8), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Episode number badge */
.ep-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--white);
  background: rgba(196,30,58,0.85);
  padding: 0.3rem 0.8rem;
  z-index: 4;
  backdrop-filter: blur(4px);
}

.video-episode-info {
  padding: 1.5rem;
}

.video-episode-info .ep-number {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bright-red);
  margin-bottom: 0.4rem;
}

.video-episode-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.video-episode-card:hover .video-episode-info h3 {
  color: var(--bright-red);
}

.video-episode-info p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.6;
}

/* Expanded video player (replaces thumbnail on click) */
.video-player-embed {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  background: #000;
}

.video-player-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* === PODCAST PAGE — FULL VIDEO EPISODES === */
.podcast-video-episode {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  margin-bottom: 2.5rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.podcast-video-episode:hover {
  border-color: var(--red);
}

.podcast-video-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--mid-gray);
}

.podcast-video-header .ep-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bright-red);
  background: rgba(196,30,58,0.1);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(196,30,58,0.3);
  flex-shrink: 0;
  white-space: nowrap;
}

.podcast-video-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  flex: 1;
}

/* Manual title break (after the dash) only kicks in on narrower screens.
   Wide screens have room for a single-line title. */
.title-break { display: none; }
@media (max-width: 1199px) {
  .title-break { display: initial; }
}

.podcast-video-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: start;
  gap: 0;
}

.podcast-video-player {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.podcast-video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.podcast-video-desc {
  padding: 2rem;
  max-height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(196,30,58,0.05) 100%);
}

/* Scrollbar styling for description */
.podcast-video-desc::-webkit-scrollbar {
  width: 5px;
}
.podcast-video-desc::-webkit-scrollbar-track {
  background: var(--dark-gray);
}
.podcast-video-desc::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

.podcast-video-desc p {
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.podcast-video-desc .watch-btn {
  align-self: flex-start;
}

/* === MEDIA PAGE — FEATURED VIDEO === */
.featured-clip {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  overflow: hidden;
  margin-bottom: 3rem;
}

.featured-clip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--mid-gray);
}

.featured-clip-header .now-playing {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: var(--bright-red);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.now-playing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bright-red);
  animation: nowPlayingPulse 1.5s ease-in-out infinite;
}

@keyframes nowPlayingPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.featured-clip-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.featured-clip-player {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.featured-clip-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Clip cards with video thumbnails */
.clip-card-video .clip-thumb {
  position: relative;
  overflow: hidden;
}

.clip-card-video .clip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 0.4s;
}

.clip-card-video:hover .clip-thumb img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Responsive video */
@media (max-width: 768px) {
  .podcast-video-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.2rem 1.5rem;
  }

  .podcast-video-header h3 {
    font-size: 1.2rem;
  }

  .podcast-video-body {
    grid-template-columns: 1fr;
  }

  .podcast-video-desc {
    padding: 1.5rem;
  }

  .hero-video-bg iframe {
    width: 500%;
    height: 500%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .video-thumb-wrap {
    height: 180px;
  }
}

/* ============================================
   SHORTS HORIZONTAL SCROLL CAROUSEL
   ============================================ */
.shorts-scroll-wrap {
  position: relative;
  margin-top: 2rem;
}

.shorts-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
}
.shorts-scroll::-webkit-scrollbar { display: none; }

.short-card {
  flex: 0 0 220px;
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.short-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.short-player {
  position: relative;
  padding-top: 177.78%; /* 9:16 aspect ratio */
  background: #000;
}

.short-title {
  padding: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  min-height: 2.6rem;
}

/* Scroll arrows */
.shorts-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196, 30, 58, 0.85);
  color: #fff;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.shorts-arrow:hover {
  background: var(--red);
}
.shorts-arrow-left { left: -12px; }
.shorts-arrow-right { right: -12px; }

@media (max-width: 768px) {
  .short-card {
    flex: 0 0 180px;
  }
  .shorts-arrow {
    display: none; /* swipe on mobile */
  }
}
