/*--------------------------------------
  GENERAL SETTINGS
---------------------------------------*/
body.trynorvu-top-body {
    margin: 0;
    padding: 0;
    font-family: 'Exo 2', sans-serif;
    color: #e2b395;
    background-color: #231605;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    color: #ff7c28;
    text-shadow: 1px 1px 0 #231605;
    font-weight: 800;
    margin-bottom: 1rem;
}

p {
    color: #e2b395;
    font-weight: 400;
}
/*--------------------------------------
  CONTAINERS - CENTERING SECTIONS
---------------------------------------*/
.trynorvu-top-container {
    width: 100%;
    max-width: 1100px; /* all sections contained */
    margin: 0 auto; /* centers horizontally */
    padding: 0 20px;
}

.trynorvu-top-about,
.trynorvu-top-play,
.trynorvu-top-features,
.trynorvu-top-reviews,
.trynorvu-top-contact,
.trynorvu-top-disclaimer-card {
    display: flex;
    justify-content: center; /* center content horizontally */
}

/*--------------------------------------
  NAVBAR
---------------------------------------*/
.trynorvu-top-navbar {
    background-color: #231605;
    padding: 0.8rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.trynorvu-top-logo {
    height: 80px;
}

.trynorvu-top-navbar .nav-link {
    color: #e2b395;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.trynorvu-top-navbar .nav-link.active,
.trynorvu-top-navbar .nav-link:hover {
    color: #ff7c28;
}

.trynorvu-top-toggler {
    border: none;
    color: #ff7c28;
}

/*--------------------------------------
  HERO SECTION
---------------------------------------*/
.trynorvu-top-hero {
    position: relative;
    height: 80vh; /* Fixed height */
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    text-align: center;
    padding: 0 20px;
    background:
                url('../images/hero.jpg') center/cover no-repeat;
    background-color: #231605;
}

.trynorvu-top-hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.trynorvu-top-hero-sub {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.trynorvu-top-hero-actions .trynorvu-top-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/*--------------------------------------
  BUTTONS
---------------------------------------*/
.trynorvu-top-btn.primary {
    background-color: #ff7c28;
    color: #231605;
    border: 2px solid #ff7c28;
}

.trynorvu-top-btn.primary:hover {
    background-color: #e2b395;
    color: #231605;
    border-color: #e2b395;
}

.trynorvu-top-btn.ghost {
    background-color: transparent;
    color: #ff7c28;
    border: 2px solid #ff7c28;
}

.trynorvu-top-btn.ghost:hover {
    background-color: #ff7c28;
    color: #231605;
}

.trynorvu-top-btn.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/*--------------------------------------
  DISCLAIMER CARD
---------------------------------------*/
.trynorvu-top-disclaimer-card {
    background: rgba(255,124,40,0.1);
    border-left: 4px solid #ff7c28;
    padding: 25px 20px;
    margin: 40px auto;
    border-radius: 12px;
    max-width: 900px;
}

.trynorvu-top-disclaimer-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.trynorvu-top-disclaimer-text {
    font-size: 1rem;
    margin-bottom: 15px;
}

.trynorvu-top-small-btn {
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 25px;
    background-color: #ff7c28;
    color: #231605;
}

.trynorvu-top-small-btn:hover {
    background-color: #e2b395;
}

/*--------------------------------------
  GAME SECTION
---------------------------------------*/
.trynorvu-top-play {
    padding: 80px 20px;
    text-align: center;
    overflow: hidden; /* prevents scrolling on parent container */
}

.trynorvu-top-game-wrap {
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden; /* hides any overflow */
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.trynorvu-top-video-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.trynorvu-top-video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    overflow: hidden; /* hides scrollbars inside iframe */
}


/*--------------------------------------
  FEATURES
---------------------------------------*/
.trynorvu-top-features {
    padding: 80px 20px;
}

.trynorvu-top-features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.trynorvu-top-feature {
    background: rgba(255,124,40,0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    flex: 1 1 220px;
    max-width: 250px;
    transition: transform 0.3s;
}

.trynorvu-top-feature:hover {
    transform: translateY(-6px);
}

.trynorvu-top-feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff7c28;
}

.trynorvu-top-feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.trynorvu-top-feature-text {
    font-size: 0.95rem;
}

/*--------------------------------------
  ABOUT SECTION
---------------------------------------*/
.trynorvu-top-about {
    padding: 80px 20px;
    background-color: rgba(255,124,40,0.03); /* subtle accent background */
    display: flex;
    justify-content: center; /* center the inner container */
}

.trynorvu-top-container {
    width: 100%;
    max-width: 1100px; /* contained width */
}

.trynorvu-top-about-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.trynorvu-top-about-content {
    flex: 1 1 400px;
}

.trynorvu-top-section-title {
    font-size: 2rem;
    color: #ff7c28;
    text-shadow: 1px 1px 0 #231605;
    margin-bottom: 20px;
}

.trynorvu-top-about-text {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #e2b395;
    line-height: 1.7;
}

.trynorvu-top-about-image {
    flex: 1 1 400px;
    text-align: center;
}

.trynorvu-top-about-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

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

/* RESPONSIVE */
@media (max-width: 991px) {
    .trynorvu-top-about-inner {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/*--------------------------------------
  REVIEWS
---------------------------------------*/
.trynorvu-top-reviews {
    padding: 80px 20px;
}

.trynorvu-top-reviews-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.trynorvu-top-review {
    background: rgba(255,124,40,0.1);
    padding: 25px;
    border-radius: 16px;
    max-width: 250px;
    text-align: center;
    position: relative;
    flex: 1 1 220px;
}

.trynorvu-top-quote {
    font-size: 2.2rem;
    color: #ff7c28;
    position: absolute;
    top: 10px;
    left: 15px;
}

.trynorvu-top-review-text {
    font-size: 0.95rem;
    margin: 25px 0 10px;
}

.trynorvu-top-reviewer {
    font-weight: 600;
    font-size: 0.9rem;
}

/*--------------------------------------
  CONTACT FORM
---------------------------------------*/
.trynorvu-top-contact {
    padding: 80px 20px;
}

.trynorvu-contact-grid {
    display: grid;
    gap: 20px;
    max-width: 600px;
    margin: 30px auto 0;
}

.trynorvu-input {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    background-color: rgba(255,124,40,0.05);
    color: #e2b395;
    font-size: 0.95rem;
}

.trynorvu-input::placeholder {
    color: #e2b395;
    opacity: 0.7;
}
/*--------------------------------------
  FOOTER
---------------------------------------*/
.trynorvu-top-footer {
    background-color: #231605;
    padding: 60px 20px 40px;
    color: #e2b395;
    text-align: center;
    border-top: 2px solid #ff7c28;
}

.trynorvu-top-footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.trynorvu-top-footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.trynorvu-top-footer-link {
    color: #e2b395;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.trynorvu-top-footer-link:hover {
    color: #ff7c28;
}

/* DISCLAIMER STYLING */
.trynorvu-top-footer-disclaimer {
    background-color: rgba(255,124,40,0.05);
    border-left: 4px solid #ff7c28;
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e2b395;
}

.trynorvu-top-footer-disclaimer h3 {
    color: #ff7c28;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0 #231605;
}

.trynorvu-top-footer-note {
    font-size: 0.85rem;
    margin-top: 15px;
    color: #e2b395;
}

.trynorvu-top-footer-credit-link {
    color: #ff7c28;
    transition: color 0.3s;
}

.trynorvu-top-footer-credit-link:hover {
    color: #e2b395;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .trynorvu-top-footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .trynorvu-top-footer-disclaimer {
        text-align: center;
    }
}


/*--------------------------------------
  SCROLL TO TOP BUTTON
---------------------------------------*/
.trynorvu-top-scroll {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff7c28;
    color: #231605;
    border: none;
    font-size: 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.trynorvu-top-scroll:hover {
    background-color: #e2b395;
}

.trynorvu-top-scroll.visible {
    display: flex;
}

/*--------------------------------------
  AGE CONFIRMATION POPUP
---------------------------------------*/
.trynorvu-top-popup {
    position: fixed;
    inset: 0; /* top, right, bottom, left = 0 */
    background: rgba(35, 22, 5, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.trynorvu-top-popup.visible {
    display: flex;
}

.trynorvu-top-popup-inner {
    background-color: #231605;
    border-radius: 12px;
    max-width: 450px;
    width: 100%;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    animation: popupFadeIn 0.4s ease;
}

.trynorvu-top-popup-title {
    font-size: 1.5rem;
    color: #ff7c28;
    text-shadow: 1px 1px 0 #231605;
    margin-bottom: 15px;
}

.trynorvu-top-popup-text {
    font-size: 1rem;
    color: #e2b395;
    line-height: 1.6;
    margin-bottom: 25px;
}

.trynorvu-top-popup-actions button {
    margin: 0 10px;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #ff7c28;
    transition: all 0.3s ease;
}

.trynorvu-top-popup-actions .primary {
    background-color: #ff7c28;
    color: #231605;
}

.trynorvu-top-popup-actions .primary:hover {
    background-color: #e2b395;
    color: #231605;
}

.trynorvu-top-popup-actions .ghost {
    background-color: transparent;
    color: #ff7c28;
}

.trynorvu-top-popup-actions .ghost:hover {
    background-color: #ff7c28;
    color: #231605;
}

/*--------------------------------------
  POPUP ANIMATION
---------------------------------------*/
@keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .trynorvu-top-popup-inner {
        padding: 20px;
    }

    .trynorvu-top-popup-actions button {
        margin: 5px 0;
        width: 100%;
    }
}


/*--------------------------------------
  RESPONSIVE
---------------------------------------*/
@media (max-width: 991px) {
    .trynorvu-top-about-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .trynorvu-top-features-row, 
    .trynorvu-top-reviews-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .trynorvu-top-hero-title {
        font-size: 2rem;
    }

    .trynorvu-top-hero-sub {
        font-size: 1rem;
    }

    .trynorvu-top-btn.large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}


/*--------------------------------------
  LEGAL PAGES (Disclaimer, Privacy, Terms)
---------------------------------------*/
.trynorvu-top-legal {
    padding: 80px 20px;
    background-color: rgba(255,124,40,0.03); /* subtle accent */
    display: flex;
    justify-content: center; /* center content horizontally */
}

.trynorvu-top-legal .trynorvu-top-container {
    max-width: 900px; /* contained width */
    width: 100%;
}

.trynorvu-top-legal-title {
    font-size: 2.5rem;
    color: #ff7c28;
    text-shadow: 1px 1px 0 #231605;
    margin-bottom: 40px;
    text-align: center;
}

.trynorvu-top-legal-subtitle {
    font-size: 1.6rem;
    color: #ff7c28;
    margin-top: 30px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 0 #231605;
}

.trynorvu-top-legal-text {
    font-size: 1rem;
    color: #e2b395;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* Emphasis for key points */
.trynorvu-top-legal-text strong {
    color: #ff7c28;
}

/* Optional: smaller notes or disclaimers inside legal pages */
.trynorvu-top-legal-note {
    font-size: 0.85rem;
    color: rgba(226,179,149,0.8);
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .trynorvu-top-legal-title {
        font-size: 2rem;
    }

    .trynorvu-top-legal-subtitle {
        font-size: 1.4rem;
    }

    .trynorvu-top-legal-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .trynorvu-top-legal-title {
        font-size: 1.8rem;
    }

    .trynorvu-top-legal-subtitle {
        font-size: 1.2rem;
    }

    .trynorvu-top-legal-text {
        font-size: 0.9rem;
    }
}

