/* ============================= */
/* RESET & BASE                  */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000;
    color: #e0e0e0;
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: rgba(0,255,136,0.3);
    color: #fff;
}

/* ============================= */
/* FLOATING PARTICLES             */
/* ============================= */

.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(0,255,136,0.4);
    animation: floatUp linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ============================= */
/* NAVBAR                         */
/* ============================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 12px 40px;
    background: rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(0,255,136,0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00ff88, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #8a2be2);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #00ff88;
}

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

/* ============================= */
/* HERO                           */
/* ============================= */

.hero {
    min-height: 100vh;
    background: url("assets/alley.jpg") center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.7) 70%,
        rgba(0,0,0,0.95) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(0,255,136,0.4);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #00ff88;
    margin-bottom: 30px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(0,255,136,0.15); }
}

.logo {
    font-family: 'Orbitron', sans-serif;
    line-height: 1.1;
}

.logo-line1 {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoGlow 4s ease-in-out infinite alternate;
}

.logo-line2 {
    display: block;
    font-size: 7rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8a2be2, #c77dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 12px;
    animation: logoGlow2 4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 10px rgba(0,255,136,0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(0,255,136,0.3)); }
}

@keyframes logoGlow2 {
    from { filter: drop-shadow(0 0 10px rgba(138,43,226,0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(138,43,226,0.3)); }
}

.tagline {
    margin-top: 24px;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.7);
}

/* LISTEN BUTTON */

.listen-wrapper {
    margin-top: 40px;
}

.listen-btn {
    padding: 16px 40px;
    border: 1px solid rgba(0,255,136,0.5);
    color: #00ff88;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    background: rgba(0,255,136,0.05);
}

.listen-btn:hover {
    background: rgba(0,255,136,0.15);
    box-shadow:
        0 0 30px rgba(0,255,136,0.4),
        0 0 60px rgba(0,255,136,0.15),
        inset 0 0 20px rgba(0,255,136,0.05);
    transform: scale(1.08);
    border-color: rgba(0,255,136,0.8);
}

/* AUDIO BARS */

.audio-bars {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 5px;
    height: 40px;
    align-items: flex-end;
}

.audio-bars span {
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(to top, #00ff88, #8a2be2);
    animation: bounce 1.2s infinite ease-in-out;
}

.audio-bars span:nth-child(1) { animation-delay: 0s; }
.audio-bars span:nth-child(2) { animation-delay: 0.15s; }
.audio-bars span:nth-child(3) { animation-delay: 0.3s; }
.audio-bars span:nth-child(4) { animation-delay: 0.45s; }
.audio-bars span:nth-child(5) { animation-delay: 0.6s; }

@keyframes bounce {
    0%, 100% { height: 6px; }
    50% { height: 35px; }
}

/* SCROLL INDICATOR */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: #00ff88;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

/* ============================= */
/* SECTION DEFAULTS               */
/* ============================= */

.section {
    padding: 140px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* ============================= */
/* SECTION TITLES                 */
/* ============================= */

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.title-bar {
    width: 80px;
    height: 3px;
    margin: 0 auto 50px;
    background: linear-gradient(90deg, #00ff88, #8a2be2);
    border-radius: 2px;
}

/* ============================= */
/* GRADIENT DIVIDERS              */
/* ============================= */

.gradient-divider {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0,255,136,0.4) 20%,
        rgba(138,43,226,0.4) 50%,
        rgba(0,255,136,0.4) 80%,
        transparent 100%
    );
    position: relative;
}

.gradient-divider::after {
    content: '';
    position: absolute;
    inset: -10px 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0,255,136,0.08) 20%,
        rgba(138,43,226,0.08) 50%,
        rgba(0,255,136,0.08) 80%,
        transparent 100%
    );
    filter: blur(10px);
}

/* ============================= */
/* SCROLL REVEAL                  */
/* ============================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================= */
/* MEET THE HOSTS                 */
/* ============================= */

.meet {
    padding: 160px 20px;
    background: linear-gradient(
        to bottom,
        #000000 0%,
        #021a14 35%,
        #100622 70%,
        #000000 100%
    );
}

.host-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.host-card {
    width: 340px;
    background: rgba(10,10,10,0.9);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.host-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #00ff88, #8a2be2, #00ff88);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.5s ease;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.host-card-inner {
    padding: 24px;
}

