* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0f1419;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    border: 2px solid #ff006e;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 0, 110, 0.3);
}

.age-icon {
    font-size: 60px;
    font-weight: bold;
    color: #ff006e;
    margin-bottom: 20px;
    background: rgba(255, 0, 110, 0.1);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #ff006e;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.modal-content p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

/* ===== COOKIES BANNER ===== */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    border-top: 3px solid #ffd60a;
    padding: 20px;
    z-index: 9998;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookies-text h4 {
    font-size: 16px;
    color: #ffd60a;
    margin-bottom: 8px;
}

.cookies-text p {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
}

.cookies-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookies-buttons .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-deny {
    background-color: transparent;
    color: #b0b0b0;
    border: 1px solid #b0b0b0;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0096ff 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background-color: #1a1f2e;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background-color: #00d4ff;
    color: #000;
}

.btn-deny {
    background-color: #333;
    color: #e0e0e0;
}

.btn-deny:hover {
    background-color: #444;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-play {
    width: 100%;
    margin-top: 15px;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: rgba(15, 20, 25, 0.95);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand h1 {
    font-size: 24px;
    background: linear-gradient(135deg, #00d4ff 0%, #ffd60a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00d4ff;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #00d4ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.age-badge {
    background: #ff006e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8) 0%, rgba(15, 20, 25, 0.8) 50%), linear-gradient(to right, rgba(0, 212, 255, 0.15), rgba(255, 0, 110, 0.15)), url('images/3-carts-of-gold-slot.webp');
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #ffd60a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ===== 3-CARD SECTION ===== */
.three-cards {
    padding: 60px 20px;
    background-color: #0f1419;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.card {
    background: linear-gradient(135deg, #1a1f2e 0%, #161b27 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.stat-card .card-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #ffd60a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-card .card-label {
    font-size: 18px;
    color: #b0b0b0;
}

.play-card {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.7) 0%, rgba(22, 27, 39, 0.7) 100%), url('images/images.jpg');
    background-size: cover;
    background-position: center;
    border: 3px solid #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    position: relative;
}

.play-card:hover {
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.play-button-large {
    font-size: 60px;
    color: #00d4ff;
    margin-bottom: 15px;
}

.play-card p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ===== LIVE GAME SECTION ===== */
.live-game {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(22, 27, 39, 0.9) 0%, rgba(15, 20, 25, 0.9) 100%), url('images/images.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.live-game h3 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.game-preview {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1f2e 0%, #161b27 100%);
    border: 2px solid #00d4ff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.preview-frame {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* ===== POPULAR GAMES ===== */
.popular-games {
    padding: 60px 20px;
    background-color: #0f1419;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
}

.popular-games h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #161b27 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.game-info {
    padding: 20px;
}

.game-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.game-info p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
    text-align: center;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.cta-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

/* ===== WHY US ===== */
.why-us {
    padding: 60px 20px;
    background-color: #0f1419;
}

.why-us h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #1a1f2e 0%, #161b27 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature p {
    color: #b0b0b0;
    font-size: 14px;
}

/* ===== SAFE SECTION ===== */
.safe-section {
    padding: 60px 20px;
    background-color: #161b27;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
}

.safe-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.safe-content {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
    border: 2px solid #ff006e;
    border-radius: 15px;
    padding: 30px;
}

.safe-content ul {
    list-style: none;
}

.safe-content li {
    padding: 12px 0;
    font-size: 16px;
    color: #e0e0e0;
}

.safe-content li:before {
    content: "✓ ";
    color: #00d4ff;
    font-weight: bold;
    margin-right: 10px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 60px 20px;
    background-color: #0f1419;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
}

.how-it-works h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #1a1f2e 0%, #161b27 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #0096ff 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    color: #b0b0b0;
    font-size: 14px;
}

/* ===== RESPONSIBLE GAMING ===== */
.responsible-gaming {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.responsible-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #1a1f2e 0%, #161b27 100%);
    border: 3px solid #ff006e;
    border-radius: 15px;
    padding: 40px;
}

.responsible-icon {
    font-size: 60px;
    font-weight: bold;
    color: #ff006e;
    margin-bottom: 20px;
    background: rgba(255, 0, 110, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #ff006e;
}

.responsible-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.responsible-content p {
    color: #b0b0b0;
    margin-bottom: 30px;
}

.responsible-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 60px 20px;
    background-color: #0f1419;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
}

.benefits h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #161b27 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffd60a;
}

.benefit-card p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== INFORMATION SECTION ===== */
.information {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(22, 27, 39, 0.9) 0%, rgba(15, 20, 25, 0.9) 100%);
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.information h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #00d4ff;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-column {
    background: linear-gradient(135deg, #1a1f2e 0%, #161b27 100%);
    border-left: 4px solid #ffd60a;
    padding: 25px;
    border-radius: 10px;
}

.info-column h4 {
    font-size: 20px;
    color: #ffd60a;
    margin-bottom: 15px;
}

.info-column p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 14px;
}

.info-column p:last-child {
    margin-bottom: 0;
}

.info-column strong {
    color: #00d4ff;
}

/* ===== FAQ ===== */
.faq {
    padding: 60px 20px;
    background-color: #0f1419;
}

.faq h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1f2e 0%, #161b27 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #00d4ff;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #b0b0b0;
    font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0a0d11;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
    padding: 40px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #ffd60a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 14px;
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
    }

    .navbar-brand h1 {
        font-size: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        width: 100%;
        background-color: rgba(15, 20, 25, 0.98);
        border-bottom: 2px solid rgba(0, 212, 255, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
    }

    .age-badge {
        position: absolute;
        top: 70px;
        right: 20px;
        z-index: 99;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .modal-content {
        padding: 30px;
        margin: 20px;
    }

    .cookies-banner {
        padding: 15px;
    }

    .cookies-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookies-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookies-buttons .btn {
        width: 100%;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    h3 {
        font-size: 24px;
    }

    .responsible-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .stat-card .card-number {
        font-size: 36px;
    }

    .faq-question {
        font-size: 14px;
    }

    .modal-content {
        padding: 20px;
    }
}
