/* === Cyberpunk Theme Base === */
:root {
    --void-black: #0a0a0f;
    --graphite-dark: #12121a;
    --deep-blue: #0d1b2a;
    --midnight-blue: #1b263b;
    --neon-cyan: #00f5ff;
    --neon-magenta: #ff00ff;
    --neon-purple: #9d00ff;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0b0;
    --gradient-cyber: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inria Sans', sans-serif;
    background: var(--void-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.section-title, .hero-title, .page-title, .legal-title, .legal-heading,
.cookie-title, .newsletter-title, .benefit-title, .game-title,
.game-overlay-title, .contact-section-title, .brand-text, .drawer-brand,
.game-page-title {
    font-family: 'Rambla', sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(157, 0, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* === Header === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

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

.logo-zone {
    display: flex;
    align-items: center;
    gap: 1px;
    text-decoration: none;
}

.logo-icon {
    width: 76px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-item {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-item-glow {
    background: var(--gradient-cyber);
    padding: 10px 25px;
    border-radius: 25px;
    color: var(--void-black);
    font-weight: 600;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3),
                0 0 40px rgba(255, 0, 255, 0.2);
}

.nav-item-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.5),
                0 0 60px rgba(255, 0, 255, 0.3);
}

.nav-item-glow::after {
    display: none;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('img/bg-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(10, 10, 15, 0.85) 50%,
        rgba(10, 10, 15, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(1.5rem, 8vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.title-neon {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--neon-cyan);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.title-main {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 2px;
    max-width: 800px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: var(--gradient-cyber);
    border: none;
    border-radius: 30px;
    color: var(--void-black);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: scale(1.05);
}

/* === Section Titles === */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.title-accent {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

/* === About Section === */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* === Stats Section === */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 245, 255, 0.02) 50%,
        transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2);
}

.stat-number {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.stat-glow-cyan .stat-value {
    color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--neon-cyan);
}

.stat-glow-magenta .stat-value {
    color: var(--neon-magenta);
    text-shadow: 0 0 30px var(--neon-magenta);
}

.stat-glow-purple .stat-value {
    color: var(--neon-purple);
    text-shadow: 0 0 30px var(--neon-purple);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* === Benefits Section === */
.benefits-section {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card-cyan:hover {
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.15);
}

.benefit-card-magenta:hover {
    border-color: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.15);
}

.benefit-card-purple:hover {
    border-color: rgba(157, 0, 255, 0.4);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.15);
}

.benefit-icon {
    width: 180px;
    height: 120px;
    margin: 0 auto 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.benefit-card-cyan .benefit-icon {
    background-image: url('img/icon1.png');
}

.benefit-card-magenta .benefit-icon {
    background-image: url('img/icon2.png');
}

.benefit-card-purple .benefit-icon {
    background-image: url('img/icon3.png');
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Games Section === */
.games-section {
    padding: 100px 0;
}

.game-showcase {
    display: flex;
    justify-content: center;
}

.game-card {
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 245, 255, 0.2);
}

.game-image-wrapper {
    position: relative;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(10, 10, 15, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay-title {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    font-weight: 700;
}

.game-overlay-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.game-info {
    padding: 25px;
}

.game-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.game-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--gradient-cyber);
    border: none;
    border-radius: 25px;
    color: var(--void-black);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.game-btn:hover {
    transform: scale(1.05);
}

.game-btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.game-btn:hover .game-btn-arrow {
    transform: translateX(5px);
}

/* === Newsletter Section === */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(180deg,
        rgba(157, 0, 255, 0.05) 0%,
        transparent 100%);
}

.newsletter-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--neon-cyan);
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-btn {
    padding: 15px 30px;
    background: var(--gradient-cyber);
    border: none;
    border-radius: 25px;
    color: var(--void-black);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

/* === Contact Section === */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 15px;
    font-size: 1.5rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.contact-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--neon-magenta);
}

.contact-text {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* === Forms === */
.form-group {
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--neon-cyan);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

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

.form-submit {
    padding: 15px 40px;
    background: var(--gradient-cyber);
    border: none;
    border-radius: 25px;
    color: var(--void-black);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.form-submit:hover {
    transform: scale(1.05);
}

/* === Footer === */
.main-footer {
    padding: 50px 20px 30px;
    background: rgba(18, 18, 26, 0.9);
    border-top: 1px solid rgba(0, 245, 255, 0.1);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 15px;
}

.disclaimer-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cyber);
    border-radius: 50%;
    color: var(--void-black);
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.disclaimer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* === Cookie Popup === */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 90%;
    width: 500px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: rgba(18, 18, 26, 0.98);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 245, 255, 0.1);
}

.cookie-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.cookie-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cookie-btn-accept {
    background: var(--gradient-cyber);
    color: var(--void-black);
}

.cookie-btn-accept:hover {
    transform: scale(1.05);
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

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

.cookie-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: auto;
}

.cookie-link:hover {
    color: var(--neon-magenta);
}

/* === Game Page === */
.game-page-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.game-page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-page-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.game-title-neon {
    color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--neon-cyan);
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--graphite-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.1);
}

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

