@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Merriweather:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #f0f0f0;
    line-height: 1.8;
    min-height: 100vh;
}

header {
    background: rgba(15, 32, 39, 0.95);
    padding: 1.8rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #d4af37;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-icon {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.7));
}

.brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #f4e5b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4e5b8);
    transition: 0.3s;
    border-radius: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.8rem;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.05rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e5b8);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #d4af37;
}

main {
    width: 100%;
    padding: 0;
}

.intro-banner {
    padding: 6rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(44, 83, 100, 0.6) 0%, rgba(15, 32, 39, 0.8) 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.intro-banner h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, #d4af37, #f4e5b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: capitalize;
}

.intro-banner p {
    font-size: 1.25rem;
    color: #e0e0e0;
    max-width: 850px;
    margin: 0 auto;
    line-height: 2;
}

.main-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.info-card {
    background: rgba(15, 32, 39, 0.6);
    padding: 2.8rem;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.info-card h3 {
    font-family: 'Raleway', sans-serif;
    color: #d4af37;
    font-size: 1.65rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
}

.info-card p {
    color: #d0d0d0;
    font-size: 1.05rem;
    line-height: 1.9;
}

.game-display {
    background: rgba(15, 32, 39, 0.7);
    padding: 3.5rem;
    border-radius: 12px;
    margin: 4rem 0;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.game-display h2 {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #d4af37, #f4e5b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.6rem;
    margin-bottom: 2.8rem;
    font-weight: 800;
}

.game-window {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
    background: #000;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.content-section {
    background: rgba(15, 32, 39, 0.6);
    padding: 3.5rem;
    border-radius: 12px;
    margin: 4rem 0;
    border-left: 5px solid #d4af37;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.content-section h2 {
    font-family: 'Raleway', sans-serif;
    color: #d4af37;
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.content-section p {
    color: #d0d0d0;
    font-size: 1.12rem;
    margin-bottom: 1.6rem;
    line-height: 2;
}

.content-section ul {
    margin-left: 2.5rem;
    color: #d0d0d0;
    margin-bottom: 1.6rem;
}

.content-section ul li {
    margin-bottom: 1.1rem;
    font-size: 1.08rem;
    line-height: 1.9;
}

footer {
    background: rgba(15, 32, 39, 0.95);
    padding: 3.5rem 2.5rem;
    margin-top: 5rem;
    border-top: 2px solid #d4af37;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.08rem;
}

.footer-nav a:hover {
    color: #f4e5b8;
}

.footer-notice {
    color: #999;
    font-size: 0.96rem;
    line-height: 1.8;
}

.verification-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 39, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.verification-screen.active {
    display: flex;
}

.verification-panel {
    background: linear-gradient(135deg, rgba(44, 83, 100, 0.95) 0%, rgba(15, 32, 39, 0.95) 100%);
    padding: 3.8rem;
    border-radius: 16px;
    text-align: center;
    max-width: 580px;
    margin: 2rem;
    border: 3px solid #d4af37;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.verification-panel h2 {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #d4af37, #f4e5b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
    font-weight: 800;
}

.verification-panel p {
    color: #e0e0e0;
    font-size: 1.18rem;
    margin-bottom: 2.5rem;
    line-height: 2;
}

.verification-buttons {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
}

.verification-buttons button {
    padding: 1.25rem 3.5rem;
    font-size: 1.18rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Raleway', sans-serif;
}

.btn-proceed {
    background: linear-gradient(135deg, #d4af37, #f4e5b8);
    color: #0f2027;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-proceed:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.7);
}

.btn-cancel {
    background: linear-gradient(135deg, #555, #888);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-cancel:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(15, 32, 39, 0.98);
        transition: left 0.3s;
        padding-top: 85px;
        backdrop-filter: blur(15px);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2.5rem;
    }

    nav ul li {
        padding: 1.8rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }

    .intro-banner h1 {
        font-size: 2.6rem;
    }

    .intro-banner p {
        font-size: 1.1rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .game-window {
        height: 500px;
    }

    .verification-panel {
        padding: 3rem;
    }

    .verification-buttons {
        flex-direction: column;
    }

    .verification-buttons button {
        width: 100%;
    }
}
