:root {
    --primary: #00a0a0;
    /* Brighter Teal */
    --accent: #00ffff;
    /* Electric Cyan */
    --highlight: #a855f7;
    /* Brighter Violet */
    --bg-start: #0a0a1a;
    /* Midnight Start */
    --bg-end: #001a1a;
    /* Midnight End */
    --text-main: #f0fdff;
    /* Lightened for contrast */
    --text-muted: #b0d8d8;
    /* Lightened for contrast */
    --glass-bg: rgba(0, 160, 160, 0.1);
    --glass-border: rgba(0, 255, 255, 0.25);
    --glow-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    --violet-glow: 0 0 25px rgba(168, 85, 247, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

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

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-start);
    box-shadow: 0 0 15px var(--accent);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--accent);
}

/* Compliance Banners */
.highlight-banner {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--highlight);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 5%;
    text-align: center;
    backdrop-filter: blur(5px);
    animation: glowPulse 4s infinite ease-in-out;
}

.v-items-policy {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    margin: 3rem 5%;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.policy-block {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

/* Cards */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 24px;
    transition: 0.4s;
}

.card:hover {
    border-color: var(--accent);
    box-shadow: var(--glow-shadow);
    transform: translateY(-10px);
}

/* Game Cards */
.game-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    padding: 4rem 5%;
}

.game-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.game-card h3 {
    margin-bottom: 1rem;
}

.game-card p {
    flex-grow: 1;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Contact Form Specifics */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 4rem;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    /* Darker but with clear border */
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(12px);
}

.modal-content {
    width: 95%;
    max-width: 1200px;
    height: 85vh;
    background: var(--bg-start);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    box-shadow: var(--glow-shadow);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 22px;
}

/* Footer */
footer {
    padding: 5rem 5% 3rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 6rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-content h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-content a {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.footer-content a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-compliance {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Cookie Toast */
#cookie-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(10, 10, 26, 0.98);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 20px;
    display: none;
    z-index: 3000;
    max-width: 350px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--glow-shadow);
    backdrop-filter: blur(15px);
    animation: slideInRight 0.5s ease-out;
}

/* Footer Disclaimer Section */
.footer-disclaimer-section {
    padding: 3rem 10%;
    background: rgba(168, 85, 247, 0.05);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    margin-top: 4rem;
}

.footer-disclaimer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-disclaimer-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
        border-color: rgba(168, 85, 247, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
        border-color: var(--reveal);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-disclaimer-section {
        padding: 2rem 5%;
    }
}