:root {
    /* Refined palette inspired by whiskey and disco balls */
    --whiskey-gold: #d4a052;
    --whiskey-amber: #b8860b;
    --champagne: #f7e7ce;
    --mirror-silver: #c0c0c0;
    --disco-chrome: #e8e8e8;
    
    /* Subtle neon accents - used sparingly */
    --neon-pink: #ff1493;
    --neon-blue: #00d9ff;
    --neon-purple: #b026ff;
    
    /* Sophisticated backgrounds */
    --rich-black: #0d0d15;
    --deep-navy: #1a1a2e;
    --midnight-blue: #0f0f23;
    --glass-overlay: rgba(212, 160, 82, 0.08);
    --crystal-glass: rgba(255, 255, 255, 0.12);
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--rich-black);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--deep-navy) 50%, var(--midnight-blue) 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Subtle geometric background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(212, 160, 82, 0.02) 50px, rgba(212, 160, 82, 0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(212, 160, 82, 0.02) 50px, rgba(212, 160, 82, 0.02) 51px);
    z-index: -2;
    opacity: 0.5;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(212, 160, 82, 0.4), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(212, 160, 82, 0.5), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(192, 192, 192, 0.4), transparent),
        radial-gradient(2px 2px at 15% 80%, rgba(255, 20, 147, 0.3), transparent),
        radial-gradient(1px 1px at 70% 25%, rgba(0, 217, 255, 0.2), transparent);
    background-size: 300% 300%;
    animation: shimmer 12s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
        background-position: 0% 0%;
    }
    50% {
        opacity: 0.7;
        background-position: 100% 100%;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.logo-container {
    margin-bottom: 30px;
}

.neon-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(to bottom, var(--champagne), var(--whiskey-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(212, 160, 82, 0.6))
            drop-shadow(0 0 40px rgba(255, 20, 147, 0.3));
    line-height: 1.1;
    position: relative;
    animation: subtleGlow 4s ease-in-out infinite;
}

.neon-text.large {
    font-size: clamp(3.5rem, 12vw, 7rem);
    filter: drop-shadow(0 0 30px rgba(212, 160, 82, 0.7))
            drop-shadow(0 0 60px rgba(0, 217, 255, 0.2));
}

@keyframes subtleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(212, 160, 82, 0.6))
                drop-shadow(0 0 40px rgba(255, 20, 147, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(212, 160, 82, 0.8))
                drop-shadow(0 0 50px rgba(0, 217, 255, 0.4));
    }
}

.tagline {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: var(--disco-chrome);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    font-style: italic;
    opacity: 0.9;
}

.dj-credit {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--champagne);
}

.neon-accent {
    color: var(--whiskey-gold);
    text-shadow: 0 0 20px rgba(212, 160, 82, 0.6),
                 0 0 40px rgba(255, 20, 147, 0.3);
    font-weight: 700;
}

/* Navigation */
.main-nav {
    background: rgba(13, 13, 21, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 160, 82, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--champagne);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 5px 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--whiskey-gold), var(--neon-pink));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--whiskey-gold);
    text-shadow: 0 0 20px rgba(212, 160, 82, 0.5);
}

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

/* Sections */
.section {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: linear-gradient(135deg, var(--champagne), var(--whiskey-gold), var(--whiskey-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(212, 160, 82, 0.4));
}

/* Party Section */
.party-card {
    background: var(--glass-overlay);
    backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(212, 160, 82, 0.3);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.party-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 160, 82, 0.5) 30%, 
        rgba(255, 20, 147, 0.3) 50%,
        rgba(212, 160, 82, 0.5) 70%, 
        transparent);
}

.party-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 64px rgba(212, 160, 82, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 160, 82, 0.5);
}

.party-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(212, 160, 82, 0.4);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(212, 160, 82, 0.15);
    transition: all 0.4s ease;
}

.party-image img:hover {
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(212, 160, 82, 0.25);
}

.party-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.party-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--champagne);
    text-shadow: 0 0 20px rgba(212, 160, 82, 0.3);
    letter-spacing: 0.05em;
}

.time {
    font-size: 1.5rem;
    color: var(--disco-chrome);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.venue h4 {
    font-size: 1.8rem;
    color: var(--whiskey-gold);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.venue p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--whiskey-amber), var(--whiskey-gold));
    color: var(--rich-black);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 82, 0.5);
    box-shadow: 
        0 4px 20px rgba(212, 160, 82, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--whiskey-gold), var(--champagne));
    box-shadow: 
        0 8px 30px rgba(212, 160, 82, 0.5),
        0 0 40px rgba(255, 20, 147, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    border-color: rgba(212, 160, 82, 0.8);
}

