* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #ff6b35 0%, #004e89 50%, #ff6b35 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #f7f7ff;
    line-height: 1.7;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    background: rgba(0, 31, 63, 0.97);
    padding: 1rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-logo {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ff6b35, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle div {
    width: 28px;
    height: 3px;
    background: #feca57;
    margin: 6px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-nav a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #f7f7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s;
    background: rgba(255, 107, 53, 0.1);
}

.main-nav a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.content-area {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.intro-banner {
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.9), rgba(0, 31, 63, 0.9));
    padding: 5rem 3rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #ff6b35;
}

.intro-banner h1 {
    font-size: 3.8rem;
    color: #feca57;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-banner p {
    font-size: 1.4rem;
    color: #f7f7ff;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.8), rgba(0, 31, 63, 0.8));
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #ff6b35;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

.feature-item h2 {
    font-size: 2rem;
    color: #feca57;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e8e8ff;
}

.alert-section {
    background: rgba(255, 107, 53, 0.15);
    border: 3px solid #ff6b35;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.alert-section h3 {
    font-size: 1.8rem;
    color: #feca57;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.alert-section ul {
    list-style-position: inside;
}

.alert-section li {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    color: #f7f7ff;
}

.game-wrapper {
    background: rgba(0, 31, 63, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    margin: 3rem 0;
    border: 3px solid #feca57;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.game-wrapper h2 {
    font-size: 2.5rem;
    color: #feca57;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.site-footer {
    background: rgba(0, 31, 63, 0.97);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid #ff6b35;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: #feca57;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-nav a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.footer-inner p {
    color: #e8e8ff;
    font-size: 1rem;
}

.verification-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.verification-overlay.show {
    display: flex;
}

.verification-box {
    background: linear-gradient(135deg, #004e89, #001f3f);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.verification-box h2 {
    font-size: 2.8rem;
    color: #feca57;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.verification-box p {
    font-size: 1.25rem;
    color: #f7f7ff;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.verify-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.verify-btn {
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
}

.verify-yes {
    background: #ff6b35;
    color: #fff;
}

.verify-yes:hover {
    background: #feca57;
    color: #001f3f;
    transform: scale(1.08);
}

.verify-no {
    background: #dc143c;
    color: #fff;
}

.verify-no:hover {
    background: #ff1744;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 31, 63, 0.98);
        padding: 6rem 2rem;
        transition: left 0.4s;
        border-right: 3px solid #ff6b35;
    }
    
    .main-nav.open {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    .intro-banner h1 {
        font-size: 2.5rem;
    }
    
    .intro-banner p {
        font-size: 1.15rem;
    }
    
    .feature-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-name {
        font-size: 1.6rem;
    }
    
    .game-embed {
        height: 500px;
    }
}
