/* ========================================
   Norvix.cfd — Complete Site Styles
======================================== */

/* --------------------------
   Global Settings
--------------------------- */
body.norvix-cfd {
    font-family: 'Inter', sans-serif;
    background: #004a54;
    color: #f4ffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: #b2edef;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #f4ffff;
}

/* --------------------------
   Navbar
--------------------------- */
.norvix-cfd-nav {
    background: #004a54;
    padding: 1rem 0;
    border-bottom: 1px solid #b2edef33;
}

.norvix-cfd-logo {
    height: 70px;
}

.norvix-cfd-navlist .nav-link {
    color: #f4ffff;
    margin: 0 0.5rem;
    position: relative;
}

.norvix-cfd-navlist .nav-link.active,
.norvix-cfd-navlist .nav-link:hover {
    color: #b2edef;
    border-bottom: 2px solid #b2edef;
}

.navbar-toggler-icon i {
    color: #b2edef;
    font-size: 1.5rem;
}

/* --------------------------
   Hero Section
--------------------------- */
.norvix-cfd-hero {
    position: relative;
    height: 80vh; /* full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: #004a54 url('../images/hero.jpg') center/cover no-repeat;
    overflow: hidden;
}

.norvix-cfd-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,74,84,0.1);
    z-index: 1;
}

.norvix-cfd-hero .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 850px; /* contain content width */
    width: 100%;
    text-align: center;
    padding: 0 15px;
}

.norvix-cfd-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #b2edef;
    text-shadow: 1px 1px #004a54;
    border-bottom: 2px solid #b2edef;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.norvix-cfd-hero .hero-copy {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.norvix-cfd-cta {
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: #b2edef;
    color: #004a54;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.norvix-cfd-cta:hover {
    background: #f4ffff;
	    color: #004a54;

	
}

