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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to right, #10b981, #059669, #047857);
    color: #1f2937;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: rgba(22, 163, 74, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-title {
    font-family: 'Rubik', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.header-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #fff;
    transition: width 0.3s;
}

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

.menu-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.ham-line {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Hero Area */
.hero-area {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-col h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 3.2rem;
    color: #16a34a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-details {
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.action-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
    font-size: 1.1rem;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.hero-graphic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.graphic-item {
    font-size: 5rem;
    text-align: center;
    padding: 2rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.graphic-item:hover {
    transform: scale(1.1);
    background: rgba(34, 197, 94, 0.2);
}

/* Perks */
.perks {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.main-title {
    font-family: 'Rubik', sans-serif;
    font-size: 2.8rem;
    color: #16a34a;
    text-align: center;
    margin-bottom: 3rem;
}

.perks-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.perk-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.perk-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.perk-card h3 {
    font-family: 'Rubik', sans-serif;
    color: #16a34a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.perk-card p {
    color: #6b7280;
}

/* Gameplay */
.gameplay {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.gameplay-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.game-viewport {
    max-width: 900px;
    margin: 0 auto;
    border: 4px solid #16a34a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(34, 197, 94, 0.3);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-benefits {
    text-align: center;
    margin-top: 2.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefits-list li {
    color: #6b7280;
}

/* Legal Info */
.legal-info {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-panel {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 6px solid;
}

.info-panel.danger-panel {
    border-color: #ef4444;
}

.info-panel.info-panel-blue {
    border-color: #3b82f6;
}

.info-panel.warning-panel {
    border-color: #f59e0b;
}

.info-panel h3 {
    font-family: 'Rubik', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #1f2937;
}

.info-panel p {
    color: #6b7280;
}

/* Advantages */
.advantages {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.advantage-blocks {
    max-width: 900px;
    margin: 3rem auto 0;
}

.advantage-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.adv-num {
    font-family: 'Rubik', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #16a34a;
    line-height: 1;
    min-width: 70px;
}

.adv-info h4 {
    font-family: 'Rubik', sans-serif;
    color: #16a34a;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.adv-info p {
    color: #6b7280;
}

/* Footer */
.site-footer {
    background: #16a34a;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

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

.footer-section h4 {
    font-family: 'Rubik', sans-serif;
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin: 0.5rem 0;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

/* Age Screen */
.age-screen {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-screen.hidden {
    display: none;
}

.age-card {
    background: #fff;
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.age-symbol {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-card h2 {
    font-family: 'Rubik', sans-serif;
    color: #16a34a;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.age-card p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.age-small {
    font-size: 0.9rem;
    color: #9ca3af;
}

.age-choice {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-choice button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.age-positive {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

.age-positive:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(34, 197, 94, 0.4);
}

.age-negative {
    background: #d1d5db;
    color: #6b7280;
}

.age-negative:hover {
    background: #9ca3af;
}

/* Play Pages */
.play-intro {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.play-intro h1 {
    font-family: 'Rubik', sans-serif;
    color: #16a34a;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.play-text {
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.play-gaming {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.gaming-frame {
    max-width: 1000px;
    margin: 0 auto;
    border: 4px solid #16a34a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(34, 197, 94, 0.3);
}

.game-frame-play {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-info {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-block {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-symbol {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.info-block h3 {
    font-family: 'Rubik', sans-serif;
    color: #16a34a;
    margin-bottom: 0.8rem;
}

.info-block p {
    color: #6b7280;
}

.play-note {
    max-width: 800px;
    margin: 3rem auto;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #16a34a;
    border-radius: 10px;
    color: #6b7280;
}

/* Legal Pages */
.legal-main {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.legal-main h1 {
    font-family: 'Rubik', sans-serif;
    color: #16a34a;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.doc-date {
    color: #9ca3af;
    margin-bottom: 3rem;
}

.doc-section {
    margin-bottom: 3rem;
}

.doc-section h2 {
    font-family: 'Rubik', sans-serif;
    color: #16a34a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.doc-section p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-hamburger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background: rgba(22, 163, 74, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .header-nav.active {
        left: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-col h1 {
        font-size: 2.2rem;
    }

    .hero-graphic {
        grid-template-columns: 1fr 1fr;
    }

    .graphic-item {
        font-size: 3.5rem;
        padding: 1rem;
    }

    .perks-layout {
        grid-template-columns: 1fr;
    }

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

    .game-iframe {
        height: 400px;
    }

    .game-frame-play {
        height: 500px;
    }

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

    .age-card {
        margin: 1rem;
        padding: 2rem;
    }

    .age-choice {
        flex-direction: column;
    }
}
