/* General page setup */
html {
    overflow-x: hidden;
    overflow-y: auto;
    /* Fix for mobile viewport height issues */
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #412359; /* Dark purple from palette */
    color: #efefef; /* Off-white text color */
    min-height: 100vh;
    min-height: 100svh; /* Small viewport height for consistent mobile experience */
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scroll only */
    overflow-y: auto; /* Allow vertical scrolling */
    position: relative;
}

/* Full-screen scene container */
.scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh; /* Small viewport height - always covers screen even when browser bar slides away */
    z-index: 1;
    overflow: hidden;
    pointer-events: none; /* Allow scroll through the scene */
}

/* Base layer styling - all elements are 16:9 */
.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Background - static purple layer */
.background-layer {
    z-index: 1;
}

/* Vinyl UFO - pulsing scale effect like hovering */
.vinyl-layer {
    z-index: 2;
    animation: vinyl-pulse 4s ease-in-out infinite;
    transform-origin: 58% 22%; /* Position where the vinyl center is in the image */
}

/* Beam - realistic light effect with glow and shimmer */
.beam-layer {
    z-index: 3;
    animation: beam-light 3s ease-in-out infinite;
    filter: 
        brightness(1.1) 
        blur(0.5px)
        drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.5));
}

/* Canvas for beam particles - sits above beam */
.beam-canvas {
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Texture overlay - above beam */
.texture-layer {
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

/* Person - will float slightly */
.person-layer {
    z-index: 4;
    animation: person-float 4s ease-in-out infinite;
}

/* Cat mascot - bottom right corner (bigger to show 9 eyes) */
.cat-mascot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 200px;
    height: auto;
    z-index: 5;
    opacity: 1;
}

/* Main container for text content */
.container {
    position: relative;
    z-index: 10; /* Places text above the background image */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    min-height: 100svh; /* Small viewport height - always covers screen even when browser bar slides away */
    height: 100vh;
    height: 100svh; /* Small viewport height - always covers screen even when browser bar slides away */
    padding: 80px;
    pointer-events: none; /* Allow hover to pass through to layers below */
}

/* Re-enable pointer events for text so it remains selectable */
.text-content {
    pointer-events: auto;
}

/* Text content */
.text-content {
    max-width: 500px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.title {
    font-family: 'Teko', sans-serif;
    font-size: 6rem;
    line-height: 0.9;
    margin: 0 0 30px 0;
    color: #ffffff;
    text-shadow: 
        4px 4px 0 rgba(0, 0, 0, 0.8),
        8px 8px 0 rgba(0, 0, 0, 0.6),
        12px 12px 0 rgba(0, 0, 0, 0.4);
}

.details p {
    margin: 8px 0;
    font-weight: 700;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.tagline {
    font-weight: 400 !important;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: 15px !important;
    opacity: 0.95;
}

/* Signup button */
.signup-button {
    margin-top: 25px;
    padding: 14px 32px;
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    background: rgba(215, 47, 60, 0.9);
    border: 2px solid rgba(100, 18, 18, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 
        4px 4px 0 rgba(0, 0, 0, 0.5),
        8px 8px 0 rgba(0, 0, 0, 0.25);
}

.signup-button:hover {
    background: rgba(215, 47, 60, 1);
    transform: translate(-2px, -2px);
    box-shadow: 
        6px 6px 0 rgba(0, 0, 0, 0.5),
        10px 10px 0 rgba(0, 0, 0, 0.25);
}

.signup-button:active {
    transform: translate(2px, 2px);
    box-shadow: 
        2px 2px 0 rgba(0, 0, 0, 0.5),
        4px 4px 0 rgba(0, 0, 0, 0.25);
}

/* Full-bleed overlay */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  /* stop background rubber-band */
  overscroll-behavior: contain;
}

/* Top “tap out” area (also drag handle) */
.modal-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(env(safe-area-inset-top) + 56px);
  /* faint hint that it’s a header */
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0));
  z-index: 1001;
}

/* Content fills below the strip */
.modal-content {
  position: fixed;
  top: calc(env(safe-area-inset-top) + 56px);
  left: calc(env(safe-area-inset-left));
  right: calc(env(safe-area-inset-right));
  bottom: calc(env(safe-area-inset-bottom));
  background: transparent;   /* full-bleed look */
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;          /* keep iframe edges clean */
}

