@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

/* Header */
.site-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.brand {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.brand::before {
    content: "💎 ";
}

.brand::after {
    content: " 💎";
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    flex-wrap: wrap;
}

.navigation a {
    color: #d4af37;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
}

.navigation a:hover,
.navigation a.active {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: #d4af37;
    border: none;
    color: #000;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 700;
    border-radius: 5px;
}

/* Main Container */
.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.5));
    border-radius: 30px;
    border: 2px solid #d4af37;
    margin-bottom: 4rem;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.hero-section h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.hero-section p {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.feature-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.8));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.feature-item p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Text Section */
.text-section {
    background: rgba(212, 175, 55, 0.05);
    border-left: 5px solid #d4af37;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 15px;
}

.text-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.text-section p {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.text-section ul {
    list-style: none;
    font-size: 1.3rem;
    line-height: 2.5;
}

.text-section ul li::before {
    content: "◆ ";
    color: #d4af37;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Game Area */
.game-area {
    background: #000;
    border: 3px solid #d4af37;
    border-radius: 25px;
    padding: 4rem;
    margin: 4rem 0;
    text-align: center;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.game-area h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.game-area p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.game-iframe {
    width: 100%;
    max-width: 900px;
    height: 600px;
    border: none;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-top: 3px solid #d4af37;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 5rem;
}

.site-footer p {
    margin: 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-resources a {
    color: #d4af37;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.footer-resources a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Age Modal */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    border: 4px solid #d4af37;
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.6);
}

.age-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 3px;
}

.age-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.age-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-actions button {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.age-actions button:hover {
    transform: scale(1.1);
}

.age-yes {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
}

.age-no {
    background: #222;
    color: #fff;
    border: 2px solid #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        margin: 1rem auto 0;
    }

    .navigation {
        display: none;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .navigation.open {
        display: flex;
    }

    .brand {
        font-size: 2rem;
    }

    .hero-section h2 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 400px;
    }

    .age-content {
        margin: 1rem;
        padding: 3rem;
    }

    .age-content h2 {
        font-size: 2rem;
    }

    .age-actions {
        flex-direction: column;
    }

    .text-section {
        padding: 2rem;
    }
}
