* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: #0d0500;
    color: #ffd8b3;
    min-height: 100vh;
    line-height: 1.7;
    background-image: radial-gradient(ellipse at 30% 40%, rgba(255, 102, 0, 0.15) 0%, transparent 60%);
}

.container-main {
    width: 100%;
    margin: 0 auto;
}

.header-section {
    background: linear-gradient(90deg, #cc5500, #ff6600, #cc5500);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 800;
    box-shadow: 0 5px 22px rgba(255, 102, 0, 0.6);
    border-bottom: 4px solid #ff8800;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 38px;
    max-width: 100%;
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
}

.brand-symbol {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #ff8800, #ffaa00);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.5);
}

.brand-text {
    font-family: 'Raleway', sans-serif;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.navigation-menu ul {
    display: flex;
    list-style: none;
    gap: 18px;
}

.navigation-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 30px;
    border: 2px solid transparent;
}

.navigation-menu ul li a:hover {
    border-color: #ffaa00;
    background: rgba(255, 170, 0, 0.2);
    transform: scale(1.08);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.mobile-toggle span {
    width: 36px;
    height: 4px;
    background: #ffaa00;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.welcome-area {
    padding: 95px 38px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(204, 85, 0, 0.3), transparent);
}

.welcome-area h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 74px;
    margin-bottom: 32px;
    color: #ffaa00;
    text-shadow: 0 0 50px rgba(255, 170, 0, 0.8);
    font-weight: 900;
    text-transform: uppercase;
}

.welcome-area p {
    font-size: 23px;
    margin-bottom: 48px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.85;
}

.feature-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 42px;
    margin: 95px 38px;
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
}

.feature-panel {
    background: linear-gradient(135deg, rgba(204, 85, 0, 0.4), rgba(13, 5, 0, 0.9));
    padding: 48px 42px;
    border-radius: 30px;
    border: 3px solid #ff6600;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.4s ease;
}

.feature-panel:hover {
    transform: translateY(-14px) rotate(1deg);
    border-color: #ffaa00;
    box-shadow: 0 18px 55px rgba(255, 136, 0, 0.5);
}

.feature-panel h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 29px;
    margin-bottom: 24px;
    color: #ffaa00;
    font-weight: 800;
    text-transform: uppercase;
}

.feature-panel p {
    font-size: 18px;
    line-height: 1.9;
}

.game-section {
    margin: 95px 38px;
    max-width: 1750px;
    margin-left: auto;
    margin-right: auto;
}

.game-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 58px;
    text-align: center;
    margin-bottom: 58px;
    color: #ffaa00;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(255, 170, 0, 0.6);
}

.game-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 52px;
    border-radius: 30px;
    border: 4px solid #ff6600;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.8);
}

.game-frame {
    width: 100%;
    height: 820px;
    border: none;
    border-radius: 20px;
    background: #000;
}

.content-area {
    margin: 95px auto;
    padding: 58px 38px;
    max-width: 1500px;
}

.content-area h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 58px;
    margin-bottom: 45px;
    color: #ffaa00;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
}

.content-area h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    margin: 42px 0 24px;
    color: #ff8800;
    font-weight: 800;
}

.content-area p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 28px;
}

.content-area ul {
    margin: 32px 0;
    padding-left: 45px;
}

.content-area ul li {
    margin: 16px 0;
    font-size: 19px;
    line-height: 1.9;
}

.footer-section {
    background: linear-gradient(90deg, #cc5500, #ff6600, #cc5500);
    padding: 68px 38px 42px;
    margin-top: 115px;
    border-top: 4px solid #ffaa00;
}

.footer-content {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 42px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.resource-links a {
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 800;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-links a:hover {
    color: #ffaa00;
    text-shadow: 0 0 18px rgba(255, 170, 0, 0.9);
}

.footer-text {
    color: #ffd8b3;
    font-size: 17px;
    line-height: 1.8;
}

.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

.age-verification.active {
    display: flex;
}

.verification-box {
    background: linear-gradient(135deg, #0d0500, #332200);
    padding: 62px 52px;
    border-radius: 32px;
    text-align: center;
    max-width: 620px;
    border: 5px solid #ff6600;
    box-shadow: 0 0 75px rgba(255, 102, 0, 0.8);
}

.verification-box h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 44px;
    margin-bottom: 35px;
    color: #ffaa00;
    font-weight: 900;
    text-transform: uppercase;
}

.verification-box p {
    font-size: 21px;
    margin-bottom: 45px;
    line-height: 1.85;
}

.verification-buttons {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.verification-btn {
    padding: 21px 58px;
    font-size: 21px;
    font-weight: 800;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.verification-btn.confirm {
    background: linear-gradient(135deg, #ff6600, #ffaa00);
    color: #0d0500;
}

.verification-btn.confirm:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 38px rgba(255, 136, 0, 0.7);
}

.verification-btn.deny {
    background: transparent;
    color: #ffaa00;
    border: 4px solid #ff6600;
}

.verification-btn.deny:hover {
    background: rgba(255, 102, 0, 0.25);
    border-color: #ffaa00;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .navigation-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        height: 100vh;
        background: linear-gradient(180deg, #cc5500, #0d0500);
        transition: right 0.3s ease;
        padding: 115px 32px 32px;
        border-left: 4px solid #ff6600;
    }

    .navigation-menu.open {
        right: 0;
    }

    .navigation-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .navigation-menu ul li {
        border-bottom: 2px solid rgba(255, 102, 0, 0.4);
    }

    .navigation-menu ul li a {
        display: block;
        padding: 24px;
        font-size: 20px;
    }

    .welcome-area h1 {
        font-size: 48px;
    }

    .welcome-area p {
        font-size: 20px;
    }

    .feature-panels {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 620px;
    }

    .content-area h2 {
        font-size: 42px;
    }

    .verification-box {
        margin: 32px;
        padding: 45px 38px;
    }

    .verification-box h2 {
        font-size: 36px;
    }

    .verification-buttons {
        flex-direction: column;
    }

    .verification-btn {
        width: 100%;
    }
}
