:root {
    --electric-pink: #FF4DA6;
    --party-purple: #7B4DFF;
    --neon-blue: #00D4FF;
    --bright-orange: #FF9E3D;
    --midnight-navy: #111827;
    --text-light: #F3F4F6;
    --bg-darker: #0a0e17;
}

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

body {
    background-color: var(--midnight-navy);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--electric-pink);
    text-shadow: 0 0 8px rgba(255, 77, 166, 0.6);
}

ul {
    list-style: none;
}

/* Header & Warning Bar */
.fixed-header-wrapper {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.top-warning-bar {
    background: #000;
    color: #ccc;
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.top-warning-bar svg {
    color: #22c55e;
    flex-shrink: 0;
}

.top-warning-bar span {
    display: inline-block;
}

.site-header {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    width: 100%;
    border-bottom: 2px solid var(--party-purple);
    box-shadow: 0 4px 15px rgba(123, 77, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.site-logo {
    height: 48px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* Hero Section */
.hero {
    margin-top: 130px;
    padding: 8rem 2rem;
    text-align: center;
    background-image: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.9)), url('images/hero-music-festival-crowd-lights.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--party-purple), 0 0 40px var(--electric-pink);
}

.hero p {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 2rem;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--electric-pink), var(--party-purple));
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 77, 166, 0.6);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 77, 166, 0.9);
    color: #fff;
}

/* Common Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--electric-pink);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 77, 166, 0.5);
}

.bg-alt {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(123, 77, 255, 0.2);
    border-bottom: 1px solid rgba(123, 77, 255, 0.2);
}

/* Game Section */
.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    border: 3px solid var(--neon-blue);
    background: #000;
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Two Column Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.img-fluid {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 158, 61, 0.3);
    border: 2px solid var(--bright-orange);
}

/* Rewards Section */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reward-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--party-purple);
    transition: transform 0.3s;
}

.reward-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(123, 77, 255, 0.3);
}

.reward-card h3 {
    color: var(--bright-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Contact Redesign */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(123, 77, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-info-panel {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(123, 77, 255, 0.1), rgba(255, 77, 166, 0.05));
    border-right: 1px solid rgba(123, 77, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h3 {
    color: var(--electric-pink);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-panel p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.direct-contact {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--neon-blue);
}

.direct-contact h4 {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.email-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--electric-pink);
    display: block;
    user-select: all;
    word-break: break-all;
}

.copy-note {
    margin-top: 0.5rem !important;
    font-size: 0.85rem !important;
    color: #888 !important;
    margin-bottom: 0 !important;
}

.contact-form-panel {
    padding: 3rem;
}

.party-form .form-group {
    margin-bottom: 1.5rem;
}

.party-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.party-form input,
.party-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(123, 77, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.party-form input:focus,
.party-form textarea:focus {
    outline: none;
    border-color: var(--electric-pink);
    box-shadow: 0 0 15px rgba(255, 77, 166, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.party-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.site-footer {
    background: var(--bg-darker);
    border-top: 4px solid var(--neon-blue);
    box-shadow: 0 -10px 30px rgba(0, 212, 255, 0.1);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-brand {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(123, 77, 255, 0.5));
}

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

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--electric-pink);
}

.copyright {
    color: #666;
    font-size: 0.8rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.98);
    border-top: 2px solid var(--bright-orange);
    padding: 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept {
    background: var(--party-purple);
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid #666;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
}

.btn-accept:hover {
    background: var(--electric-pink);
    box-shadow: 0 0 10px var(--electric-pink);
}

.btn-reject:hover {
    border-color: var(--text-light);
}

/* Legal Pages */
.legal-container {
    max-width: 900px;
    margin: 160px auto 5rem;
    padding: 3rem;
    background: var(--bg-darker);
    border-radius: 10px;
    border: 1px solid rgba(123, 77, 255, 0.3);
}

.legal-container h1 {
    color: var(--electric-pink);
    margin-bottom: 2rem;
}

.legal-container h2 {
    color: var(--neon-blue);
    margin: 2rem 0 1rem;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid rgba(123, 77, 255, 0.2);
        padding: 2rem;
    }
    .contact-form-panel {
        padding: 2rem;
    }
}