@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Raleway:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, #1a1410 0%, #2d1f15 100%);
    color: #f5f5dc;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(135deg, #0a0705 0%, #1a1410 100%);
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-symbol {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #ffd700 0%, #d4af37 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1410;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #f5f5dc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after, nav a.active::after {
    width: 80%;
}

nav a:hover, nav a.active {
    color: #ffd700;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #d4af37;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

h3 {
    font-family: 'Playfair Display', serif;
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    line-height: 1.9;
    margin-bottom: 1.3rem;
    color: #e5d5b7;
    font-size: 1.1rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.feature-card {
    background: linear-gradient(145deg, #2d1f15 0%, #1a1410 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border-color: #ffd700;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Game Section */
.game-section {
    background: linear-gradient(145deg, #0a0705 0%, #1a1410 100%);
    border-radius: 30px;
    padding: 3rem;
    margin: 4rem 0;
    border: 3px solid #d4af37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.game-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

/* Content Box */
.content-box {
    background: rgba(45, 31, 21, 0.6);
    border-left: 5px solid #d4af37;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.content-box ul {
    margin-left: 2.5rem;
    margin-top: 1.5rem;
}

.content-box li {
    margin: 1rem 0;
    line-height: 1.8;
    color: #e5d5b7;
}

.content-box li strong {
    color: #ffd700;
}

/* Footer */
footer {
    background: #0a0705;
    border-top: 3px solid #d4af37;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-text {
    color: #b8a683;
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* Age Modal */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.age-verification.show {
    display: flex;
}

.age-content {
    background: linear-gradient(145deg, #2d1f15 0%, #1a1410 100%);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    border: 4px solid #d4af37;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.age-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

.age-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #f5f5dc;
}

.age-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.age-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 2px;
}

.age-btn-confirm {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    color: #1a1410;
}

.age-btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.age-btn-decline {
    background: transparent;
    border: 2px solid #d4af37;
    color: #f5f5dc;
}

.age-btn-decline:hover {
    background: #d4af37;
    color: #1a1410;
}

/* Responsive */
@media (max-width: 968px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: linear-gradient(180deg, #1a1410 0%, #0a0705 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: right 0.3s ease;
        border-left: 3px solid #d4af37;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    nav ul.active {
        right: 0;
    }

    nav a {
        width: 100%;
        padding: 1rem;
    }

    .header-content {
        padding: 1rem 1.5rem;
    }

    .site-name {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    main {
        padding: 2rem 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 500px;
    }

    .age-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-btns {
        flex-direction: column;
    }
}
