* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: #fef5f1;
    color: #2d2d2d;
    line-height: 1.7;
}

.top-navbar {
    background: linear-gradient(90deg, #ff6b9d 0%, #c94b6e 100%);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
}

.brand-icon {
    width: 45px;
    height: 45px;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #c94b6e 0%, #a83d5a 100%);
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 0.5rem;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(255, 255, 255, 0.15);
}

main {
    margin-top: 80px;
    padding: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section {
    background: linear-gradient(135deg, #fff 0%, #ffe8f0 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(255, 107, 157, 0.15);
}

h1 {
    color: #c94b6e;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 {
    color: #ff6b9d;
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

h3 {
    color: #c94b6e;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
    color: #4a4a4a;
    font-size: 1.05rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.grid-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
}

.notice-banner {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa8c5 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.notice-banner h3 {
    color: white;
    margin-top: 0;
}

.notice-banner ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.notice-banner li {
    margin-bottom: 0.75rem;
}

.game-embed {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.game-embed iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 12px;
    display: block;
}

.site-footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 2.5rem 2rem;
    margin-top: 3rem;
    border-radius: 15px;
}

.site-footer h3 {
    color: #ff6b9d;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: #ffa8c5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.age-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.age-verification-modal.show {
    display: flex;
}

.modal-box {
    background: linear-gradient(135deg, #fff 0%, #ffe8f0 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 80px rgba(255, 107, 157, 0.4);
}

.modal-box h2 {
    color: #c94b6e;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.modal-box p {
    margin: 1rem 0;
    color: #2d2d2d;
}

.modal-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.confirm-btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #c94b6e 100%);
    color: white;
}

.confirm-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.4);
}

.decline-btn {
    background: #e8e8e8;
    color: #555;
}

.decline-btn:hover {
    background: #d0d0d0;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 2rem;
    }

    main {
        padding: 1rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .game-embed iframe {
        height: 450px;
    }

    .modal-box {
        padding: 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons button {
        width: 100%;
    }
}

ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}