.cta-button.secondary {
    background: transparent;
    color: var(--champagne);
    border: 1px solid rgba(212, 160, 82, 0.5);
    box-shadow: 0 0 20px rgba(212, 160, 82, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(212, 160, 82, 0.15);
    color: var(--whiskey-gold);
    border-color: var(--whiskey-gold);
    box-shadow: 0 0 30px rgba(212, 160, 82, 0.4);
}

/* Mixes Section */
.mixes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.mix-card {
    background: var(--glass-overlay);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(212, 160, 82, 0.25);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mix-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 12px 40px rgba(212, 160, 82, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 160, 82, 0.4);
}

.mix-artwork {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, 
        var(--midnight-blue) 0%, 
        var(--deep-navy) 30%,
        rgba(212, 160, 82, 0.2) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 82, 0.2);
}

.mix-artwork::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg 8deg,
        rgba(212, 160, 82, 0.1) 8deg 9deg
    );
    animation: rotateDiscoSlow 20s linear infinite;
}

.mix-artwork::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmerSlow 4s infinite;
}

@keyframes rotateDiscoSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmerSlow {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.play-icon {
    font-size: 3rem;
    color: var(--whiskey-gold);
    text-shadow: 0 0 30px rgba(212, 160, 82, 0.6);
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.mix-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--champagne);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.mix-date {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.mixcloud-embed {
    margin-top: 20px;
}

.all-mixes-link {
    text-align: center;
}

/* Subscribe Section */
.subscribe-section {
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.3), 
        rgba(212, 160, 82, 0.05),
        rgba(15, 15, 35, 0.3));
    position: relative;
}

.subscribe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 160, 82, 0.1), transparent 60%);
    pointer-events: none;
}

.subscribe-description {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--disco-chrome);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.subscribe-form {
    max-width: 600px;
    margin: 0 auto 20px;
    padding: 40px;
    background: var(--crystal-glass);
    backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(212, 160, 82, 0.25);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.email-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 160, 82, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: var(--whiskey-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 0 20px rgba(212, 160, 82, 0.2),
        inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.email-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 300;
}

.link-accent {
    color: var(--whiskey-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.link-accent:hover {
    color: var(--champagne);
    text-shadow: 0 0 15px rgba(212, 160, 82, 0.5);
    border-bottom-color: var(--whiskey-gold);
}

/* Footer */
.footer {
    background: rgba(13, 13, 21, 0.95);
    backdrop-filter: blur(20px);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(212, 160, 82, 0.2);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--whiskey-gold);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.footer-brand p {
    color: var(--disco-chrome);
    font-weight: 300;
}

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

.footer-links a {
    color: var(--champagne);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--whiskey-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--whiskey-gold);
    text-shadow: 0 0 15px rgba(212, 160, 82, 0.4);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* Twitch/Live Section */
.live-section {
    background: linear-gradient(135deg, 
        rgba(139, 0, 255, 0.05), 
        rgba(212, 160, 82, 0.05));
}

.section-description {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: var(--disco-chrome);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.twitch-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    background: var(--glass-overlay);
    backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(212, 160, 82, 0.25);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.twitch-player,
.twitch-chat {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 82, 0.2);
}

.twitch-player iframe,
.twitch-chat iframe {
    display: block;
    border: none;
}

/* VODs Section */
.vods-section {
    margin-bottom: 50px;
}

.vods-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--whiskey-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vod-card {
    background: var(--glass-overlay);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(212, 160, 82, 0.25);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vod-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(212, 160, 82, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 160, 82, 0.4);
}

.vod-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: var(--midnight-blue);
}

.vod-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vod-card:hover .vod-thumbnail img {
    transform: scale(1.05);
}

.vod-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.vod-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin: 15px 20px 10px;
    color: var(--champagne);
    font-weight: 600;
}

.vod-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0 20px 15px;
    font-weight: 300;
}

.vod-link {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--whiskey-gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.vod-link:hover {
    color: var(--champagne);
    border-bottom-color: var(--whiskey-gold);
}

.twitch-follow {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .party-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .twitch-container {
        grid-template-columns: 1fr;
    }
    
    .twitch-chat {
        display: none; /* Hide chat on mobile for better experience */
    }
    
    .vods-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input {
        width: 100%;
    }
}