/* --------------------------
   Responsive Adjustments
--------------------------- */
@media (max-width: 992px) {
    .norvix-cfd-hero .hero-title {
        font-size: 2.5rem;
    }
    .norvix-cfd-hero .hero-copy {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .norvix-cfd-hero {
        height: auto;
        padding: 80px 15px;
    }
    .norvix-cfd-hero .hero-title {
        font-size: 2rem;
    }
    .norvix-cfd-hero .hero-copy {
        font-size: 1rem;
    }
}

/* --------------------------
   Visitor Notice Section
--------------------------- */
.norvix-cfd-notice {
    padding: 60px 20px;
    background: #004a54;
    color: #f4ffff;
}

.norvix-cfd-notice .notice-box {
    background: rgba(178, 237, 239, 0.05);
    border: 2px solid #b2edef;
    border-radius: 12px;
    padding: 30px 25px;
    display: inline-block;
    max-width: 750px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.norvix-cfd-notice .notice-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
}

.norvix-cfd-notice .notice-title {
    font-size: 2rem;
    font-weight: 700;
    color: #b2edef;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 1px 1px #004a54;
}

.norvix-cfd-notice .notice-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.norvix-cfd-notice .norvix-cfd-ghost {
    display: inline-block;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #b2edef;
    background: transparent;
    border: 2px solid #b2edef;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.norvix-cfd-notice .norvix-cfd-ghost:hover {
    background: #b2edef;
    color: #004a54;
    text-decoration: none;
}

/* --------------------------
   Responsive Adjustments
--------------------------- */
@media (max-width: 768px) {
    .norvix-cfd-notice .notice-title {
        font-size: 1.7rem;
    }
    .norvix-cfd-notice .notice-text {
        font-size: 1rem;
    }
}


/* --------------------------
   Play Section
--------------------------- */
.norvix-cfd-play {
    padding: 80px 20px;
    background: #004a54;
    color: #f4ffff;
}

.norvix-cfd-play .section-title {
    font-size: 2.8rem;
    color: #b2edef;
    border-bottom: 2px solid #b2edef;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 30px;
    text-shadow: 1px 1px #004a54;
}

/* Main Game Frame */
.norvix-cfd-main-game-frame {
    max-width: 850px;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.norvix-cfd-main-game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Hover effect for main game frame */
.norvix-cfd-main-game-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

/* Game Selector Thumbnails */
.norvix-cfd-game-selector {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.norvix-cfd-game-thumb {
    width: 200px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.norvix-cfd-game-thumb:hover {
    transform: scale(1.05);
    border-color: #b2edef;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.norvix-cfd-game-thumb.active {
    border-color: #b2edef;
    box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

/* --------------------------
   Responsive Adjustments
--------------------------- */
@media (max-width: 992px) {
    .norvix-cfd-main-game-frame {
        aspect-ratio: 16 / 9;
    }

    .norvix-cfd-game-thumb {
        width: 160px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 576px) {
    .norvix-cfd-main-game-frame {
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .norvix-cfd-game-thumb {
        width: 120px;
        aspect-ratio: 16 / 10;
    }
}

/* --------------------------
   FEATURES SECTION
--------------------------- */
.norvix-cfd-features {
    padding: 80px 20px;
    background: #004a54;
    color: #f4ffff;
}

.norvix-cfd-features .section-title {
    font-size: 2.8rem;
    color: #b2edef;
    text-shadow: 1px 1px #004a54;
    border-bottom: 2px solid #b2edef;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.norvix-cfd-features .section-subtitle {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: #f4ffff;
}

.norvix-cfd-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.norvix-cfd-feature-card {
    background: rgba(178, 237, 239, 0.05);
    border: 1px solid rgba(178, 237, 239, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.norvix-cfd-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
    border-color: #b2edef;
}

.norvix-cfd-feature-card .feature-icon {
    font-size: 2.5rem;
    color: #b2edef;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.norvix-cfd-feature-card:hover .feature-icon {
    transform: scale(1.2);
    color: #f4ffff;
}

.norvix-cfd-feature-card .feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #b2edef;
}

.norvix-cfd-feature-card .feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #f4ffff;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .norvix-cfd-features .section-title {
        font-size: 2.4rem;
    }
    .norvix-cfd-features-grid {
        gap: 20px;
    }
}

/* --------------------------
   About Section
--------------------------- */
.norvix-cfd-about .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.norvix-cfd-about .about-image {
    width: 100%;
    border-radius: 12px;
}

.norvix-cfd-about .about-title {
    font-size: 2rem;
    color: #b2edef;
    margin-bottom: 20px;
}

/* --------------------------
   REVIEWS SECTION
--------------------------- */
.norvix-cfd-reviews {
    padding: 80px 20px;
    background: #004a54;
    color: #f4ffff;
}

.norvix-cfd-reviews .reviews-title {
    font-size: 2.8rem;
    color: #b2edef;
    border-bottom: 2px solid #b2edef;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 16px;
    text-shadow: 1px 1px #004a54;
}

.norvix-cfd-reviews .reviews-subtitle {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: #f4ffff;
}

.norvix-cfd-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: rgba(178, 237, 239, 0.05);
    border: 1px solid rgba(178, 237, 239, 0.3);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    text-align: left;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border-color: #b2edef;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.review-header .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #b2edef;
    color: #004a54;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #b2edef;
}

.review-header .stars {
    color: #f4ffff;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #f4ffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .norvix-cfd-reviews-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .norvix-cfd-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------
   Contact Section
--------------------------- */
.norvix-cfd-contact .section-title {
    font-size: 2.3rem;
    color: #b2edef;
    margin-bottom: 10px;
}

.norvix-cfd-contact .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.norvix-cfd-contact-form .norvix-cfd-input {
    background: #004a54;
    color: #f4ffff;
    border: 1px solid #b2edef;
    border-radius: 6px;
    padding: 10px;
    transition: all 0.3s ease;
}

.norvix-cfd-contact-form .norvix-cfd-input:focus {
    outline: none;
    border-color: #f4ffff;
    background: #004a54;
}

.norvix-cfd-submit {
    background: #b2edef;
    color: #004a54;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 30px;
}

.norvix-cfd-submit:hover {
    background: #f4ffff;
	    color: #004a54;

}

/* --------------------------
   Footer
--------------------------- */
.norvix-cfd-footer {
    background: #004a54;
    color: #f4ffff;
    padding: 60px 20px 40px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.norvix-cfd-footer-logo {
    max-width: 160px;
    margin-bottom: 20px;
}

.norvix-cfd-footer-links li a {
    color: #b2edef;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.norvix-cfd-footer-links li a:hover,
.norvix-cfd-footer-links li a:focus {
    color: #f4ffff;
    border-bottom-color: #b2edef;
}

.footer-disclaimer {
    max-width: 750px;
    margin: 30px auto;
    background: rgba(178, 237, 239, 0.05);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(178, 237, 239, 0.3);
    text-align: center;
}

.footer-disclaimer .disclaimer-title {
    font-size: 1.5rem;
    color: #b2edef;
    margin-bottom: 12px;
}

.footer-disclaimer .disclaimer-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #f4ffff;
}

.footer-divider {
    margin: 30px auto;
    border: 0;
    border-top: 1px solid rgba(178, 237, 239, 0.3);
    width: 80%;
}

.footer-credit {
    font-size: 0.9rem;
    color: #b2edef;
    line-height: 1.4;
}

.footer-credit a {
    color: #b2edef;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #f4ffff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .norvix-cfd-footer {
        padding: 50px 15px 30px;
    }
    .footer-disclaimer {
        padding: 15px 20px;
    }
    .norvix-cfd-footer-links {
        flex-direction: column;
        gap: 10px;
    }
}


/* --------------------------
   Disclaimer Popup
--------------------------- */
.norvix-cfd-popup {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0, 74, 84, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.norvix-cfd-popup.active {
    opacity: 1;
    visibility: visible;
}

.norvix-cfd-popup-inner {
    background: #004a54;
    padding: 30px 25px;
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    text-align: center;
    color: #f4ffff;
    position: relative;
}

.norvix-cfd-popup-inner .popup-title {
    font-size: 1.8rem;
    color: #b2edef;
    margin-bottom: 15px;
    border-bottom: 2px solid #b2edef;
    display: inline-block;
    padding-bottom: 6px;
}

.norvix-cfd-popup-inner .popup-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #f4ffff;
}

.norvix-cfd-popup-inner .popup-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.norvix-cfd-accept, 
.norvix-cfd-exit {
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.norvix-cfd-accept {
    background: #b2edef;
    color: #004a54;
}

.norvix-cfd-accept:hover {
    background: #f4ffff;
	    color: #004a54;

}

.norvix-cfd-exit {
    background: transparent;
    color: #b2edef;
    border: 2px solid #b2edef;
}

.norvix-cfd-exit:hover {
    background: #b2edef;
    color: #004a54;
}

/* Scroll to top button */
.norvix-cfd-scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #b2edef;
    color: #004a54;
    font-size: 1.4rem;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.norvix-cfd-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.norvix-cfd-scroll-top:hover {
    background: #f4ffff;
}

/* --------------------------
   Responsive
--------------------------- */
@media (max-width: 992px) {
    .norvix-cfd-about .about-grid {
        grid-template-columns: 1fr;
    }

    .norvix-cfd-features-row {
        flex-direction: column;
    }

    .norvix-cfd-game-thumb {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .norvix-cfd-hero .hero-title {
        font-size: 2rem;
    }
    .norvix-cfd-hero .hero-copy {
        font-size: 1rem;
    }
}


/* --------------------------
   Legal Pages Base Styles
--------------------------- */
.norvix-cfd-legal {
    padding: 80px 20px;
    background: #004a54;
    color: #f4ffff;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.7;
}

.norvix-cfd-legal .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Main Heading */
.norvix-cfd-legal .legal-main-title {
    font-size: 2.8rem;
    color: #b2edef;
    text-align: center;
    border-bottom: 2px solid #b2edef;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* Subheadings */
.norvix-cfd-legal h2 {
    font-size: 1.8rem;
    color: #b2edef;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraphs */
.norvix-cfd-legal p {
    font-size: 1.05rem;
    color: #f4ffff;
    margin-bottom: 20px;
}

/* Emphasized text */
.norvix-cfd-legal strong {
    color: #b2edef;
    font-weight: 600;
}

/* Lists (if any) */
.norvix-cfd-legal ul {
    margin: 15px 0 20px 20px;
    list-style: disc;
}

.norvix-cfd-legal li {
    margin-bottom: 10px;
}

/* Links */
.norvix-cfd-legal a {
    color: #b2edef;
    text-decoration: none;
    border-bottom: 1px dotted #b2edef;
    transition: all 0.3s ease;
}

.norvix-cfd-legal a:hover {
    color: #f4ffff;
    border-bottom-color: #f4ffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .norvix-cfd-legal .legal-main-title {
        font-size: 2.2rem;
        padding-bottom: 6px;
        margin-bottom: 30px;
    }

    .norvix-cfd-legal h2 {
        font-size: 1.5rem;
    }

    .norvix-cfd-legal p {
        font-size: 1rem;
    }

    .norvix-cfd-legal .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .norvix-cfd-legal .legal-main-title {
        font-size: 1.8rem;
    }

    .norvix-cfd-legal h2 {
        font-size: 1.3rem;
    }

    .norvix-cfd-legal p {
        font-size: 0.95rem;
    }
}