.host-img-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.host-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.host-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8) 0%,
        transparent 50%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: 0.4s ease;
}

.host-img-overlay span {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: 0.4s ease;
}

.host-card h3 {
    margin-top: 18px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
}

.host-role {
    margin-top: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

/* CARD HOVER */

.host-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.6),
        0 0 40px rgba(0,255,136,0.1);
}

.host-card:hover::before {
    opacity: 1;
}

.host-card:hover img {
    transform: scale(1.08);
}

.host-card:hover .host-img-overlay {
    opacity: 1;
}

.host-card:hover .host-img-overlay span {
    transform: translateY(0);
}

/* ============================= */
/* NEWSLETTER & RAFFLE            */
/* ============================= */

.newsletter,
.raffle {
    background: radial-gradient(circle at center, #050505 0%, #000 70%);
}

.newsletter p,
.raffle p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.sweep {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(120deg, transparent, rgba(0,255,136,0.04), transparent);
    animation: sweepRotate 14s linear infinite;
    pointer-events: none;
}

@keyframes sweepRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* FORM */

.form {
    margin-top: 30px;
    display: inline-flex;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(0,255,136,0.3);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.form:focus-within {
    border-color: rgba(0,255,136,0.6);
    box-shadow: 0 0 30px rgba(0,255,136,0.1);
}

input {
    padding: 16px 24px;
    width: 300px;
    border: none;
    background: transparent;
    color: white;
    outline: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

input::placeholder {
    color: rgba(255,255,255,0.35);
}

button {
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

button:hover {
    background: linear-gradient(135deg, #33ffaa, #00ff88);
    box-shadow: 0 0 25px rgba(0,255,136,0.5);
    transform: scale(1.02);
}

/* ============================= */
/* FOLLOW SECTION                 */
/* ============================= */

.follow {
    background: radial-gradient(circle at center, #000 20%, #050505 100%);
}

.follow-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(0,255,136,0.1), transparent 60%),
        radial-gradient(circle at 80% 60%, rgba(138,43,226,0.1), transparent 60%);
    animation: followPulse 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes followPulse {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.socials {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-btn i {
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-6px) scale(1.05);
    color: #fff;
    border-color: rgba(0,255,136,0.4);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.4),
        0 0 20px rgba(0,255,136,0.15);
}

.social-btn:hover .fa-facebook-f { color: #1877F2; }
.social-btn:hover .fa-youtube { color: #FF0000; }
.social-btn:hover .fa-instagram { color: #E1306C; }
.social-btn:hover .fa-apple { color: #ffffff; }

/* ============================= */
/* EMAIL LINK                     */
/* ============================= */

.email-link {
    margin-top: 60px;
    text-align: center;
}

.email-link a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.email-link a:hover {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0,255,136,0.4);
}

/* ============================= */
/* FORM SUCCESS MESSAGE           */
/* ============================= */

.form-message {
    margin-top: 20px;
    font-size: 1rem;
    color: #00ff88;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    text-shadow:
        0 0 6px rgba(0,255,136,0.8),
        0 0 20px rgba(0,255,136,0.4);
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* ============================= */
/* FOOTER                         */
/* ============================= */

.site-footer {
    padding: 60px 20px 40px;
    text-align: center;
    background: #000;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(0,255,136,0.1), transparent 70%);
    pointer-events: none;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00ff88, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 24px auto;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
}

/* ============================= */
/* PROFILE PAGES                  */
/* ============================= */

.profile-page {
    background: linear-gradient(
        to bottom,
        #000000 0%,
        #081813 50%,
        #000000 100%
    );
}

.profile-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.profile-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
}

.sierra-bg .profile-overlay {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.6)),
        radial-gradient(circle at 30% 40%, rgba(138,43,226,0.25), transparent 60%);
}

.brandon-bg .profile-overlay {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.6)),
        radial-gradient(circle at 70% 40%, rgba(0,255,136,0.2), transparent 60%);
}

.profile-content {
    position: relative;
    z-index: 2;
}

.profile-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00ff88, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-tag {
    margin-top: 15px;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
}

/* PROFILE BODY */

.profile-body {
    padding: 120px 40px;
}

.profile-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-image {
    width: 400px;
    border-radius: 20px;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-image:hover {
    transform: scale(1.03) rotate(0.5deg);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.8),
        0 0 40px rgba(0,255,136,0.2);
}

.profile-text {
    max-width: 500px;
}

.profile-text h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: #fff;
}

.profile-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.profile-text strong {
    color: #8a2be2;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 14px 32px;
    border: 1px solid rgba(0,255,136,0.4);
    border-radius: 50px;
    text-decoration: none;
    color: #00ff88;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-btn:hover {
    background: rgba(0,255,136,0.1);
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0,255,136,0.2);
    transform: translateX(-4px);
}

/* PROFILE BACKGROUNDS */

.brandon-bg {
    background: url("assets/brandon.jpg") center/cover no-repeat;
}

.sierra-bg {
    background: url("assets/sierra.jpg") center/cover no-repeat;
}

/* PROFILE FALL-IN */

@keyframes fallIn {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-content,
.profile-image,
.profile-text {
    opacity: 0;
}

.profile-page.loaded .profile-content {
    animation: fallIn 0.8s ease forwards;
}

.profile-page.loaded .profile-image {
    animation: fallIn 0.9s ease forwards;
    animation-delay: 0.2s;
}

.profile-page.loaded .profile-text {
    animation: fallIn 1s ease forwards;
    animation-delay: 0.4s;
}

/* ============================= */
/* NAV TOGGLE (MOBILE)            */
/* ============================= */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #00ff88;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================= */
/* LATEST EPISODE                 */
/* ============================= */

.latest-episode {
    background: radial-gradient(ellipse at 50% 30%, #0a1a10 0%, #000 70%);
}

.episode-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,136,0.15);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.episode-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,255,136,0.05), transparent 50%, rgba(138,43,226,0.05));
    pointer-events: none;
}

