@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-base: #060913;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-glow: #818cf8;
    --accent-purple: #c084fc;
    --accent-pink: #f472b6;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base); 
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3); 
}

/* Animated Aurora Background with Noise Overlay */
.bg-aurora {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
    background: var(--bg-base);
    overflow: hidden;
}

.bg-aurora::before, .bg-aurora::after {
    content: '';
    position: absolute;
    width: 300vmax;
    height: 300vmax;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg at 50% 50%, rgba(129, 140, 248, 0.15) 0deg, rgba(192, 132, 252, 0.1) 120deg, rgba(244, 114, 182, 0.15) 240deg, rgba(129, 140, 248, 0.15) 360deg);
    animation: rotate 20s linear infinite;
    filter: blur(80px);
}
.bg-aurora::after {
    width: 200vmax;
    height: 200vmax;
    background: conic-gradient(from 180deg at 50% 50%, rgba(244, 114, 182, 0.1) 0deg, rgba(192, 132, 252, 0.15) 120deg, rgba(129, 140, 248, 0.1) 240deg, rgba(244, 114, 182, 0.1) 360deg);
    animation: rotate 15s linear infinite reverse;
    filter: blur(60px);
}

.noise-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Header Layout */
.header-wrapper {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 1.8rem;
    color: var(--accent-pink);
    -webkit-text-fill-color: initial;
    filter: drop-shadow(0 0 15px var(--accent-pink));
}

.full-width-nav {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 1.2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.full-width-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.full-width-nav a:hover, .full-width-nav a.active {
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.full-width-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0%; height: 2px;
    background: linear-gradient(90deg, var(--accent-glow), var(--accent-pink));
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-pink);
}

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

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 2000;
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Container */
main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Typography Enhancements */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

/* Premium Glass Card Base */
.premium-glass {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-left: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.premium-glass::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
    pointer-events: none;
}

.premium-glass:hover::before {
    left: 200%;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0 0 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(6,9,19,0.3) 0%, rgba(6,9,19,1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

/* Transparent Player & Huge Visualizer */
.transparent-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.huge-play-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
    font-size: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(217, 70, 239, 0.5), inset 0 0 20px rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.huge-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(217, 70, 239, 0.7), inset 0 0 30px rgba(255,255,255,0.5);
}

.huge-play-btn:active {
    transform: scale(0.95);
}

.huge-play-btn i {
    margin-left: 10px; /* offset for play icon */
}

.huge-play-btn i.fa-pause {
    margin-left: 0; /* pause icon is centered */
}

.huge-visualizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 200px;
    width: 100%;
    max-width: 100%;
    margin-top: 2rem;
    opacity: 0.3; /* dim when paused */
    transition: opacity 0.5s ease;
}

.huge-visualizer:has(.playing) {
    opacity: 1; /* full brightness when playing */
}

.huge-bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-purple), var(--accent-pink));
    border-radius: 10px 10px 0 0;
    min-height: 10px;
    height: 10px; /* default state */
    transition: height 0.1s ease;
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.2);
}

.huge-bar.playing {
    animation-name: pulse-tall;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes pulse-tall {
    0% { height: 10%; }
    100% { height: 100%; box-shadow: 0 0 25px rgba(244, 114, 182, 0.8); }
}

/* Timeline Layout (Yayın Akışı) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 30px; height: 100%; width: 2px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 70px;
}

.timeline-dot {
    position: absolute;
    left: 21px; top: 15px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid var(--accent-purple);
    box-shadow: 0 0 15px var(--accent-purple);
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-purple);
    transform: scale(1.3);
}

.timeline-content {
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: rgba(192, 132, 252, 0.3);
}

.timeline-time {
    color: var(--accent-pink);
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.timeline-show {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.timeline-dj {
    color: var(--text-secondary);
    margin-top: 5px;
    font-size: 0.95rem;
}

.timeline-day-header {
    font-size: 2rem;
    font-weight: 800;
    margin: 4rem 0 2rem 0;
    padding-left: 60px;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Broadcaster Cards (3D Tilt Effect) */
.broadcaster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 3rem 2rem;
    padding-top: 2rem;
}

.broadcaster-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem 2rem;
    text-align: center;
    transition: border-color 0.4s ease;
}

.dj-avatar-wrapper {
    position: absolute;
    top: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--accent-glow), var(--accent-pink));
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(244, 114, 182, 0.4);
}

.dj-avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-base);
}

.broadcaster-card h3 {
    margin-top: 30px; /* Offset for avatar */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(244, 114, 182, 0.4);
}

/* Contact Form Enhancements */
.form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
}

.input-field {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.1);
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(244, 114, 182, 0.2);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(244, 114, 182, 0.4);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .huge-play-btn {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    
    .huge-visualizer {
        height: 120px;
    }

    .logo-container {
        padding: 1rem 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }

    .full-width-nav {
        display: none;
    }
    
    .full-width-nav.active {
        display: block;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        padding: 1rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .mobile-menu-btn {
        display: block;
    }

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

/* Live Broadcaster Effect */
.live-broadcaster {
    animation: live-blink 1.5s infinite alternate;
    border-color: rgba(239, 68, 68, 0.5) !important;
}

@keyframes live-blink {
    0% { background: rgba(239, 68, 68, 0.05); box-shadow: 0 0 15px rgba(239, 68, 68, 0.2); }
    100% { background: rgba(239, 68, 68, 0.25); box-shadow: 0 0 40px rgba(239, 68, 68, 0.7); }
}
