@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-orange: #ff6b35;
    --warm-yellow: #ffa500;
    --bright-white: #ffffff;
    --dark-section: #1a1a1a;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bright-white);
    color: #333;
    line-height: 1.7;
}

.top-header {
    background: linear-gradient(135deg, var(--flame-orange) 0%, var(--warm-yellow) 100%);
    padding: 1.2rem 0;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bright-white);
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.top-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.top-nav a {
    font-family: 'Rajdhani', sans-serif;
    color: var(--bright-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.top-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--bright-white);
    transition: 0.3s;
    border-radius: 2px;
}

.hero-full {
    background: linear-gradient(135deg, var(--flame-orange) 0%, var(--warm-yellow) 50%, var(--flame-orange) 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: var(--bright-white);
    box-shadow: 0 5px 30px rgba(255, 107, 53, 0.4);
}

.hero-full h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 3px 3px 20px rgba(255, 255, 255, 0.8);
    }
}

.hero-full p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
}

.section-light {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.section-dark {
    background: var(--dark-section);
    color: var(--bright-white);
    padding: 5rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-container h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--flame-orange);
    text-align: center;
}

.section-dark h2 {
    color: var(--warm-yellow);
}

.section-container h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--flame-orange);
}

.section-dark h3 {
    color: var(--warm-yellow);
}

.section-container p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: var(--bright-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-top: 5px solid var(--flame-orange);
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.info-box h3 {
    color: var(--flame-orange);
    margin-bottom: 1rem;
    text-align: center;
}

.info-box p {
    text-align: center;
    color: #555;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 6px solid var(--flame-orange);
    margin: 2rem 0;
}

.highlight-box h3 {
    color: var(--flame-orange);
    margin-bottom: 1.5rem;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 4px solid var(--warm-yellow);
}

.highlight-box li strong {
    color: var(--flame-orange);
}

.game-section {
    background: var(--dark-section);
    padding: 5rem 2rem;
    color: var(--bright-white);
}

.game-section h2 {
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    color: var(--warm-yellow);
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.game-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--flame-orange);
}

.game-wrapper iframe {
    max-width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
}

.site-footer {
    background: linear-gradient(135deg, var(--flame-orange) 0%, var(--warm-yellow) 100%);
    padding: 4rem 2rem;
    color: var(--bright-white);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.footer-link-group {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-link-group a {
    color: var(--bright-white);
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
    border: 2px solid transparent;
}

.footer-link-group a:hover {
    background: var(--bright-white);
    color: var(--flame-orange);
    border-color: var(--bright-white);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: var(--bright-white);
    text-decoration: none;
    margin: 0 1rem;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* Age Verification Modal */
.verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
}

.verification-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.verification-box {
    background: linear-gradient(135deg, var(--flame-orange) 0%, var(--warm-yellow) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    color: var(--bright-white);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.8);
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.verification-box h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.verification-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.verification-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.verification-buttons button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-yes {
    background: var(--bright-white);
    color: var(--flame-orange);
}

.btn-yes:hover {
    background: var(--light-gray);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}

.btn-no {
    background: var(--dark-section);
    color: var(--bright-white);
}

.btn-no:hover {
    background: #333;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .top-nav ul {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--flame-orange) 0%, var(--warm-yellow) 100%);
        width: 100%;
        padding: 2rem 0;
        transition: 0.3s;
        gap: 0;
    }

    .top-nav ul.active {
        left: 0;
    }

    .top-nav li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .hero-full h1 {
        font-size: 2.5rem;
    }

    .hero-full p {
        font-size: 1.1rem;
    }

    .section-container h2 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .verification-box {
        margin: 1rem;
        padding: 2rem;
    }

    .verification-box h2 {
        font-size: 2rem;
    }

    .verification-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .verification-buttons button {
        width: 100%;
    }

    .footer-link-group {
        flex-direction: column;
        gap: 1rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .header-inner {
        padding: 0 1rem;
    }
}
