@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&family=Playfair+Display:wght@700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #eaeaea;
    min-height: 100vh;
}

/* Top Navigation Bar */
.top-bar {
    background: rgba(15, 52, 96, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid #e94560;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(233, 69, 96, 0.3);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 55px;
    height: 55px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #e94560;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: #eaeaea;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #e94560;
    border-bottom-color: #e94560;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #e94560;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #b8c6db;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Grid Layout */
.grid-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.grid-full {
    grid-column: span 12;
}

.grid-8 {
    grid-column: span 8;
}

.grid-4 {
    grid-column: span 4;
}

.grid-6 {
    grid-column: span 6;
}

.grid-3 {
    grid-column: span 3;
}

/* Content Cards */
.content-card {
    background: rgba(22, 33, 62, 0.8);
    border: 2px solid #0f3460;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.2);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #e94560;
    margin-bottom: 1rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    color: #4ecca3;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #d4d4d4;
    font-size: 1.05rem;
}

ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin: 0.8rem 0;
    color: #d4d4d4;
    font-size: 1.05rem;
}

/* Notice Box */
.notice-card {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, rgba(78, 204, 163, 0.2) 100%);
    border: 2px solid #e94560;
    border-left: 6px solid #4ecca3;
    border-radius: 15px;
    padding: 2rem;
}

.notice-card h3 {
    color: #e94560;
    margin-top: 0;
}

/* Feature Tiles */
.feature-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-tile {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border: 2px solid #4ecca3;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-tile:hover {
    transform: scale(1.05);
    border-color: #e94560;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.feature-tile h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-tile p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Game Container */
.game-wrapper {
    background: rgba(15, 52, 96, 0.5);
    border: 3px solid #e94560;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.game-wrapper iframe {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Footer */
.site-footer {
    background: rgba(15, 52, 96, 0.95);
    border-top: 3px solid #e94560;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    color: #4ecca3;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer-links a {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #4ecca3;
}

/* Age Gate Modal */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 3px solid #e94560;
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.4);
}

.age-gate-box h2 {
    font-family: 'Playfair Display', serif;
    color: #e94560;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.age-gate-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #eaeaea;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 1rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.age-gate-buttons button:hover {
    transform: scale(1.08);
}

.btn-accept {
    background: linear-gradient(135deg, #e94560 0%, #4ecca3 100%);
    color: white;
}

.btn-reject {
    background: #16213e;
    color: #eaeaea;
    border: 2px solid #0f3460;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-8, .grid-4, .grid-6, .grid-3 {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 52, 96, 0.98);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 3px solid #e94560;
    }

    .main-nav ul.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .grid-container {
        padding: 1rem;
        gap: 1rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .age-gate-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-gate-box h2 {
        font-size: 2rem;
    }
}
