* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a2a1a 0%, #0f1f0f 100%);
    color: #e8f4e8;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.main-header {
    background: rgba(46, 204, 113, 0.1);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #2ecc71;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-name {
    font-size: 30px;
    font-weight: 800;
    color: #2ecc71;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #2ecc71;
    transition: all 0.3s;
    border-radius: 2px;
}

.primary-nav {
    display: flex;
    gap: 28px;
}

.primary-nav a {
    color: #e8f4e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 6px;
}

.primary-nav a:hover,
.primary-nav a.active {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15) 0%, rgba(243, 156, 18, 0.1) 100%);
    border-bottom: 2px solid rgba(46, 204, 113, 0.3);
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2ecc71;
}

.hero-text {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(46, 204, 113, 0.2);
    border: 2px solid #2ecc71;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
}

/* Welcome Section */
.welcome-section {
    padding: 70px 0;
}

.welcome-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2ecc71;
    font-weight: 800;
}

.welcome-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Core Principles */
.core-principles {
    padding: 70px 0;
    background: rgba(46, 204, 113, 0.05);
}

.core-principles h2 {
    font-size: 38px;
    margin-bottom: 45px;
    text-align: center;
    color: #2ecc71;
    font-weight: 800;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.principle-card {
    background: rgba(243, 156, 18, 0.1);
    border: 2px solid #f39c12;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.principle-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 18px;
}

.principle-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f39c12;
    font-weight: 800;
}

.principle-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* Gaming Section */
.gaming-section {
    padding: 70px 0;
}

.gaming-section h2 {
    font-size: 38px;
    margin-bottom: 18px;
    text-align: center;
    color: #2ecc71;
    font-weight: 800;
}

.gaming-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 35px;
}

.game-box {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    border: 3px solid #2ecc71;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.game-cta {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2ecc71, #f39c12);
    color: #1a1a1a;
    padding: 16px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.6);
}

/* Excellence Section */
.excellence-section {
    padding: 70px 0;
    background: rgba(46, 204, 113, 0.05);
}

.excellence-section h2 {
    font-size: 38px;
    margin-bottom: 45px;
    text-align: center;
    color: #2ecc71;
    font-weight: 800;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.excellence-item {
    display: flex;
    gap: 20px;
    background: rgba(243, 156, 18, 0.1);
    border-left: 4px solid #f39c12;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s;
}

.excellence-item:hover {
    background: rgba(243, 156, 18, 0.15);
    transform: translateX(5px);
}

.item-number {
    font-size: 42px;
    font-weight: 800;
    color: #2ecc71;
    min-width: 42px;
}

.excellence-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f39c12;
    font-weight: 800;
}

.excellence-item p {
    font-size: 16px;
    line-height: 1.7;
}

/* Responsibility Section */
.responsibility-section {
    padding: 70px 0;
}

.responsibility-box {
    background: rgba(46, 204, 113, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(46, 204, 113, 0.3);
}

.responsibility-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2ecc71;
    font-weight: 800;
}

.responsibility-box p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Footer */
.main-footer {
    background: rgba(46, 204, 113, 0.1);
    padding: 55px 0 25px;
    margin-top: 70px;
    border-top: 3px solid #2ecc71;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 20px;
    color: #f39c12;
    margin-bottom: 15px;
    font-weight: 800;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #e8f4e8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.footer-menu a:hover {
    color: #2ecc71;
}

.footer-bottom {
    border-top: 2px solid rgba(46, 204, 113, 0.3);
    padding-top: 22px;
    text-align: center;
    font-size: 14px;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-container {
    background: linear-gradient(135deg, #1a2a1a, #0f1f0f);
    border: 3px solid #2ecc71;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.age-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.age-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2ecc71;
    font-weight: 800;
    text-transform: uppercase;
}

.age-desc {
    font-size: 17px;
    margin-bottom: 20px;
}

.age-requirement {
    background: rgba(46, 204, 113, 0.2);
    border: 2px solid #2ecc71;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.age-requirement p {
    font-size: 18px;
    font-weight: 800;
    color: #f39c12;
    margin: 0;
}

.age-subtext {
    font-size: 15px;
    font-style: italic;
    color: #aaa;
    margin-bottom: 30px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-yes {
    background: linear-gradient(135deg, #2ecc71, #f39c12);
    color: #1a1a1a;
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(46, 204, 113, 0.5);
}

.btn-no {
    background: transparent;
    color: #e8f4e8;
    padding: 15px 35px;
    border: 2px solid #e8f4e8;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.btn-no:hover {
    background: rgba(232, 244, 232, 0.1);
}

/* Play Page */
.play-header {
    padding: 60px 0;
    text-align: center;
    background: rgba(46, 204, 113, 0.15);
    border-bottom: 2px solid rgba(46, 204, 113, 0.3);
}

.play-header h1 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #2ecc71;
    font-weight: 800;
}

.play-header p {
    font-size: 18px;
}

.game-play-section {
    padding: 0;
}

.game-fullscreen-wrapper {
    background: #000;
    width: 100%;
    border-top: 3px solid #2ecc71;
    border-bottom: 3px solid #2ecc71;
}

.game-fullscreen-iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.game-info-section {
    padding: 70px 0;
}

.game-info-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #2ecc71;
    font-weight: 800;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    background: rgba(243, 156, 18, 0.1);
    border: 2px solid #f39c12;
    border-radius: 12px;
    padding: 30px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #f39c12;
    font-weight: 800;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
}

.play-notice-section {
    padding: 50px 0;
    background: rgba(46, 204, 113, 0.05);
}

.play-notice-box {
    background: rgba(46, 204, 113, 0.15);
    border: 3px solid #2ecc71;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
}

.play-notice-box h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2ecc71;
    font-weight: 800;
}

.play-notice-box p {
    font-size: 17px;
    line-height: 1.8;
}

/* Legal Pages */
.legal-header-section {
    padding: 60px 0;
    text-align: center;
    background: rgba(46, 204, 113, 0.15);
    border-bottom: 2px solid rgba(46, 204, 113, 0.3);
}

.legal-header-section h1 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #2ecc71;
    font-weight: 800;
}

.legal-date {
    font-size: 16px;
    color: #aaa;
    font-style: italic;
}

.legal-content-section {
    padding: 70px 0;
}

.legal-document {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(46, 204, 113, 0.1);
    padding: 45px;
    border-radius: 15px;
    border: 2px solid rgba(46, 204, 113, 0.3);
}

.legal-document h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2ecc71;
    font-weight: 800;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .primary-nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(26, 42, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        display: none;
        min-width: 200px;
        border: 2px solid #2ecc71;
    }

    .primary-nav.active {
        display: flex;
    }

    .hero-section h1 {
        font-size: 34px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }

    .principles-grid,
    .excellence-grid,
    .info-cards,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 400px;
    }

    .game-fullscreen-iframe {
        height: 500px;
    }

    .age-container {
        padding: 35px 22px;
        margin: 20px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .legal-document {
        padding: 28px 18px;
    }
}
