* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', serif;
    background: #2b1810;
    background-image: 
        linear-gradient(135deg, #8b6914 0%, #2b1810 50%, #4a2c1a 100%);
    color: #f4e4c1;
    line-height: 1.75;
    min-height: 100vh;
}

.page-container {
    width: 100%;
    min-height: 100vh;
}

.header-section {
    background: linear-gradient(to right, #8b6914, #b8860b, #8b6914);
    padding: 25px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #ffd700;
}

.header-content {
    max-width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-graphic {
    font-size: 52px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.5));
}

.logo-title {
    font-size: 44px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
}

.nav-toggle-bar {
    width: 34px;
    height: 4px;
    background: #ffd700;
    transition: 0.3s;
    border-radius: 4px;
}

.navigation {
    display: flex;
    gap: 45px;
}

.navigation a {
    color: #2b1810;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    transition: all 0.3s;
    padding: 12px 22px;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.9);
    text-transform: capitalize;
    letter-spacing: 1px;
}

.navigation a:hover {
    background: rgba(255, 215, 0, 1);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.hero-area {
    padding: 100px 40px;
    text-align: center;
    border-bottom: 3px solid #8b6914;
}

.hero-area h1 {
    font-size: 72px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 35px;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
}

.hero-area p {
    font-size: 28px;
    max-width: 1100px;
    margin: 0 auto;
    line-height: 2;
    color: #f4e4c1;
}

.notification-panel {
    max-width: 1200px;
    margin: 60px auto;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.5), rgba(43, 24, 16, 0.7));
    border: 5px solid #b8860b;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.notification-panel h2 {
    font-size: 46px;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin: 30px 0;
    padding: 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 18px;
    border-left: 6px solid #ffd700;
}

.notification-symbol {
    font-size: 38px;
    flex-shrink: 0;
}

.notification-content {
    font-size: 21px;
    line-height: 1.9;
}

.gaming-section {
    padding: 90px 40px;
}

.gaming-section h2 {
    font-size: 56px;
    text-align: center;
    color: #ffd700;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.game-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.4), rgba(0, 0, 0, 0.6));
    padding: 40px;
    border-radius: 35px;
    border: 5px solid #b8860b;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
}

.game-wrapper iframe {
    width: 100%;
    height: 850px;
    border: none;
    border-radius: 25px;
}

.content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-area h1 {
    font-size: 64px;
    color: #ffd700;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.content-area h2 {
    font-size: 50px;
    color: #ffd700;
    margin-bottom: 35px;
    margin-top: 50px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.content-area p {
    font-size: 21px;
    margin-bottom: 28px;
    line-height: 2.1;
}

.content-area ul {
    list-style: none;
    margin: 40px 0;
}

.content-area ul li {
    padding: 20px 0;
    padding-left: 50px;
    position: relative;
    font-size: 21px;
    line-height: 1.9;
}

.content-area ul li::before {
    content: "⬥";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 28px;
}

.footer-area {
    background: linear-gradient(to right, #8b6914, #b8860b, #8b6914);
    padding: 55px 40px;
    text-align: center;
    border-top: 4px solid #ffd700;
    margin-top: 100px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #2b1810;
    text-decoration: none;
    font-size: 21px;
    font-weight: 800;
    transition: all 0.3s;
    padding: 12px 25px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 10px;
}

.footer-links a:hover {
    background: rgba(255, 215, 0, 1);
    transform: scale(1.05);
}

.footer-text {
    font-size: 18px;
    color: #2b1810;
    font-weight: 700;
}

.verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 24, 16, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.verification-modal.active {
    display: flex;
}

.verification-box {
    background: linear-gradient(135deg, #2b1810, #4a2c1a);
    border: 6px solid #ffd700;
    border-radius: 35px;
    padding: 65px;
    text-align: center;
    max-width: 650px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9);
}

.verification-box h2 {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 35px;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.verification-box p {
    font-size: 24px;
    margin-bottom: 45px;
    line-height: 2;
}

.verification-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.verify-btn {
    padding: 22px 60px;
    font-size: 24px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.verify-btn.yes {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
}

.verify-btn.no {
    background: linear-gradient(135deg, #c62828, #e53935);
    color: white;
}

.verify-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 102px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 102px);
        background: linear-gradient(180deg, #2b1810, #4a2c1a);
        flex-direction: column;
        padding: 50px;
        gap: 30px;
        transition: left 0.4s;
        border-top: 4px solid #ffd700;
    }

    .navigation.open {
        left: 0;
    }

    .nav-toggle.active .nav-toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(11px, 11px);
    }

    .nav-toggle.active .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .nav-toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(10px, -10px);
    }

    .hero-area h1 {
        font-size: 48px;
    }

    .hero-area p {
        font-size: 22px;
    }

    .game-wrapper iframe {
        height: 600px;
    }

    .verification-box {
        padding: 45px;
        margin: 20px;
    }

    .verification-box h2 {
        font-size: 38px;
    }

    .verification-buttons {
        flex-direction: column;
    }

    .logo-title {
        font-size: 34px;
    }

    .logo-graphic {
        font-size: 42px;
    }
}
