/* =============================
   Global Styles
============================= */
body.mistiqnow-top {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #002800;
    color: #ffcfa7;
    scroll-behavior: smooth;
}

a {
    color: #ffada5;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: #ffcfa7;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #ffada5;
    text-shadow: 1px 1px 2px #000;
    font-weight: 700;
}

/* Buttons */
.mistiqnow-top-btn {
    background-color: #ffada5;
    color: #002800;
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mistiqnow-top-btn:hover {
    background-color: #ffcfa7;
    color: #002800;
}

.mistiqnow-top-btn-outline {
    background: transparent;
    border: 2px solid #ffada5;
    color: #ffada5;
    padding: 0.6rem 1.4rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.mistiqnow-top-btn-outline:hover {
    background-color: #ffcfa7;
    color: #002800;
    border-color: #ffcfa7;
}

/* =============================
   Navbar
============================= */
.navbar {
    background-color: #002800;
    padding: 1rem 1.5rem;
}
.navbar .nav-link {
    color: #ffcfa7;
    font-weight: 500;
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #ffada5;
}

/* =============================
   Hero Section
============================= */
.mistiqnow-top-hero {
    position: relative;
    text-align: center;
    height: 90vh; /* full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    background: url('../images/hero.jpg') no-repeat center center;
    background-size: cover;
}
.mistiqnow-top-hero-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0, 40, 0, 0.5);
    z-index: 0;
}
/* Limit hero content width */
.mistiqnow-top-hero .container {
    max-width: 900px;
    width: 100%;
    z-index: 1; /* ensure text above overlay */
}

.mistiqnow-top-hero h1,
.mistiqnow-top-hero p,
.mistiqnow-top-hero .d-flex {
    position: relative;
}
.mistiqnow-top-hero .d-flex {
    margin-top: 20px;
    z-index: 1;
    position: relative;
}

/* =============================
   Notice Section
============================= */
.mistiqnow-top-notice-card {
    background-color: #003300;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}
.mistiqnow-top-notice-card i {
    font-size: 3rem;
    color: #ffada5;
    margin-bottom: 15px;
}
.mistiqnow-top-notice-card h2 {
    margin-bottom: 15px;
}
.mistiqnow-top-notice-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* =============================
   Game Section
============================= */
.mistiqnow-top-game-frame {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 3 / 2;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.mistiqnow-top-game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Features Section */
#features {
    background-color: #002800; /* site background */
    color: #ffcfa7; /* text color */
    padding-top: 5rem;
    padding-bottom: 5rem;
}
/* Contain Features Cards */
#features .row {
    max-width: 1100px; /* set desired max width */
    margin: 0 auto;    /* center the row */
    justify-content: center; /* keep columns centered */
    gap: 2rem; /* optional spacing between cards */
}


/* Container width containment */
#features .container {
    max-width: 1200px; /* limit section width */
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Section Title & Lead */
.mistiqnow-top-section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffada5;
    text-shadow: 1px 1px 2px #002800;
    margin-bottom: 0.5rem;
}

.mistiqnow-top-lead {
    font-size: 1.15rem;
    color: #ffcfa7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Feature Cards */
.mistiqnow-top-feature-card {
    background-color: #002800;
    border: 2px solid #ffada5;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.mistiqnow-top-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 173, 165, 0.5);
}

/* Feature Icons */
.mistiqnow-top-feature-card .feature-icon {
    font-size: 2.5rem;
    color: #ffada5;
    margin-bottom: 1rem;
}

/* Feature Titles */
.mistiqnow-top-feature-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #ffada5;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/* Feature Text */
.mistiqnow-top-feature-card p {
    font-size: 0.95rem;
    color: #ffcfa7;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .mistiqnow-top-feature-card {
        padding: 1.8rem 1rem;
    }

    .mistiqnow-top-feature-card .feature-icon {
        font-size: 2rem;
    }

    .mistiqnow-top-feature-card h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    #features .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .mistiqnow-top-section-title {
        font-size: 2rem;
    }

    .mistiqnow-top-lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* ===================== About Section ===================== */
.mistiqnow-top-section-title {
    color: #ffada5;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 1px 1px 3px #002800;
}

.mistiqnow-top-lead {
    color: #ffcfa7;
    font-size: 1.1rem;
    line-height: 1.6;
}

.bg-dark-green {
    background-color: #002800;
}

.bg-dark-green-light {
    background-color: rgba(255, 173, 165, 0.05); /* subtle accent for cards */
}

.mistiqnow-top-about-content {
    color: #ffcfa7;
}

.mistiqnow-top-about-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mistiqnow-top-about-img img {
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.mistiqnow-top-about-img img:hover {
    transform: scale(1.03);
}

.mistiqnow-top-btn {
    background-color: #ffada5;
    color: #002800;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.mistiqnow-top-btn:hover {
    background-color: #ffcfa7;
}

/* ===================== Reviews Section ===================== */
.mistiqnow-top-review-card {
    background-color: rgba(255, 173, 165, 0.05);
    color: #ffcfa7;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mistiqnow-top-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}

.review-avatar {
    background-color: #ffada5;
    color: #002800;
    font-weight: 700;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mistiqnow-top-review-card h6 {
    color: #ffada5;
    font-weight: 600;
}

.mistiqnow-top-review-card small {
    color: #ffcfa7;
}

.mistiqnow-top-review-card p {
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ===================== Responsive Adjustments ===================== */
@media (max-width: 991px) {
    .mistiqnow-top-about-content, .mistiqnow-top-about-img {
        text-align: center;
    }
    .mistiqnow-top-about-img img {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575px) {
    .mistiqnow-top-section-title {
        font-size: 2rem;
    }
    .mistiqnow-top-lead {
        font-size: 1rem;
    }
    .mistiqnow-top-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
    .review-avatar {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1rem;
    }
}


/* =============================
   Footer
============================= */
.mistiqnow-top-footer {
    background-color: #002800;
    color: #ffcfa7;
    padding: 3rem 1rem;
}
.mistiqnow-top-footer-links a {
    color: #ffada5;
    font-weight: 500;
}
.mistiqnow-top-footer-links a:hover {
    color: #ffcfa7;
}
.mistiqnow-top-footer-disclaimer {
    background-color: #003300;
    padding: 1.5rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =============================
   Age Confirmation Popup
============================= */
.mistiqnow-top-popup-overlay {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.mistiqnow-top-popup-card {
    background-color: #003300;
    color: #ffcfa7;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    text-align: center;
}
.mistiqnow-top-popup-card h2 {
    margin-bottom: 15px;
}
.mistiqnow-top-popup-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* =============================
   Scroll to Top Button
============================= */
.mistiqnow-top-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ffada5;
    color: #002800;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
}
.mistiqnow-top-scroll-top:hover {
    background-color: #ffcfa7;
}

/* =============================
   Responsive Styles
============================= */
@media (max-width: 768px) {
    .mistiqnow-top-hero {
        padding: 80px 15px;
    }
    .mistiqnow-top-feature-card, .mistiqnow-top-review-card {
        margin-bottom: 1rem;
    }
    .mistiqnow-top-popup-card {
        width: 90%;
    }
}
@media (max-width: 480px) {
    .mistiqnow-top-hero h1 { font-size: 1.8rem; }
    .mistiqnow-top-hero p { font-size: 1rem; }
    .mistiqnow-top-btn, .mistiqnow-top-btn-outline { padding: 0.5rem 1rem; font-size: 0.9rem; }
}



/* ===================== Contact Section ===================== */
.mistiqnow-top-contact-form {
    background-color: rgba(255, 173, 165, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.mistiqnow-top-contact-form .form-label {
    color: #ffada5;
    font-weight: 600;
}

.mistiqnow-top-contact-form .form-control {
    background-color: #002800;
    color: #ffcfa7;
    border: 1px solid #ffada5;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.mistiqnow-top-contact-form .form-control:focus {
    background-color: #002800;
    color: #ffcfa7;
    border-color: #ffcfa7;
    box-shadow: 0 0 5px rgba(255,173,165,0.5);
}

.mistiqnow-top-contact-form button {
    margin-top: 1rem;
    background-color: #ffada5;
    color: #002800;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    transition: background 0.3s ease;
}

.mistiqnow-top-contact-form button:hover {
    background-color: #ffcfa7;
    color: #002800;
}



/* ===================== Legal Pages ===================== */
.mistiqnow-top-legal-card {
    background-color: rgba(255, 173, 165, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    color: #ffcfa7;
}

.mistiqnow-top-legal-card h3 {
    color: #ffada5;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.mistiqnow-top-legal-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mistiqnow-top-section-title {
    font-size: 2rem;
    color: #ffada5;
    font-weight: 700;
    text-shadow: 1px 1px 3px #002800;
}

.mistiqnow-top-lead {
    color: #ffcfa7;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Container adjustment for legal sections */
#disclaimer,
#privacy-policy,
#terms {
    padding-top: 80px;
    padding-bottom: 80px;
}
