﻿
body {
  /*  margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(120,120,255,0.12), transparent 60%), linear-gradient(180deg, #0b0b12 0%, #050508 100%);
    color: #eaeaea;
    font-family: system-ui, sans-serif; */

    
  margin: 0;
  min-height: 100vh;
  background: #000000; /* pure black */
  color: #eaeaea;
  font-family: system-ui, sans-serif;

}

.top-banner {
    position: fixed; /* or sticky, but fixed is foolproof */
    top: 0;
    left: 0;
    right: 0; /* this is the key for full width */
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 120px; /* 👈 key line */
    padding: 14px clamp(24px, 5vw, 80px); /*padding: 14px 96px;*/
    background: #000000; 
    border-bottom: 1px solid #1f1f2e;
}

.banner-left {
  display: flex;
  flex-direction: column;
}

.banner-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.banner-center img {
  height: 140px;          /* fits nicely in your banner */
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.radio-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tagline {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 2px;
}

.banner-right a {
  margin-left: 16px;
  font-size: 14px;
  text-decoration: none;
  color: #9aa4ff;
}

.banner-right a:hover {
  text-decoration: underline;
}



.page {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 1600px; /* 👈 key line */
    margin: 0 auto; /* 👈 centers the whole layout */

    padding-top: 220px; /* below banner */
    padding-left: clamp(32px, 5vw, 80px);
    padding-right: clamp(32px, 5vw, 80px);
    gap: 120px;
}



.player {
  background: #12121a;
  padding: 20px 24px;
  border-radius: 10px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 0 40px rgba(0,0,0,.6);
  margin: 0;
  }

.chat {
    width: 100%;
    max-width: 420px;
    float: none !important;
    position: static !important;
}

.title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 6px;
  }

.now-playing {
  font-size: 0.95em;
  opacity: 0.9;
  margin-bottom: 12px;
  }

audio {
  width: 100%;
  }

.events {
    margin-top: 18px;
}

.events-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    opacity: .9;
    letter-spacing: .2px;
}

.events-list {
    display: grid;
    gap: 10px;
}

/* Each “rectangle” card */
.event-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(15,15,25,0.85);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.event-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.event-when {
    font-size: 13px;
    opacity: .85;
}

.event-dj {
    font-size: 15px;
    font-weight: 600;
}

.event-tag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.25);
    opacity: .9;
}

/* Nice: dim past items if you ever show them */
.event-card.past {
    opacity: .45;
}




/* Ensure chat and events match the player width */
.player, .chat, .events {
    width: 100%;
    max-width: 420px;
}

    /* --- Slideshow frame under player --- */
.slideshow {
    width: 100%;
    max-width: 520px;          /* match your player width vibe */
    height: 580px;             /* adjust to taste */
    margin: 14px auto 0;       /* under the audio, centered */
    border-radius: 14px;
    overflow: hidden;
    position: relative;

    /* same dark card feel */
    background: rgba(20, 24, 35, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 600ms ease;
    will-change: opacity;
}

.slide--active {
    opacity: 1;
    z-index: 2;
}

.slide--next {
    opacity: 0;
    z-index: 3;
}

/* when animating, we fade */
.slideshow--animating .slide--active {
    opacity: 0;
}

.slideshow--animating .slide--next {
    opacity: 1;
}


.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps it nice in the frame */
    display: block;
    }

.socials {
  display: flex;
  gap: 12px;           /* space between icons */
  align-items: center;
  justify-content: center; /* or flex-start if you prefer */
  margin-bottom: 12px;
}

.social-link img {
  width: 32px;   /* adjust size as needed */
  height: 32px;
  display: block;
}

.live-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin: 6px 0 10px 0;
  padding: 4px 10px;

  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: #ff2a2a;
}

.live-icon {
  width: 18px;
  height: 18px;
  animation: livePulse 1.2s ease-in-out infinite;
}

/* Subtle pulse so it feels "on air" */
@keyframes livePulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Chat container already exists, this styles the fallback card */
.chat-fallback {
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;

  /* Card look */
  background: linear-gradient(180deg, #0e0f14, #0a0b10);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 20px 40px rgba(0, 0, 0, 0.6);

  padding: 24px;
}

/* Title text */
.chat-fallback-title {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Discord button */
.discord-button {
  padding: 12px 22px;
  background: #5865F2;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.discord-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(88, 101, 242, 0.4);
  background: #4752c4;
}

.follow-box {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    text-align: center;
}

.follow-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.follow-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

    .follow-socials img {
        width: 28px;
        height: 28px;
        transition: transform 0.2s ease;
    }

        .follow-socials img:hover {
            transform: scale(1.15);
        }



/* ===== Mobile layout ===== */
@media (max-width: 900px) {
    .page {
        flex-direction: column; /* stack vertically */
        gap: 24px; /* less space between blocks */
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 200px; /* keep content below fixed banner */
    }

    /* Allow blocks to use full width on mobile */
    .player, .events, .chat {
        max-width: 100%;
    }

        /* Optional: make chat shorter on mobile */
        .chat iframe {
            height: 460px;
        }

    /* Optional: prevent any accidental horizontal scrolling */
    body {
        overflow-x: hidden;
    }

    /* Hide left text and right links */
    .banner-left,
    .banner-right {
        display: none;
    }

    /* Center logo normally (no absolute positioning) */
    .banner-center {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    /* Make banner smaller on mobile */
    .top-banner {
        justify-content: center;
        min-height: 90px;
        padding: 10px 16px;
    }

  /*  .banner-center img {
        height: 70px;  smaller logo on phones 
    } */




}
