/* Zenvaris - Zen Minimalist Theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pastel-purple: #c4b5fd;
    --pastel-blue: #a5b4fc;
    --pastel-pink: #f9a8d4;
    --soft-bg: #faf5ff;
    --text-dark: #4c1d95;
    --text-gray: #6b7280;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
    color: var(--text-dark);
    line-height: 1.8;
    min-height: 100vh;
}

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: var(--pastel-purple);
    border-bottom-color: var(--pastel-purple);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
    border-radius: 2px;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.content-box {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-box h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.notice-card {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--pastel-purple);
}

.notice-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.notice-items {
    list-style: none;
}

.notice-items li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

.notice-items li:before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--pastel-purple);
    font-size: 1.2rem;
}

.game-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.game-section h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.game-section iframe {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-box {
    background: linear-gradient(135deg, rgba(196, 181, 253, 0.1), rgba(165, 180, 252, 0.1));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

footer {
    background: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--pastel-purple);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 181, 253, 0.3);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-modal-box h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.age-modal-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.age-button.yes {
    background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-blue));
    color: white;
}

.age-button.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(196, 181, 253, 0.4);
}

.age-button.no {
    background: #f87171;
    color: white;
}

.age-button.no:hover {
    background: #ef4444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .content-box {
        padding: 2rem;
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