/* Make the iframe feel native and stable across mobile browsers */
.signup-form {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  -webkit-overflow-scrolling: touch;
  /* Optional super subtle edge to separate from backdrop on OLED */
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}


/* --- Animations --- */

/* Vinyl UFO - subtle pulsing scale effect */
@keyframes vinyl-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* Beam - subtle light shimmer with brightness and blur variations */
@keyframes beam-light {
    0%, 100% {
        opacity: 1;
        filter: 
            brightness(1.1) 
            blur(0.5px)
            drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.5));
    }
    25% {
        opacity: 0.95;
        filter: 
            brightness(1.15) 
            blur(0.8px)
            drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.5));
    }
    50% {
        opacity: 0.9;
        filter: 
            brightness(1.2) 
            blur(1px)
            drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.5));
    }
    75% {
        opacity: 0.95;
        filter: 
            brightness(1.15) 
            blur(0.8px)
            drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.5));
    }
}

/* Person - subtle float with slight movement */
@keyframes person-float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* --- Responsive Design for Mobile --- */

@media (max-width: 768px) {
    .container {
        padding: 40px 30px !important;
        align-items: center;
        justify-content: flex-start;
    }

    .text-content {
        text-align: left;
        max-width: 100%;
    }

    .title { 
        font-size: 3.5rem !important;
        line-height: 0.95 !important;
        margin-bottom: 25px !important;
    }
    
    .cat-mascot {
        width: 180px !important;
        bottom: 25px !important;
        right: 25px !important;
    }

    .details p {
        font-size: 0.95rem !important;
        margin: 10px 0 !important;
    }
    
    .tagline {
        font-size: 0.85rem !important;
    }
    
    .signup-button {
        font-size: 1.2rem !important;
        padding: 12px 28px !important;
    }
    
    .modal {
        padding: 30px 15px !important;
    }
    
    .modal-content {
        max-width: 95% !important;
    }
    
    /* Partners responsive */
    .partners-section {
        padding: 40px 20px !important;
    }
    
    .partners-logos {
        gap: 40px 45px !important;
    }
    
    .partner-logo {
        height: 150px !important;
    }
    
    /* Schedule responsive */
    .schedule-section {
        padding: 60px 20px 80px !important;
    }
    
    .schedule-title {
        font-size: clamp(2.2rem, 7vw, 3rem) !important;
        padding: 0 15px !important;
    }
    
    .schedule-subtitle {
        font-size: 1rem !important;
    }
    
    .schedule-info-boxes {
        gap: 12px !important;
        margin-top: 16px !important;
    }
    
    .info-box {
        padding: 12px 16px !important;
        min-width: 240px !important;
    }
    
    .info-label {
        font-size: 0.7rem !important;
    }
    
    .info-value {
        font-size: 0.9rem !important;
    }
    
    .info-address {
        font-size: 0.8rem !important;
    }
    
    .schedule-timeline {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .schedule-card {
        padding: 20px !important;
    }
    
    .day-date {
        font-size: 1.5rem !important;
    }
    
    .event-title {
        font-size: 0.95rem !important;
    }
    
    .event-icon {
        top: 15px !important;
        right: 15px !important;
        width: 42px !important;
        height: 42px !important;
    }
    
    .schedule-card.invite-only .event-icon {
        width: 55px !important;
        height: 55px !important;
    }
    
    .event-artists {
        font-size: 0.85rem !important;
    }
    
    .decor-asset {
        display: none !important;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .container {
        padding: 30px 20px !important;
        align-items: center;
        justify-content: flex-start;
    }
    
    .text-content {
        text-align: left;
    }

    .title { 
        font-size: 2.8rem !important;
        margin-bottom: 20px !important;
    }
    
    .cat-mascot {
        width: 160px !important;
        bottom: 20px !important;
        right: 20px !important;
    }

    .details p {
        font-size: 0.9rem !important;
        margin: 8px 0 !important;
    }
    
    .tagline {
        font-size: 0.8rem !important;
        margin-top: 12px !important;
    }
    
    .signup-button {
        font-size: 1.1rem !important;
        padding: 10px 24px !important;
        margin-top: 20px !important;
    }
    
    .modal {
        padding: 25px 10px !important;
    }
    
    .modal-content {
        max-width: 98% !important;
    }
    
    /* Partners responsive for small screens */
    .partners-section {
        padding: 30px 15px !important;
    }
    
    .partners-logos {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px 45px !important;
        max-width: 450px !important;
        margin: 0 auto !important;
    }
    
    .partners-logos a {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .partner-logo {
        height: 125px !important;
        width: 100% !important;
        max-width: 200px !important;
    }
    
    /* Schedule responsive for small screens */
    .schedule-section {
        padding: 40px 15px 60px !important;
    }
    
    .schedule-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        padding: 0 10px !important;
    }
    
    .schedule-subtitle {
        font-size: 0.9rem !important;
    }
    
    .schedule-info-boxes {
        gap: 10px !important;
        margin-top: 14px !important;
        flex-direction: column !important;
    }
    
    .info-box {
        padding: 10px 14px !important;
        min-width: 240px !important;
        max-width: 100% !important;
    }
    
    .info-icon {
        width: 14px !important;
        height: 14px !important;
    }
    
    .info-label {
        font-size: 0.65rem !important;
    }
    
    .info-value {
        font-size: 0.85rem !important;
    }
    
    .info-address {
        font-size: 0.75rem !important;
    }
    
    .schedule-timeline {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .schedule-card {
        padding: 18px 15px !important;
    }
    
    .day-date {
        font-size: 1.35rem !important;
    }
    
    .day-time {
        font-size: 0.85rem !important;
    }
    
    .event-type {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }
    
    .event-title {
        font-size: 0.9rem !important;
    }
    
    .event-icon {
        top: 12px !important;
        right: 12px !important;
        width: 36px !important;
        height: 36px !important;
    }
    
    .schedule-card.invite-only .event-icon {
        width: 48px !important;
        height: 48px !important;
    }
    
    .event-artists {
        font-size: 0.8rem !important;
    }
    
    .event-note {
        font-size: 0.75rem !important;
    }
}

/* --- Hyperlink Styles --- */
a {
    color: #d72f3c; /* Red accent color matching the button */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

a:active {
    color: #ff9ca6; /* Slightly lighter red when clicked */
    text-shadow: 0 0 6px rgba(255, 156, 166, 0.8);
    transform: translateY(1px);
}

a:visited {
    color: #b42434; /* Deeper red tone to indicate visited */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .signup-button {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom)); /* Account for safe area */
    z-index: 900;              /* below the modal (1000), above art (1–4) */
    display: inline-flex;
    justify-content: center;
    
    box-shadow:
      6px 6px 0 rgba(0,0,0,0.5),
      10px 10px 0 rgba(0,0,0,0.25);
    
    /* Hide when scrolled past hero section */
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  /* Hide button when scrolled */
  body.scrolled .signup-button {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }

  /* add room so the fixed button doesn't overlap the paragraph lines */
  .text-content { padding-bottom: 100px; }
}
/* Desktop: center the form as a card instead of full-bleed */
@media (min-width: 1024px) {
  /* slightly taller top strip on desktop is nice */
  .modal-strip {
    height: calc(env(safe-area-inset-top) + 64px);
  }

  .modal-content {
    position: fixed;
    top:    calc(env(safe-area-inset-top) + 64px);
    bottom: calc(env(safe-area-inset-bottom) + 64px);

    /* Center horizontally */
    left: 50%;
    right: auto;
    width: min(600px, 86vw);          /* responsive but capped */
    transform: translateX(-50%);

    /* Card look */
    background: rgba(0,0,0,0.12);     /* subtle glass; remove if you want pure transparent */
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    overflow: hidden;
  }

  /* Let the iframe be clean inside the card */
  .signup-form { box-shadow: none; }
}
/* --- Partner Logos Section --- */
.partners-section {
  position: relative;
  z-index: 11;
  background-color: #120A19;
  background-image: url('assets/bg - combined .png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 40px;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 10, 25, 0.7);
  pointer-events: none;
  z-index: 1;
}

.partners-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 45px 60px;
}

.partners-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.partner-logo {
  height: 170px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partners-logos a:hover .partner-logo {
  opacity: 1;
  filter: brightness(0) invert(1);
  transform: scale(1.05);
}

/* --- Schedule Section --- */
.schedule-section {
  position: relative;
  z-index: 11;
  background-color: #412359;
  background-image: url('assets/bg - combined .png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 40px 120px;
  overflow: hidden;
}

.schedule-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 10, 25, 0.4);
  pointer-events: none;
  z-index: 1;
}

.schedule-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.schedule-header {
  text-align: center;
  margin-bottom: 60px;
}

.schedule-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: #ffffff;
  margin: 0 0 15px 0;
  text-shadow: 
    4px 4px 0 rgba(0, 0, 0, 0.8),
    8px 8px 0 rgba(0, 0, 0, 0.6);
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.schedule-subtitle {
  font-size: 1.1rem;
  color: #efefef;
  opacity: 0.9;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.schedule-info-boxes {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.15);
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  transition: all 0.3s ease;
}

.date-box {
  opacity: 0.85;
}

.venue-box {
  text-decoration: none;
  color: #efefef;
  opacity: 0.85;
}

.venue-box:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.info-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: #d72f3c;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  width: 100%;
}

.info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #efefef;
  opacity: 0.7;
}

.info-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #efefef;
}

.info-address {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #efefef;
  opacity: 0.9;
}

.schedule-timeline {
  position: relative;
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.schedule-day {
  position: relative;
  display: flex;
}

.schedule-card {
  position: relative;
  background: linear-gradient(135deg, rgba(119, 72, 156, 0.12) 0%, rgba(65, 35, 89, 0.08) 100%);
  border: 2px solid rgba(215, 47, 60, 0.5);
  border-radius: 12px;
  padding: 25px;
  width: 100%;
  /*backdrop-filter: blur(8px);*/
  transition: all 0.3s ease;
  box-shadow: 
    4px 4px 0 rgba(0, 0, 0, 0.4),
    8px 8px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Decorative corner accent */
.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  /*background: linear-gradient(135deg, rgba(215, 47, 60, 0.2) 0%, transparent 70%);*/
  border-radius: 0 12px 0 100%;
}

.schedule-card:hover {
  transform: translate(-2px, -2px);
  border-color: rgba(215, 47, 60, 0.8);
  background: linear-gradient(135deg, rgba(119, 72, 156, 0.2) 0%, rgba(65, 35, 89, 0.15) 100%);
  box-shadow: 
    6px 6px 0 rgba(0, 0, 0, 0.5),
    12px 12px 0 rgba(0, 0, 0, 0.3);
}

.schedule-card.invite-only {
  border-color: rgba(215, 47, 60, 0.8);
  background: linear-gradient(135deg, rgba(168, 34, 45, 0.15) 0%, rgba(78, 15, 20, 0.1) 100%);
}

.schedule-card.closed {
  border-color: rgba(119, 72, 156, 0.4);
  background: linear-gradient(135deg, rgba(65, 35, 89, 0.12) 0%, rgba(18, 10, 25, 0.08) 100%);
  opacity: 0.85;
}

.schedule-card.closed::before {
  background: linear-gradient(135deg, rgba(119, 72, 156, 0.2) 0%, transparent 70%);
}

.day-date {
  font-family: 'Teko', sans-serif;
  font-size: 1.7rem;
  color: #D72F3C;
  margin: 0 0 5px 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}


.day-time {
  font-size: 0.95rem;
  color: #efefef;
  margin: 0 0 12px 0;
  opacity: 0.95;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}

.event-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.event-type.invite {
  background: rgba(215, 47, 60, 0.35);
  border: 1px solid rgba(215, 47, 60, 0.7);
  color: #ff6b75;
}

.event-type.public {
  background: rgba(119, 72, 156, 0.35);
  border: 1px solid rgba(119, 72, 156, 0.7);
  color: #b388d9;
}

.event-type.closed {
  background: rgba(65, 35, 89, 0.4);
  border: 1px solid rgba(65, 35, 89, 0.8);
  color: #999;
}

.event-title {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0 0 10px 0;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}

.event-icon {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.schedule-card.invite-only .event-icon {
  width: 85px;
  height: 85px;
  top: 0px;
}

.event-artists {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #efefef;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.7);
}

.event-artists a {
  color: #D72F3C;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.event-artists a:hover {
  color: #ff9ca6;
  text-shadow: 0 0 8px rgba(255, 156, 166, 0.8);
}

.event-note {
  font-size: 0.8rem;
  font-style: italic;
  color: #ccc;
  margin-top: 8px;
  opacity: 0.85;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.7);
}

/* Decorative floating assets */
.decor-asset {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.4));
}

