* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to right, #ff6b6b, #4ecdc4, #45b7d1, #f7b731, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    color: #f5f5f5;
    line-height: 1.6;
    min-height: 100vh;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.age-modal.verified {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
    border: 3px solid #ff6b6b;
    border-radius: 25px;
    padding: 60px 40px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(255, 107, 107, 0.5);
}

.age-icon {
    font-size: 90px;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.age-modal-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-modal-box p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ddd;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.age-buttons button {
    flex: 1;
    min-width: 180px;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, #ff6b6b 0%, #f7b731 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.btn-decline {
    background: #2d3436;
    color: #ddd;
    border: 2px solid #636e72;
}

.btn-decline:hover {
    background: #000;
    border-color: #ff6b6b;
}

header {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 3px solid rgba(255, 107, 107, 0.3);
}

.nav-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 900;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.brand-icon {
    font-size: 42px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-name {
    text-shadow: 0 0 25px rgba(255, 107, 107, 0.7);
}

#navigation {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.nav-link:hover, .nav-link.active {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.15);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
}

.bar {
    width: 35px;
    height: 4px;
    background: #ff6b6b;
    border-radius: 3px;
    transition: all 0.3s ease;
}

main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 50px 25px;
}

.hero-section {
    margin-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.tagline {
    font-size: 24px;
    color: #ddd;
    margin-bottom: 35px;
    line-height: 1.5;
}

.feature-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 107, 107, 0.2);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid rgba(255, 107, 107, 0.4);
    font-size: 15px;
}

.primary-btn {
    display: inline-block;
    padding: 20px 55px;
    background: linear-gradient(135deg, #ff6b6b 0%, #f7b731 100%);
    color: #000;
    text-decoration: none;
    border-radius: 18px;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.primary-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 50px rgba(255, 107, 107, 0.7);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-element {
    font-size: 200px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.intro-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.section-header p {
    font-size: 20px;
    color: #ddd;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 25px;
    border: 3px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 107, 0.6);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
}

.card-emoji {
    font-size: 60px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: #ddd;
    line-height: 1.8;
    font-size: 15px;
}

.game-showcase {
    margin-bottom: 80px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.showcase-header p {
    font-size: 20px;
    color: #ddd;
}

.game-embed {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 25px;
    border: 3px solid rgba(255, 107, 107, 0.3);
    margin-bottom: 25px;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 20px;
    background: #000;
}

.game-note {
    text-align: center;
    font-size: 17px;
    color: #ddd;
}

.compliance-section {
    margin-bottom: 80px;
}

.compliance-header {
    text-align: center;
    margin-bottom: 50px;
}

.compliance-header h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.compliance-item {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 25px;
    border: 3px solid rgba(78, 205, 196, 0.4);
}

.compliance-item h4 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #4ecdc4;
    font-weight: 700;
    text-transform: uppercase;
}

.compliance-item p {
    color: #ddd;
    line-height: 1.8;
    font-size: 15px;
}

.additional-info {
    margin-bottom: 80px;
}

.info-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.info-block h3 {
    font-size: 32px;
    margin-bottom: 22px;
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}

.play-intro {
    text-align: center;
    margin-bottom: 60px;
}

.play-intro h1 {
    font-size: 56px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.play-intro p {
    font-size: 22px;
    color: #ddd;
}

.play-area {
    margin-bottom: 60px;
}

.game-wrapper {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 25px;
    border: 3px solid rgba(255, 107, 107, 0.3);
}

.game-fullscreen {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 20px;
    background: #000;
}

.play-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 35px;
}

.guide-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 25px;
    border: 3px solid rgba(255, 107, 107, 0.3);
}

.guide-box h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
}

.guide-box p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 56px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.update-date {
    color: #999;
    margin-bottom: 50px;
    font-style: italic;
    font-size: 15px;
}

.legal-text h2 {
    font-size: 32px;
    margin-top: 45px;
    margin-bottom: 22px;
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
}

.legal-text p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 15px;
}

.legal-text ul {
    margin-left: 35px;
    margin-bottom: 18px;
    color: #ddd;
}

.legal-text li {
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 15px;
}

.legal-text a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
}

.legal-text a:hover {
    text-decoration: underline;
}

footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 3px solid rgba(255, 107, 107, 0.3);
    padding: 60px 25px 25px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #ddd;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-nav a:hover {
    color: #ff6b6b;
}

.footer-bar {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 107, 107, 0.2);
    color: #999;
    font-size: 13px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    #navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 25px;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 3px solid rgba(255, 107, 107, 0.3);
    }

    #navigation.open {
        max-height: 500px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .tagline {
        font-size: 20px;
    }

    .visual-element {
        font-size: 120px;
    }

    .info-split {
        grid-template-columns: 1fr;
    }

    .play-guide {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 500px;
    }

    .game-fullscreen {
        height: 550px;
    }

    .age-modal-box {
        padding: 45px 30px;
    }

    .age-icon {
        font-size: 70px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-buttons button {
        width: 100%;
    }
}