* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff5f0;
    color: #2d2d2d;
    min-height: 100vh;
    line-height: 1.7;
}

header {
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-symbol {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #ff6b35;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: opacity 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-nav a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

.banner {
    background: linear-gradient(135deg, #ffe5d9 0%, #ffd6c7 100%);
    padding: 100px 30px;
    text-align: center;
    border-bottom: 5px solid #ff6b35;
}

.banner h1 {
    font-size: 64px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 25px;
    line-height: 1.1;
}

.banner-subtitle {
    font-size: 24px;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px;
    font-weight: 400;
}

.action-btn {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-btn:hover {
    background: #ff8c42;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.content-section {
    max-width: 100%;
    padding: 80px 30px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.info-item {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #ff6b35;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateY(-8px);
}

.info-emoji {
    font-size: 56px;
    margin-bottom: 25px;
    display: block;
}

.info-item h3 {
    font-size: 26px;
    color: #2d2d2d;
    margin-bottom: 18px;
    font-weight: 700;
}

.info-item p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.alert-panel {
    background: #fff3cd;
    border: 3px solid #ffc107;
    border-radius: 12px;
    padding: 40px;
    margin: 60px auto;
    max-width: 1000px;
}

.alert-panel h3 {
    font-size: 30px;
    color: #ff6b35;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.alert-panel ul {
    list-style: none;
    padding: 0;
}

.alert-panel li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 18px;
    color: #555;
}

.alert-panel li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 20px;
}

.game-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 1300px;
    border: 3px solid #ff6b35;
}

.game-wrapper iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 12px;
}

.site-footer {
    background: #2d2d2d;
    padding: 60px 30px 35px;
    margin-top: 100px;
    color: white;
}

.footer-wrapper {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ff8c42;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ff6b35;
}

.footer-note {
    color: #999;
    font-size: 15px;
}

.verify-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 45, 45, 0.97);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.verify-overlay.show {
    display: flex;
}

.verify-box {
    background: white;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
    border: 4px solid #ff6b35;
}

.verify-box h2 {
    font-size: 36px;
    color: #ff6b35;
    margin-bottom: 25px;
    font-weight: 700;
}

.verify-box p {
    font-size: 19px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.verify-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.verify-button {
    padding: 18px 45px;
    font-size: 19px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verify-accept {
    background: #ff6b35;
    color: white;
}

.verify-accept:hover {
    background: #ff8c42;
    transform: scale(1.05);
}

.verify-decline {
    background: #666;
    color: white;
}

.verify-decline:hover {
    background: #777;
}

.text-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 30px;
}

.text-page h1 {
    font-size: 52px;
    color: #ff6b35;
    margin-bottom: 35px;
    font-weight: 700;
}

.text-page h2 {
    font-size: 36px;
    color: #ff8c42;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
}

.text-page p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.text-page ul, .text-page ol {
    margin-left: 35px;
    margin-bottom: 25px;
}

.text-page li {
    margin-bottom: 12px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 105px;
        left: -100%;
        width: 100%;
        background: #ff6b35;
        flex-direction: column;
        padding: 35px;
        gap: 30px;
        transition: left 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .main-nav.open {
        left: 0;
    }

    .banner h1 {
        font-size: 42px;
    }

    .banner-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .verify-box {
        margin: 25px;
        padding: 40px 30px;
    }

    .verify-actions {
        flex-direction: column;
    }

    .game-wrapper iframe {
        height: 550px;
    }

    .text-page h1 {
        font-size: 40px;
    }

    .text-page h2 {
        font-size: 30px;
    }
}
