* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #1a0f00;
    color: #ffeaa7;
    line-height: 1.7;
    overflow-x: hidden;
}

.site-header {
    background: linear-gradient(180deg, #ff8c00 0%, #e67e00 100%);
    padding: 1rem 0;
    box-shadow: 0 5px 25px rgba(255, 140, 0, 0.4);
    position: relative;
}

.header-content {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    text-decoration: none;
    color: #1a0f00;
    font-size: 2.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo svg {
    width: 55px;
    height: 55px;
}

.nav-toggle {
    display: none;
    width: 35px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background: #1a0f00;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 13px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.site-navigation ul {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.site-navigation a {
    color: #1a0f00;
    text-decoration: none;
    padding: 1rem 1.8rem;
    font-weight: 700;
    border-radius: 10px;
    transition: background 0.3s;
}

.site-navigation a:hover {
    background: rgba(26, 15, 0, 0.15);
}

.page-wrapper {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 0;
}

.banner-section {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 50%, #ff8c00 100%);
    padding: 5rem 3rem;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.3);
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.banner-section h1 {
    font-size: 4rem;
    color: #1a0f00;
    margin-bottom: 1.5rem;
    font-weight: 900;
    position: relative;
}

.banner-section p {
    font-size: 1.5rem;
    color: #2d1a00;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 600;
    position: relative;
}

.alert-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.alert-panel {
    background: linear-gradient(145deg, #2d1a00 0%, #1a0f00 100%);
    padding: 2.8rem;
    border-radius: 20px;
    border: 3px solid #ff8c00;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.alert-panel:hover {
    transform: translateY(-5px);
}

.alert-panel h3 {
    color: #ff8c00;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.alert-panel p {
    font-size: 1.08rem;
    line-height: 1.8;
}

.game-wrapper {
    background: #2d1a00;
    padding: 3.5rem;
    border-radius: 30px;
    margin: 4rem 0;
    border: 2px solid #ff8c00;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.game-wrapper h2 {
    color: #ff8c00;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 800;
}

.game-iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.7);
}

.content-panel {
    background: #2d1a00;
    padding: 3rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    border-left: 8px solid #ff8c00;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.content-panel h2 {
    color: #ff8c00;
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    font-weight: 800;
}

.content-panel p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.site-footer {
    background: #0d0700;
    padding: 4rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid #ff8c00;
}

.footer-inner {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h3 {
    color: #ff8c00;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links-row a {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-links-row a:hover {
    color: #ffa500;
}

.footer-inner p {
    color: #ffcc80;
    font-size: 1rem;
}

.verification-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.verification-modal.visible {
    display: flex;
}

.modal-content-box {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    padding: 4rem;
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 70px rgba(255, 140, 0, 0.6);
    border: 4px solid #ffa500;
}

.modal-content-box h2 {
    color: #1a0f00;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.modal-content-box p {
    color: #2d1a00;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.modal-button-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.modal-button-group button {
    padding: 1.3rem 4rem;
    font-size: 1.4rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.accept-btn {
    background: #1a0f00;
    color: #ff8c00;
}

.accept-btn:hover {
    background: #2d1a00;
    transform: scale(1.05);
}

.reject-btn {
    background: transparent;
    color: #1a0f00;
    border: 4px solid #1a0f00;
}

.reject-btn:hover {
    background: rgba(26, 15, 0, 0.1);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .site-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #e67e00;
        padding: 6rem 2rem;
        transition: left 0.3s;
        z-index: 9999;
    }

    .site-navigation.active {
        left: 0;
    }

    .site-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .site-navigation a {
        display: block;
        padding: 1.5rem;
    }

    .banner-section h1 {
        font-size: 2.5rem;
    }

    .banner-section p {
        font-size: 1.2rem;
    }

    .alert-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-iframe {
        height: 600px;
    }

    .modal-content-box {
        padding: 3rem 2rem;
    }

    .modal-button-group {
        flex-direction: column;
    }

    .modal-button-group button {
        width: 100%;
    }
}