.game-page-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-list {
    list-style: none;
}

.info-list li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* === Contact Page === */
.contact-page-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.page-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.page-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.contact-form-wrapper {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

/* === Legal Pages === */
.legal-page-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.legal-updated {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.legal-content {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.legal-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-heading:first-child {
    margin-top: 0;
}

.legal-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-list {
    list-style: none;
    margin-bottom: 20px;
}

.legal-list li {
    color: var(--text-secondary);
    padding: 10px 0 10px 25px;
    position: relative;
}

.legal-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

.legal-link {
    color: var(--neon-cyan);
    text-decoration: none;
}

.legal-link:hover {
    color: var(--neon-magenta);
}

/* === Neon Burger Menu === */
.neon-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 32px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1002;
    transition: all 0.3s ease;
}

.neon-burger:hover {
    background: rgba(0, 245, 255, 0.2);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.burger-line {
    width: 100%;
    height: 3px;
    background: var(--gradient-cyber);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px var(--neon-cyan);
}

.neon-burger:hover .burger-line {
    box-shadow: 0 0 15px var(--neon-cyan), 0 0 25px var(--neon-magenta);
}

.neon-burger.active .burger-line:nth-child(1) {
    transform: translateY(11.5px) rotate(45deg);
}

.neon-burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.neon-burger.active .burger-line:nth-child(3) {
    transform: translateY(-11.5px) rotate(-45deg);
}

/* === Mobile Drawer === */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.mobile-drawer.active {
    pointer-events: all;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.mobile-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-left: 2px solid rgba(0, 245, 255, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 60px rgba(0, 245, 255, 0.2);
    z-index: 2;
    overflow-y: auto;
}

.mobile-drawer.active .drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.drawer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drawer-close {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close span {
    position: absolute;
    width: 24px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--neon-cyan);
}

.drawer-close span:nth-child(1) {
    transform: rotate(45deg);
}

.drawer-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.drawer-close:hover span {
    background: var(--neon-magenta);
    box-shadow: 0 0 12px var(--neon-magenta);
}

.drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.drawer-link:hover {
    background: rgba(0, 245, 255, 0.05);
    border-left-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.drawer-link-active {
    background: rgba(0, 245, 255, 0.1);
    border-left-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.drawer-link-glow {
    background: var(--gradient-cyber);
    margin: 10px 20px;
    padding: 14px 20px;
    border-radius: 15px;
    color: var(--void-black);
    font-weight: 600;
    border: none;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.drawer-link-glow:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.drawer-icon {
    font-size: 1.3rem;
    width: 28px;
    text-align: center;
}

.drawer-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 245, 255, 0.3) 50%,
        transparent 100%);
    margin: 15px 25px;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .nav-wrapper {
        padding: 15px 20px;
    }

    .nav-links {
        display: none !important;
    }

    .neon-burger {
        display: flex;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
    }

    .cookie-link {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

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

    .game-page-info {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 25px;
    }
}
