* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #052e16 0%, #064e3b 50%, #052e16 100%);
    color: #e7e5e4;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 46, 22, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-verification.hidden {
    display: none;
}

.age-verification-panel {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    padding: 3.5rem;
    border-radius: 15px;
    max-width: 600px;
    text-align: center;
    border: 3px solid #d4af37;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.age-logo {
    margin-bottom: 2rem;
}

.age-verification-panel h1 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.age-subtitle {
    font-size: 1.1rem;
    color: #fbbf24;
    margin-bottom: 2rem;
    font-style: italic;
}

.age-message {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.age-requirements {
    background: rgba(5, 46, 22, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #d4af37;
}

.requirement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0.8rem 0;
    font-size: 1.05rem;
}

.req-icon {
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: 700;
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-accept,
.age-decline {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-accept {
    background: #d4af37;
    border-color: #d4af37;
    color: #052e16;
}

.age-accept:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.age-decline {
    background: transparent;
    border-color: #78716c;
    color: #e7e5e4;
}

.age-decline:hover {
    background: rgba(120, 113, 108, 0.2);
}

.site-header {
    background: rgba(5, 46, 22, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #d4af37;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: #d4af37;
    letter-spacing: 2px;
}

.menu-button {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-line {
    width: 28px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
    transition: all 0.3s;
}

.site-navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: #e7e5e4;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.nav-item:hover {
    color: #d4af37;
}

.nav-item:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .menu-button {
        display: flex;
        z-index: 1001;
    }
    
    .menu-button.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-button.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-button.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(5, 46, 22, 0.98);
        flex-direction: column;
        padding: 6rem 2rem;
        transition: right 0.3s;
        border-left: 2px solid #d4af37;
    }
    
    .site-navigation.active {
        right: 0;
    }
    
    .nav-item {
        font-size: 1.3rem;
        padding: 1rem 0;
    }
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.introduction-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #052e16 0%, #064e3b 50%, #052e16 100%);
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.main-heading {
    font-size: 3.8rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: #d6d3d1;
}

.primary-action {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #fbbf24 100%);
    color: #052e16;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid #d4af37;
}

.primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.distinction-section {
    padding: 5rem 0;
    background: #052e16;
}

.distinction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.distinction-card {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #78716c;
    text-align: center;
    transition: all 0.3s;
}

.distinction-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.distinction-card h3 {
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.distinction-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d6d3d1;
}

.featured-game {
    padding: 6rem 0;
    background: linear-gradient(135deg, #064e3b 0%, #052e16 100%);
}

.game-introduction {
    text-align: center;
    margin-bottom: 4rem;
}

.game-introduction h2 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.game-introduction p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #d6d3d1;
    line-height: 1.8;
}

.game-display {
    max-width: 1100px;
    margin: 0 auto;
}

.game-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #d4af37;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.philosophy-section {
    padding: 6rem 0;
    background: #052e16;
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 900;
}

.philosophy-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #d6d3d1;
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background: #064e3b;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.value-item h4 {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d6d3d1;
}

.key-disclosures {
    padding: 6rem 0;
    background: linear-gradient(135deg, #064e3b 0%, #052e16 100%);
}

.disclosure-container {
    background: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
    padding: 4rem;
    border-radius: 15px;
    border: 3px solid #d4af37;
}

.disclosure-container h2 {
    font-size: 3rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.disclosure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.disclosure-entry h3 {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclosure-entry p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #d6d3d1;
}

.additional-information {
    padding: 6rem 0;
    background: #052e16;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
}

.info-column h3 {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-column p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #d6d3d1;
}

.play-introduction {
    padding: 4rem 0;
    text-align: center;
    background: #052e16;
}

.play-introduction h1 {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.play-lead {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    color: #d6d3d1;
}

.gameplay-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #064e3b 0%, #052e16 100%);
}

.gameplay-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.game-container {
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #d4af37;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.gameplay-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.gameplay-guidance {
    padding: 5rem 0;
    background: #052e16;
}

.gameplay-guidance h2 {
    font-size: 2.8rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.guidance-item {
    background: #064e3b;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #78716c;
    transition: all 0.3s;
}

.guidance-item:hover {
    border-color: #fbbf24;
    transform: translateY(-3px);
}

.guidance-item h3 {
    font-size: 1.4rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guidance-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d6d3d1;
}

.play-notice-section {
    padding: 4rem 0;
    background: #064e3b;
}

.play-notice-box {
    background: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #d4af37;
    text-align: center;
}

.play-notice-box h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.play-notice-box p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #d6d3d1;
}

.legal-document {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-document h1 {
    font-size: 3.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 900;
}

.document-date {
    text-align: center;
    font-size: 1.05rem;
    color: #a8a29e;
    margin-bottom: 4rem;
}

.document-section {
    margin-bottom: 3.5rem;
}

.document-section h2 {
    font-size: 1.9rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.document-section p {
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: #d6d3d1;
}

.emphasis-section {
    background: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 3px solid #fbbf24;
}

.emphasized-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fbbf24;
}

.acknowledgment-box {
    background: #064e3b;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #d4af37;
}

.site-footer {
    background: #052e16;
    border-top: 2px solid #d4af37;
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-column h4 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-column p {
    line-height: 1.8;
    color: #d6d3d1;
}

.resource-links {
    list-style: none;
}

.resource-links li {
    margin-bottom: 0.8rem;
}

.resource-links a {
    color: #d6d3d1;
    text-decoration: none;
    transition: color 0.3s;
}

.resource-links a:hover {
    color: #d4af37;
}

.footer-notice {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #78716c;
    color: #a8a29e;
}

@media (max-width: 968px) {
    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .info-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .game-iframe {
        height: 450px;
    }
    
    .gameplay-frame {
        height: 500px;
    }
    
    .play-introduction h1 {
        font-size: 2.3rem;
    }
    
    .legal-document h1 {
        font-size: 2.5rem;
    }
    
    .disclosure-container {
        padding: 2.5rem 1.5rem;
    }
}