.decor-asset.vinyl {
  width: 140px;
  animation: float-gentle 8s ease-in-out infinite;
}

.decor-asset.cassette {
  width: 120px;
  animation: float-gentle 7s ease-in-out infinite 1s;
}

.decor-asset.radio {
  width: 130px;
  animation: float-gentle 9s ease-in-out infinite 2s;
}

.decor-asset.dj {
  width: 160px;
  animation: float-gentle 10s ease-in-out infinite 1.5s;
}

.decor-asset.onair {
  width: 125px;
  animation: float-gentle 8.5s ease-in-out infinite 0.5s;
}

.decor-asset.satellite {
  width: 135px;
  animation: float-gentle 9.5s ease-in-out infinite 2.5s;
}

@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* --- Page Loader --- */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh; /* Small viewport height for consistent mobile experience */
  background-color: #000000; /* Simple black background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000; /* above everything */
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Cat loading container */
.loader-cats {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 40px;
}

.loader-cat {
  position: relative;
  width: 200px;
  height: 200px;
}

/* Static glow background that fades up independently of the images */
.loader-cat::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -25%;
  right: -25%;
  bottom: -50%;
  background: radial-gradient(circle at center 50%, rgba(215, 47, 60, 0.4) 0%, rgba(215, 47, 60, 0.2) 40%, transparent 70%);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  animation: glowPulse 2s ease-in-out infinite;
}

