@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&family=Nunito:wght@300;400;600;700&display=swap');

:root {
    --cosmos-dark: #0b0d17;
    --nebula-purple: #2d1b4e;
    --star-blue: #4a90d9;
    --nova-orange: #ff6b35;
    --stellar-yellow: #ffd93d;
    --cosmic-white: #f0f4ff;
    --pale-lavender: #c4b5fd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cosmos-dark);
    color: var(--cosmic-white);
    line-height: 1.75;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(11, 13, 23, 1) 0%, rgba(11, 13, 23, 0.95) 100%);
    backdrop-filter: blur(8px);
}

.navbar-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--nova-orange), var(--stellar-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--stellar-yellow);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translateY(-8px);
}

.nav-links ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pale-lavender);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--stellar-yellow);
}

.page-wrapper {
    padding-top: 80px;
}

.hero-area {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 30% 20%, var(--nebula-purple) 0%, var(--cosmos-dark) 50%),
                radial-gradient(ellipse at 70% 80%, rgba(74, 144, 217, 0.15) 0%, transparent 50%);
    position: relative;
    padding: 3rem 2rem;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
                      radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
                      radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
                      radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.2), transparent),
                      radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.3), transparent);
    background-size: 200px 150px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-text {
    text-align: center;
    max-width: 850px;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text h1 .highlight {
    background: linear-gradient(90deg, var(--nova-orange), var(--stellar-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--pale-lavender);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cosmos-dark);
    background: linear-gradient(135deg, var(--nova-orange), var(--stellar-yellow));
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.4);
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.5);
}

.content-section {
    max-width: 1350px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
}

.section-heading {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--stellar-yellow);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.5), rgba(11, 13, 23, 0.8));
    border: 1px solid rgba(196, 181, 253, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--nova-orange);
    transform: translateY(-5px);
}

.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    color: var(--stellar-yellow);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--pale-lavender);
    font-size: 0.95rem;
}

.game-showcase {
    background: linear-gradient(180deg, rgba(45, 27, 78, 0.3) 0%, var(--cosmos-dark) 100%);
    padding: 5rem 2rem;
}

.game-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(11, 13, 23, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.15);
}

.game-box iframe {
    width: 100%;
    height: 570px;
    border: none;
    display: block;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-col h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    color: var(--nova-orange);
    margin-bottom: 1.5rem;
}

.text-col p {
    color: var(--pale-lavender);
    margin-bottom: 1rem;
}

.image-col {
    background: radial-gradient(circle, var(--nebula-purple), var(--cosmos-dark));
    border-radius: 20px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 1px solid rgba(196, 181, 253, 0.2);
}

.footer-section {
    background: #06080f;
    padding: 3.5rem 2.5rem;
    border-top: 1px solid rgba(196, 181, 253, 0.1);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-menu a {
    color: var(--pale-lavender);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--stellar-yellow);
}

.gambling-resources {
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 181, 253, 0.1);
}

.gambling-resources p {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.75rem;
}

.gambling-resources a {
    color: var(--star-blue);
    margin: 0 0.75rem;
    text-decoration: none;
    font-size: 0.85rem;
}

.gambling-resources a:hover {
    text-decoration: underline;
}

.age-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 15, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal-box {
    background: linear-gradient(135deg, var(--nebula-purple), var(--cosmos-dark));
    border: 2px solid var(--nova-orange);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 480px;
    margin: 1rem;
}

.age-modal-box h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.6rem;
    color: var(--stellar-yellow);
    margin-bottom: 1.5rem;
}

.age-modal-box p {
    color: var(--pale-lavender);
    margin-bottom: 2.5rem;
}

.age-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn-group button {
    padding: 0.9rem 2rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-yes {
    background: linear-gradient(135deg, var(--nova-orange), var(--stellar-yellow));
    color: var(--cosmos-dark);
}

.btn-no {
    background: transparent;
    border: 1px solid var(--pale-lavender) !important;
    color: var(--pale-lavender);
}

.btn-yes:hover, .btn-no:hover {
    transform: scale(1.05);
}

.subpage-header {
    padding: 9rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(ellipse at top, var(--nebula-purple) 0%, var(--cosmos-dark) 70%);
}

.subpage-header h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    color: var(--stellar-yellow);
}

.text-page {
    max-width: 850px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.text-page h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    color: var(--nova-orange);
    margin: 2.5rem 0 1rem;
}

.text-page p {
    color: var(--pale-lavender);
    margin-bottom: 1rem;
}

.text-page ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.text-page li {
    color: var(--pale-lavender);
    margin-bottom: 0.5rem;
}

.play-note {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.5), rgba(11, 13, 23, 0.8));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.play-note h3 {
    font-family: 'Exo 2', sans-serif;
    color: var(--stellar-yellow);
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .two-col-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--cosmos-dark);
        padding: 5rem 2rem;
        transition: right 0.3s;
        border-left: 1px solid rgba(196, 181, 253, 0.2);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .navbar-inner {
        padding: 1rem 1.5rem;
    }
    
    .content-section {
        padding: 4rem 1.5rem;
    }
    
    .game-box iframe {
        height: 400px;
    }
    
    .age-btn-group {
        flex-direction: column;
    }
    
    .subpage-header h1 {
        font-size: 2rem;
    }
}
