
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg,
            #1a2f1a 0%,
            #2d4a2d 50%,
            #3d5a3d 100%);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Age Notice */
.top-notice {
    background: linear-gradient(90deg, #8b4513, #a0522d);
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid #d2691e;
    position: sticky;
    top: 0;
    z-index: 1001;
}

/* Header */
.header {
    background: rgba(26, 47, 26, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 50px;
    z-index: 1000;
    border-bottom: 2px solid rgba(210, 105, 30, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #daa520;
    text-decoration: none;
    font-family: "Cinzel", serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-links a:hover {
    color: #daa520;
    background: rgba(218, 165, 32, 0.1);
}

.age-indicator {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: linear-gradient(rgba(26, 47, 26, 0.7),
            rgba(45, 74, 45, 0.6)),
        url("../images/game.png");
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #daa520;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: "Cinzel", serif;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #deb887;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    border: none;
    cursor: pointer;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #daa520;
    padding: 16px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #daa520;
    cursor: pointer;
    margin-left: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.6);
}

.btn-secondary:hover {
    background: #daa520;
    color: #1a2f1a;
    transform: translateY(-2px);
}

/* Game Overview Section */
.game-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(45, 74, 45, 0.9),
            rgba(61, 90, 61, 0.8));
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #daa520;
    margin-bottom: 3rem;
    font-family: "Cinzel", serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.overview-content h3 {
    font-size: 2.2rem;
    color: #daa520;
    margin-bottom: 1.5rem;
    font-family: "Cinzel", serif;
}

.overview-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.overview-feature {
    background: rgba(218, 165, 32, 0.1);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.overview-feature h4 {
    color: #daa520;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overview-feature p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.overview-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Temple Experience Section */
.temple-experience {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(26, 47, 26, 0.95),
            rgba(45, 74, 45, 0.9));
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-content h2 {
    font-size: 2.5rem;
    color: #daa520;
    margin-bottom: 1.5rem;
    font-family: "Cinzel", serif;
}

.experience-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.experience-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.experience-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(218, 165, 32, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #daa520;
}

.experience-highlight span {
    font-size: 1.5rem;
    min-width: 40px;
}

.experience-highlight div h4 {
    color: #daa520;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.experience-highlight div p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Adventure Paths Section */
.adventure-paths {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(45, 74, 45, 0.9),
            rgba(61, 90, 61, 0.8));
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.path-card {
    background: linear-gradient(145deg,
            rgba(218, 165, 32, 0.1),
            rgba(218, 165, 32, 0.05));
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.path-card:hover {
    transform: translateY(-8px);
    border-color: #daa520;
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.3);
}

.path-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.path-card h3 {
    font-size: 1.3rem;
    color: #daa520;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "Cinzel", serif;
}

.path-card p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Community Hub Section */
.community-hub {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(26, 47, 26, 0.95),
            rgba(45, 74, 45, 0.9));
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hub-content h2 {
    font-size: 2.5rem;
    color: #daa520;
    margin-bottom: 1.5rem;
    font-family: "Cinzel", serif;
}

.hub-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hub-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hub-stat {
    text-align: center;
    background: rgba(218, 165, 32, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.hub-stat h4 {
    font-size: 2rem;
    color: #daa520;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: "Cinzel", serif;
}

.hub-stat p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(45, 74, 45, 0.9),
            rgba(61, 90, 61, 0.8));
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg,
            rgba(218, 165, 32, 0.1),
            rgba(218, 165, 32, 0.05));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #daa520;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 10px;
    color: #1a2f1a;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
    background: rgba(255, 255, 255, 1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: rgba(26, 47, 26, 0.98);
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(218, 165, 32, 0.3);
}

.footer-content {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-content h4 {
    color: #daa520;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.4rem;
    font-family: "Cinzel", serif;
}

.footer-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-links a {
    color: #daa520;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
}

.disclaimer {
    background: linear-gradient(145deg,
            rgba(45, 74, 45, 0.8),
            rgba(61, 90, 61, 0.6));
    color: #ffffff;
    padding: 2rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 2rem 0;
    border-radius: 12px;
    border: 2px solid rgba(218, 165, 32, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    color: #cccccc;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Bottom Age Notice */
.bottom-notice {
    background: linear-gradient(90deg, #8b4513, #a0522d);
    color: #ffffff;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-top: 2px solid #d2691e;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #daa520;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 47, 26, 0.98);
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .overview-grid,
    .experience-grid,
    .hub-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .paths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-features,
    .hub-stats {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .contact-container {
        padding: 2rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .age-indicator {
        padding: 4px 4px;
        font-size: 12px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }

    .header {
        top: 64px;
    }
}

/* Performance optimizations */
.path-card,
.overview-image,
.experience-highlight {
    will-change: transform;
}

img {
    max-width: 100%;
    height: auto;
}


.legal-content {
    padding: 40px 20px 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.legal-content h2 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.legal-content h3 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.legal-content li {
    margin-bottom: 0.5rem;
}
