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

:root {
    --primary: #FF1493;
    --secondary: #FFD700;
    --dark: #0A0A0A;
    --light: #F8F9FA;
    --accent: #00FFFF;
    --purple: #9D00FF;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--purple) 50%, var(--secondary) 100%);
}

body {
    font-family: 'Urbanist', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        linear-gradient(rgba(255, 20, 147, 0.03) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 20, 147, 0.03) 2px, transparent 2px);
    background-size: 50px 50px;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: var(--gradient);
    animation: wave 15s linear infinite;
}

.wave:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.5;
}

.wave:nth-child(3) {
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes wave {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50%) translateY(20px); }
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 100;
    border-bottom: 2px solid var(--primary);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Staatliches', cursive;
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

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

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-family: 'Staatliches', cursive;
    font-size: clamp(3rem, 10vw, 7rem);
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 51, 102, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2px solid var(--primary);
}

.live-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Streaming Player */
.streaming-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.6);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-slider {
    width: 150px;
    height: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

/* Section Styling */
section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h2 {
    font-family: 'Staatliches', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bio Section */
.bio-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.bio-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.5);
    animation: discoRotate 4s linear infinite;
}

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

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.bio-text p {
    margin-bottom: 1rem;
}

/* Trivia Game */
.trivia-game {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.question-card {
    text-align: center;
    margin-bottom: 2rem;
}

.question-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.answers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.answer-btn {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: var(--light);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

.answer-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.answer-btn.correct {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00FF88;
}

.answer-btn.incorrect {
    background: rgba(255, 51, 102, 0.2);
    border-color: var(--primary);
}

.score {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.next-question-btn {
    padding: 1rem 3rem;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
}

.next-question-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

.game-select-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    font-family: 'Urbanist', sans-serif;
}

.game-select-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.game-select-btn.active {
    background: var(--gradient);
    border-color: var(--primary);
}

.era-btn {
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: var(--light);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 1rem;
    font-family: 'Urbanist', sans-serif;
}

.era-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    transform: scale(1.05);
}

.match-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
}

.match-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.match-item.selected {
    border-color: var(--accent);
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.match-item.correct {
    border-color: #00FF88;
    background: rgba(0, 255, 136, 0.2);
    animation: correctPulse 0.5s ease;
}

.match-item.incorrect {
    border-color: var(--primary);
    background: rgba(255, 20, 147, 0.2);
    animation: shake 0.5s ease;
}

@keyframes correctPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Schedule */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.3);
}

.schedule-day {
    font-family: 'Staatliches', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.schedule-time {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(10, 14, 39, 0.95);
    border-top: 2px solid var(--primary);
    margin-top: 5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--light);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .bio-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .streaming-section {
        padding: 2rem 1rem;
    }

    .player-controls {
        flex-direction: column;
    }
}
    </style>
