* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #2e7d32;
    background: linear-gradient(135deg, #f1f8e9, #dcedc8, #c5e1a5);
    min-height: 100vh;
}

.wrap {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
}

.site-branding a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.site-name {
    font-family: 'Righteous', sans-serif;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 2px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.site-nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #4caf50, #388e3c);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .site-nav.active {
        max-height: 400px;
    }

    .nav-link {
        display: block;
        padding: 16px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .site-name {
        font-size: 1.5rem;
    }
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-inner {
    background: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    border: 5px solid #4caf50;
}

.frog-emoji {
    font-size: 5.5rem;
    margin-bottom: 20px;
}

.age-gate-inner h2 {
    font-family: 'Righteous', sans-serif;
    color: #4caf50;
    font-size: 2.4rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.age-message {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #2e7d32;
    font-weight: 600;
}

.age-subinfo {
    font-size: 0.95rem;
    color: #66bb6a;
    font-style: italic;
    margin-bottom: 30px;
}

.age-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    padding: 15px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
}

.age-btn.yes {
    background: #4caf50;
    color: white;
}

.age-btn.yes:hover {
    background: #388e3c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.age-btn.no {
    background: #f44336;
    color: white;
}

.age-btn.no:hover {
    background: #d32f2f;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    padding: 90px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero h1 {
    font-family: 'Righteous', sans-serif;
    font-size: 3.2rem;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 1.4rem;
    color: #c8e6c9;
    font-style: italic;
}

.page-hero {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    padding: 70px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.page-hero h1 {
    font-family: 'Righteous', sans-serif;
    font-size: 2.9rem;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.page-hero-text {
    font-size: 1.3rem;
    color: #c8e6c9;
}

.doc-header {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    padding: 60px 25px;
    text-align: center;
}

.doc-header h1 {
    font-family: 'Righteous', sans-serif;
    font-size: 2.9rem;
    color: white;
    letter-spacing: 3px;
}

/* Content Sections */
.introduction {
    padding: 65px 0;
}

.intro-block {
    background: white;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-top: 6px solid #4caf50;
}

.intro-block h2 {
    font-family: 'Righteous', sans-serif;
    color: #4caf50;
    font-size: 2.3rem;
    margin-bottom: 22px;
    letter-spacing: 2px;
}

.intro-block p {
    margin-bottom: 20px;
    font-size: 1.08rem;
    line-height: 1.8;
}

.vital-info {
    padding: 65px 0;
}

.section-title {
    font-family: 'Righteous', sans-serif;
    text-align: center;
    font-size: 2.6rem;
    color: #4caf50;
    margin-bottom: 45px;
    letter-spacing: 3px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 38px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card.danger {
    border-top: 5px solid #f44336;
}

.info-card.success {
    border-top: 5px solid #4caf50;
}

.info-card.warning {
    border-top: 5px solid #ff9800;
}

.card-icon {
    font-size: 3.8rem;
    margin-bottom: 18px;
}

.info-card h3 {
    font-family: 'Righteous', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #2e7d32;
}

/* Featured Game */
.featured-game {
    padding: 65px 0;
}

.game-subtitle {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #558b2f;
}

.game-wrapper {
    max-width: 980px;
    margin: 0 auto 35px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.4);
}

.game-player {
    width: 100%;
    height: 620px;
    border: none;
}

.game-link-section {
    text-align: center;
}

.action-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.action-button:hover {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

/* Perks */
.perks {
    padding: 65px 0;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 32px;
}

.perk {
    background: white;
    padding: 32px;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.perk:hover {
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
    transform: translateY(-6px);
}

.perk-icon {
    font-size: 3.2rem;
    display: block;
    margin-bottom: 16px;
}

.perk h3 {
    font-family: 'Righteous', sans-serif;
    color: #4caf50;
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* Philosophy */
.philosophy {
    padding: 65px 0;
}

.philosophy-box {
    background: white;
    padding: 48px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-left: 7px solid #4caf50;
}

.philosophy-box h2 {
    font-family: 'Righteous', sans-serif;
    color: #4caf50;
    font-size: 2.3rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.philosophy-box p {
    margin-bottom: 22px;
    font-size: 1.08rem;
    line-height: 1.8;
}

/* Responsibility */
.responsibility {
    padding: 65px 0;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.responsibility-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.responsibility-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Play Page */
.gameplay-info {
    padding: 55px 0;
}

.gameplay-box {
    background: white;
    padding: 42px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-top: 6px solid #4caf50;
}

.gameplay-box h2 {
    font-family: 'Righteous', sans-serif;
    color: #4caf50;
    font-size: 2.1rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.gameplay-box > p {
    margin-bottom: 28px;
    font-size: 1.08rem;
}

.tips-box {
    background: rgba(76,175,80,0.1);
    padding: 28px;
    border-radius: 12px;
    margin-top: 28px;
}

.tips-box h3 {
    font-family: 'Righteous', sans-serif;
    color: #4caf50;
    font-size: 1.6rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.tips-list li:last-child {
    border-bottom: none;
}

.play-zone {
    padding: 45px 0 65px;
}

.play-container {
    max-width: 100%;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.4);
    margin-bottom: 35px;
}

.play-iframe {
    width: 100%;
    height: 720px;
    border: none;
}

.play-notice {
    text-align: center;
    background: rgba(244, 67, 54, 0.1);
    padding: 22px;
    border-radius: 12px;
    border: 2px solid #f44336;
}

.play-notice strong {
    color: #4caf50;
}

/* Legal Pages */
.doc-content {
    padding: 65px 0;
}

.doc-container {
    background: white;
    padding: 55px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.doc-intro {
    font-size: 1.18rem;
    font-style: italic;
    color: #4caf50;
    background: rgba(76,175,80,0.1);
    padding: 28px;
    border-radius: 12px;
    border-left: 5px solid #4caf50;
    margin-bottom: 45px;
}

.doc-section {
    margin-bottom: 38px;
}

.doc-section h2 {
    font-family: 'Righteous', sans-serif;
    color: #4caf50;
    font-size: 1.9rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.doc-section h3 {
    font-family: 'Righteous', sans-serif;
    color: #66bb6a;
    font-size: 1.4rem;
    margin-top: 22px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.doc-section p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.doc-section ul {
    margin: 16px 0 16px 38px;
    line-height: 1.9;
}

.doc-section li {
    margin-bottom: 11px;
}

.doc-section.critical {
    background: rgba(244,67,54,0.08);
    padding: 32px;
    border-radius: 14px;
    border: 3px solid #f44336;
}

.critical-box {
    background: rgba(76,175,80,0.1);
    padding: 28px;
    border-radius: 12px;
    border-left: 5px solid #4caf50;
    margin-top: 16px;
}

.summary-box {
    background: rgba(66,165,245,0.1);
    padding: 32px;
    border-radius: 14px;
    border: 2px solid #42a5f5;
    margin-top: 45px;
}

.summary-box h3 {
    font-family: 'Righteous', sans-serif;
    color: #4caf50;
    font-size: 1.7rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.summary-box ul {
    list-style: none;
    margin-left: 0;
}

.doc-footer {
    margin-top: 45px;
    padding-top: 28px;
    border-top: 3px solid #4caf50;
    text-align: center;
    font-style: italic;
    color: #66bb6a;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    padding: 55px 25px 28px;
    margin-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 38px;
    margin-bottom: 38px;
}

.footer-block h4 {
    font-family: 'Righteous', sans-serif;
    color: #81c784;
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.footer-block p {
    line-height: 1.7;
    color: #a5d6a7;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 11px;
}

.footer-menu a {
    color: #c8e6c9;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #81c784;
}

.footer-bar {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #a5d6a7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-text,
    .page-hero-text {
        font-size: 1.15rem;
    }

    .intro-block,
    .philosophy-box,
    .doc-container {
        padding: 28px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .game-player {
        height: 420px;
    }

    .play-iframe {
        height: 520px;
    }

    .info-cards,
    .perks-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-inner {
        padding: 35px;
        margin: 22px;
    }

    .frog-emoji {
        font-size: 4rem;
    }
}
