:root {
    /* Colors */
    --primary-color: #A200FF;
    --secondary-color: #00FFFF;
    --background-color: #1A0033;
    --footer-bg-color: #0F001A;
    --button-color: #FF0077;

    --section-bg-1: #2B004F;
    --section-bg-2: #3A0066;
    --section-bg-3: #1F003D;
    --section-bg-4: #4C0080;
    --section-bg-5: #220044;
    --section-bg-6: #080010;

    /* Typography */
    --main-font: 'Roboto', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    --heading-weight: 800;
    --body-weight: 300;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;

    /* Neon Glows */
    --neon-primary-glow: 0 0 5px var(--primary-color), 0 0 15px var(--primary-color), 0 0 30px var(--primary-color), 0 0 60px var(--primary-color);
    --neon-secondary-glow: 0 0 5px var(--secondary-color), 0 0 15px var(--secondary-color), 0 0 30px var(--secondary-color), 0 0 60px var(--secondary-color);
    --neon-button-glow: 0 0 5px var(--button-color), 0 0 15px var(--button-color), 0 0 30px var(--button-color), 0 0 60px var(--button-color);

    /* Glassmorphism */
    --glass-blur: 15px;
    --glass-bg-opacity: 0.15;
    --glass-border-color: rgba(255, 255, 255, 0.2);
    --glass-reflection: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--main-font);
    font-weight: var(--body-weight);
    background-color: var(--background-color);
    color: #E0E0E0; /* Light gray for body text */
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation Placeholder (for particle effects/nebulae) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, var(--section-bg-4) 0%, transparent 20%),
                radial-gradient(circle at bottom right, var(--section-bg-2) 0%, transparent 20%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
    animation: backgroundPulse 15s infinite alternate ease-in-out;
    opacity: 0.4;
}

@keyframes backgroundPulse {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: var(--heading-weight);
    color: #FFFFFF; /* Pure white for headings */
    text-shadow: var(--neon-primary-glow);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

h1 { font-size: 3.8rem; line-height: 1.1; }
h2 { font-size: 2.8rem; line-height: 1.2; }
h3 { font-size: 2.2rem; line-height: 1.3; }
h4 { font-size: 1.8rem; line-height: 1.4; }
h5 { font-size: 1.4rem; line-height: 1.5; }
h6 { font-size: 1.2rem; line-height: 1.6; }

p {
    margin-bottom: 1.5em;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: var(--neon-secondary-glow);
}

a:hover {
    color: white;
    text-shadow: var(--neon-primary-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--button-color);
    color: white;
    font-family: var(--heading-font);
    font-weight: var(--heading-weight);
    font-size: 1.1rem;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: inset 0 0 15px var(--button-color), 0 0 10px var(--button-color); /* Inner neon glow */
    outline: none;
    perspective: 1000px; /* For 3D emboss */
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: inset 0 0 25px var(--button-color), 0 0 20px var(--button-color), 0 0 40px var(--button-color);
    z-index: 2;
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(1px);
    box-shadow: inset 0 0 10px var(--button-color), 0 0 5px var(--button-color);
}

.btn-play-now {
    box-shadow: inset 0 0 15px var(--button-color), 0 0 10px var(--button-color), 0 0 0 0 var(--button-color);
    animation: neonPulse 2s infinite ease-in-out;
}

@keyframes neonPulse {
    0% { box-shadow: inset 0 0 15px var(--button-color), 0 0 10px var(--button-color), 0 0 0 0 var(--button-color); }
    50% { box-shadow: inset 0 0 25px var(--button-color), 0 0 20px var(--button-color), 0 0 20px var(--button-color); }
    100% { box-shadow: inset 0 0 15px var(--button-color), 0 0 10px var(--button-color), 0 0 0 0 var(--button-color); }
}

/* Glassmorphism Card Style */
.card-glass {
    background: rgba(255, 255, 255, var(--glass-bg-opacity));
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-color);
    border-radius: var(--border-radius-md);
    padding: var(--space-md);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
    overflow: hidden;
}

.card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-reflection);
    pointer-events: none;
    z-index: 0;
}

/* Section Backgrounds (for visual variety) */
.section-bg-1 { background-color: var(--section-bg-1); }
.section-bg-2 { background-color: var(--section-bg-2); }
.section-bg-3 { background-color: var(--section-bg-3); }
.section-bg-4 { background-color: var(--section-bg-4); }
.section-bg-5 { background-color: var(--section-bg-5); }
.section-bg-6 { background-color: var(--section-bg-6); }

/* Utility Classes for Neon Accents */
.text-neon-primary {
    color: var(--primary-color);
    text-shadow: var(--neon-primary-glow);
}

.text-neon-secondary {
    color: var(--secondary-color);
    text-shadow: var(--neon-secondary-glow);
}

.border-neon-primary {
    border: 1px solid var(--primary-color);
    box-shadow: var(--neon-primary-glow);
}

.border-neon-secondary {
    border: 1px solid var(--secondary-color);
    box-shadow: var(--neon-secondary-glow);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    color: white;
    font-family: var(--main-font);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5), 0 0 8px var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--footer-bg-color);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.0rem; }
    h3 { font-size: 1.6rem; }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .card-glass {
        padding: var(--space-md);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .btn {
        width: 100%;
        padding: 0.7rem 1.5rem;
    }
}

/* Brutalism elements: Sharp contrasts, bold text, intentional "rawness" */
.brutal-header {
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.brutal-section-divider {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: var(--space-lg) 0;
    box-shadow: var(--neon-primary-glow), var(--neon-secondary-glow);
}

/* Abstract Illustrations (assuming these are SVG/CSS shapes) */
.abstract-shape-1 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.3;
    filter: blur(10px);
    animation: rotateShape 20s linear infinite;
}

.abstract-shape-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    clip-path: polygon(0% 0%, 100% 0%, 75% 100%, 25% 100%);
    opacity: 0.2;
    filter: blur(8px);
    animation: moveShape 15s ease-in-out infinite alternate;
}

@keyframes rotateShape {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(360deg) scale(1.2); }
}

@keyframes moveShape {
    0% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
    100% { transform: translate(0, 0); }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}