.episode-card:hover {
    border-color: rgba(0,255,136,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,255,136,0.08);
    transform: translateY(-4px);
}

.episode-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,255,136,0.15), rgba(138,43,226,0.15));
    border: 1px solid rgba(0,255,136,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00ff88;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.15); }
    50% { box-shadow: 0 0 30px 10px rgba(0,255,136,0.1); }
}

.episode-info {
    text-align: left;
}

.episode-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00ff88;
    display: inline-block;
    margin-bottom: 8px;
    padding: 3px 12px;
    border: 1px solid rgba(0,255,136,0.3);
    border-radius: 12px;
}

.episode-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.episode-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    line-height: 1.5;
}

.episode-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,0,0,0.3);
    color: #ff4444;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.episode-play-btn:hover {
    background: rgba(255,0,0,0.15);
    border-color: rgba(255,0,0,0.5);
    box-shadow: 0 0 25px rgba(255,0,0,0.2);
    transform: scale(1.05);
}

/* ============================= */
/* ENHANCED SECTION STYLES        */
/* ============================= */

.section-title {
    position: relative;
    display: inline-block;
}

.meet .host-card {
    position: relative;
}

.meet .host-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #8a2be2);
    border-radius: 2px;
    opacity: 0;
    transition: all 0.5s ease;
}

.meet .host-card:hover::after {
    opacity: 1;
    bottom: -12px;
    width: 60px;
}

/* Enhanced footer */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-logo {
    letter-spacing: 2px;
}

/* ============================= */
/* MOBILE RESPONSIVE              */
/* ============================= */

@media (max-width: 768px) {

    .navbar {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

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

    .nav-links a {
        font-size: 1.4rem;
        color: rgba(255,255,255,0.8);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-content {
        padding: 0 20px;
    }

    .logo-line1 {
        font-size: 3rem;
    }

    .logo-line2 {
        font-size: 4.5rem;
        letter-spacing: 6px;
    }

    .tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .section {
        padding: 100px 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .host-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .host-card {
        width: 90%;
        max-width: 360px;
    }

    .form {
        flex-direction: column;
        border-radius: 16px;
        width: 90%;
        max-width: 400px;
    }

    input {
        width: 100%;
        border-radius: 0;
        text-align: center;
    }

    button {
        justify-content: center;
    }

    .socials {
        gap: 12px;
    }

    .social-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .profile-content h1 {
        font-size: 2.5rem;
    }

    .profile-image {
        width: 90%;
        max-width: 350px;
    }

    .profile-body {
        padding: 80px 20px;
    }

    .profile-container {
        gap: 40px;
    }

    .scroll-indicator {
        display: none;
    }

    .episode-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }

    .episode-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .episode-info {
        text-align: center;
    }

    .episode-name {
        font-size: 1.2rem;
    }
}