/* Zenloria.xyz - Zen Nature Design */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d6a4f;
    --secondary-color: #52b788;
    --accent-color: #95d5b2;
    --dark-green: #1b4332;
    --light-green: #d8f3dc;
    --cream: #f1faee;
    --earth: #b7b7a4;
    --text-color: #2d3748;
}

body {
    font-family: 'Lora', serif;
    background: linear-gradient(to bottom, var(--cream) 0%, var(--light-green) 100%);
    color: var(--text-color);
    line-height: 1.8;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 2px 10px rgba(45, 106, 79, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 1.3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, white 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    color: var(--dark-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    color: white;
    letter-spacing: 0.5px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Content */
main {
    max-width: 1250px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.25);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.9;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 2.8rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    font-size: 2.3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.content-section h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1.2rem;
    font-size: 1.7rem;
    font-family: 'Raleway', sans-serif;
}

.content-section h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.4rem;
}

.content-section p {
    margin-bottom: 1.3rem;
    line-height: 1.9;
}

.content-section ul {
    margin-left: 2.2rem;
    margin-bottom: 1.3rem;
}

.content-section li {
    margin-bottom: 0.8rem;
}

/* Notice Boxes */
.notice-box {
    background: linear-gradient(to right, var(--light-green) 0%, white 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(45, 106, 79, 0.1);
}

.notice-box.warning {
    background: linear-gradient(to right, #fee 0%, white 100%);
    border-left-color: #e74c3c;
}

.notice-box.info {
    background: linear-gradient(to right, #e3f2fd 0%, white 100%);
    border-left-color: #3498db;
}

.notice-box h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

/* Game Container */
.game-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
    box-shadow: 0 6px 25px rgba(45, 106, 79, 0.15);
    text-align: center;
}

.game-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.2);
    margin: 0 auto;
    display: block;
}

/* Widget Grid */
.widget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.widget {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(45, 106, 79, 0.1);
    border-top: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(45, 106, 79, 0.2);
    border-top-color: var(--secondary-color);
}

.widget h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-family: 'Raleway', sans-serif;
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--dark-green) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3.5rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Raleway', sans-serif;
    margin-bottom: 1.8rem;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

.footer-links a:hover {
    color: white;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 106, 79, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--secondary-color);
}

.age-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.3rem;
    font-family: 'Raleway', sans-serif;
}

.age-modal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.15rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-button {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.age-button.yes {
    background: linear-gradient(to right, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.age-button.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}

.age-button.no {
    background: linear-gradient(to right, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.age-button.no:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: linear-gradient(to bottom, var(--primary-color) 0%, var(--dark-green) 100%);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    nav ul.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 2rem;
    }

    .game-frame {
        height: 500px;
    }

    .widget-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
