@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Quicksand:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --zen-dark: #181818;
    --zen-gray: #2a2a2a;
    --zen-orange: #ff6b35;
    --zen-yellow: #f7931e;
    --zen-cream: #fff8f0;
    --zen-light: #f5f5f5;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(to bottom, #181818, #2a2a2a, #1a1a1a);
    color: var(--zen-cream);
    line-height: 1.7;
    min-height: 100vh;
}

.site-header {
    background: rgba(42, 42, 42, 0.95);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(255, 107, 53, 0.4);
    border-bottom: 3px solid var(--zen-orange);
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--zen-orange), var(--zen-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1px;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--zen-orange);
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 0.8rem;
}

.site-nav a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--zen-cream);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.site-nav a:hover {
    background: var(--zen-orange);
    color: var(--zen-dark);
    transform: translateY(-3px);
}

.content-area {
    padding: 4rem 0;
}

.banner-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border-radius: 40px;
    margin-bottom: 4rem;
    border: 2px solid rgba(255, 107, 53, 0.4);
}

.main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--zen-orange), var(--zen-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-heading {
    font-size: 1.5rem;
    color: var(--zen-yellow);
    font-weight: 600;
}

.info-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--zen-orange);
    text-align: center;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.info-card {
    background: linear-gradient(135deg, var(--zen-gray), var(--zen-dark));
    padding: 2.5rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--zen-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.card-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--zen-yellow);
}

.info-card p {
    line-height: 1.8;
}

.article-section {
    background: rgba(42, 42, 42, 0.6);
    padding: 3rem;
    border-radius: 30px;
    margin: 3rem 0;
    border-left: 6px solid var(--zen-orange);
}

.article-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--zen-orange);
}

.article-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.article-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.article-section li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.article-section strong {
    color: var(--zen-yellow);
}

.gaming-section {
    background: var(--zen-dark);
    padding: 3rem;
    border-radius: 40px;
    margin: 4rem 0;
    border: 3px solid var(--zen-orange);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.game-iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 20px;
}

.site-footer {
    background: var(--zen-gray);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--zen-orange);
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    color: var(--zen-yellow);
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: var(--zen-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.footer-nav a:hover {
    color: var(--zen-yellow);
}

.footer-text {
    text-align: center;
    opacity: 0.8;
    margin-top: 2rem;
}

.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.active {
    display: flex;
}

.verification-content {
    background: linear-gradient(135deg, var(--zen-gray), var(--zen-dark));
    padding: 3.5rem 3rem;
    border-radius: 35px;
    text-align: center;
    max-width: 550px;
    border: 3px solid var(--zen-orange);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

.verification-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--zen-orange), var(--zen-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verification-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.verification-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.verify-button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-yes {
    background: linear-gradient(90deg, var(--zen-orange), var(--zen-yellow));
    color: var(--zen-dark);
}

.btn-yes:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.btn-no {
    background: transparent;
    color: var(--zen-cream);
    border: 2px solid var(--zen-cream);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--zen-gray);
        transition: left 0.3s;
        padding-top: 4rem;
        border-right: 3px solid var(--zen-orange);
    }

    .site-nav.active {
        left: 0;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .site-nav li {
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    }

    .site-nav a {
        padding: 1.5rem 2rem;
        border-radius: 0;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .info-heading {
        font-size: 2rem;
    }

    .game-iframe {
        height: 550px;
    }

    .article-section {
        padding: 2rem;
    }

    .verification-buttons {
        flex-direction: column;
    }

    .verify-button {
        width: 100%;
    }
}
