
* {
    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.4;
    min-height: 100vh;
    overflow-x: hidden;
}

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

button {
    font-family: "Inter", sans-serif;
}

input, textarea {
    font-family: "Inter", sans-serif;
}

/* Top Age Notice */
.pm62u652r-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 */
.pm62u652r-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);
}

.pm62u652r-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);
}

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

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

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

.pm62u652r-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);
}

/* pm62u652r-hero Section */
.pm62u652r-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;
}

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

.pm62u652r-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);
}

.pm62u652r-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);
}

.pm62u652r-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 */
.pm62u652r-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;
}

.pm62u652r-btn-primary#cqg747g4o-load-game-btn {
    margin: 1.4rem auto 2rem;
}

.pm62u652r-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;
}

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

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

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

.pm62u652r-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pm62u652r-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;
}

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

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

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

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

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

.pm62u652r-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);
}

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

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

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

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

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

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

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

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

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

.pm62u652r-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);
}

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

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

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

.pm62u652r-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);
}

.pm62u652r-contact-message {
    display:none; 
    color:#daa520; 
    margin-top:10px; 
    font-size: 14px;
}

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

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

.pm62u652r-form-group input,
.pm62u652r-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;
}

.pm62u652r-form-group input:focus,
.pm62u652r-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);
}

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

/* Game */

.pm62u652r-featured-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pm62u652r-featured-showcase img {
    width: 400px;
    height: 280px;
    object-fit: cover;
    border-radius: 25px;
    margin: 2rem 0 1rem;
    border: 3px solid #daa520;
}

.pm62u652r-featured-showcase h3 {
    font-size: 2rem;
    line-height: 1.2;
    color: #daa520;
    margin: 1rem 0 0;
    font-weight: 700;
    text-align: center;
}

.pm62u652r-embed-responsive-item {
    margin-top: 45px;
    height: 500px;
}

body.is-visible .pm62u652r-game--container {
    opacity: 1;
    visibility: visible;
}

.pm62u652r-game--container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    position: absolute !important;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    padding: 0 20px;
    width: 100%;
    background: rgba(26, 47, 26, 0.8);
}

.cqg747g4o-game--close {
    width: 26px;
    height: 26px;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    margin-top: 20px;
    cursor: pointer;
}

.cqg747g4o-game--close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    border: none;
}

.cqg747g4o-game--canvas canvas {
    outline: none;
}

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

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

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

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

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

.pm62u652r-footer-links a {
    color: #daa520;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    padding: 4px;
    display: inline-block;
}

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

.pm62u652r-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);
}

.pm62u652r-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 */
.pm62u652r-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 */
.pm62u652r-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #daa520;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Pop-up */

.pm62u652r-ag-ov {
    position: fixed;
    inset: 0;
    background: rgba(26, 47, 26, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.pm62u652r-ag-ov.active {
    display: flex;
}

.pm62u652r-ag-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .28);
    width: min(90vw, 520px);
    padding: 24px 22px;
    border: 3px solid #6e66ff2e;
}

.pm62u652r-ag-title {
    margin: 0 0 10px;
    text-align: center;
    font-weight: 800;
    letter-spacing: .02em;
    color: #17b2a5;
    font-size: 26px;
}

.pm62u652r-ag-uline {
    height: 4px;
    width: 120px;
    margin: 8px auto 14px;
    background: #7c6cff;
    opacity: .35;
    border-radius: 4px;
}

.pm62u652r-ag-text {
    margin: 0 0 18px;
    text-align: center;
    color: #2a2f3a;
    font-size: 16px;
    line-height: 1.55;
}

.pm62u652r-ag-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.pm62u652r-ag-btn {
    appearance: none;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer;
    font-size: 16px;
}

.pm62u652r-ag-yes {
    background: #23a368;
    color: #fff;
    min-width: 120px;
}

.pm62u652r-ag-no {
    background: #e53c48;
    color: #fff;
    min-width: 120px;
}

.pm62u652r-ag-denied {
    display: none;
    margin-top: 6px;
    text-align: center;
    color: #e53c48;
    font-weight: 700;
}

.slide-in-top {
	animation: slide-in-top 0.5s ease-in both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .pm62u652r-game-overview {
        padding: 4rem 0;
    }

    .pm62u652r-mobile-toggle {
        display: block;
    }

    .pm62u652r-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;
    }

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

    .pm62u652r-overview-content h3 {
        font-size: 1.6rem;
    }

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

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

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

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

    .pm62u652r-section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .pm62u652r-contact-container {
        padding: 2rem 1rem;
    }

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

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

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

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

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

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

    .pm62u652r-header {
        top: 64px;
    }
}

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

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


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

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

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

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

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