/* Glow pulses continuously */
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Cat images - positioned absolutely for crossfade */
.cat-peek-1,
.cat-peek-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease-in-out;
}

/* Cat 1 starts visible */
.cat-peek-1 {
  opacity: 1;
}

/* Cat 2 starts hidden */
.cat-peek-2 {
  opacity: 0;
}

/* When loading is complete, transition to cat 2 */
#loader.loaded .cat-peek-1 {
  opacity: 0;
}

#loader.loaded .cat-peek-2 {
  opacity: 1;
}

/* Responsive loader */
@media (max-width: 768px) {
  .loader-cat {
    width: 160px;
    height: 160px;
  }
  
  .loader-cats {
    gap: 30px;
  }
  
  .loader-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .loader-cat {
    width: 140px;
    height: 140px;
  }
  
  .loader-cats {
    gap: 20px;
  }
  
  .loader-text {
    font-size: 1.1rem;
  }
}

/* Footer Styles */
.site-footer {
  position: relative;
  z-index: 10;
  background-color: #412359;
  background-image: url('assets/bg - combined .png');
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.social-links {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  color: #efefef;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.social-links a:hover {
  color: #d72f3c;
  transform: translateY(-3px);
}

.social-links a:active {
  transform: translateY(-1px);
}

.social-links svg {
  width: 24px;
  height: 24px;
}

.social-links .icon-mixcloud svg,
.social-links .icon-soundcloud svg {
  width: 32px;
  height: 32px;
}

.copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #efefef;
  text-align: center;
  margin: 0;
  opacity: 0.9;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 32px 20px;
  }
  
  .social-links {
    gap: 24px;
  }
  
  .social-links a {
    width: 36px;
    height: 36px;
  }
  
  .social-links svg {
    width: 22px;
    height: 22px;
  }
  
  .social-links .icon-mixcloud svg,
  .social-links .icon-soundcloud svg {
    width: 28px;
    height: 28px;
  }
  
  .copyright {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 28px 16px;
  }
  
  .social-links {
    gap: 20px;
  }
  
  .social-links a {
    width: 32px;
    height: 32px;
  }
  
  .social-links svg {
    width: 20px;
    height: 20px;
  }
  
  .social-links .icon-mixcloud svg,
  .social-links .icon-soundcloud svg {
    width: 26px;
    height: 26px;
  }
  
  .copyright {
    font-size: 12px;
  }
}
