* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: radial-gradient(circle at 20% 30%, #0f3d0f, #071506 70%);
    color: #fff;
}

.page-wrapper {
    max-width: 1600px;
    margin: auto;
    padding-left: 160px;
    padding-right: 160px;
}

.page-container {
    max-width: 1600px;
    /* controls width like your screenshot */
    margin: 0 auto;
    /* center the page */
}

html {
    scroll-behavior: smooth;
}


/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    padding: 18px 160px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #cccccc;
    font-size: 14px;
    transition: 0.3s ease;
}

.nav-links li a:hover {
    color: #39ff14;
}

.nav-btn {
    background: #39ff14;
    padding: 10px 22px;
    border-radius: 25px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #2ed10f;
}


/* ================= HERO ================= */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 80px 100px;
    min-height: 100vh;
}

.hero-left {
    width: 50%;
}

.hero-left h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-left p {
    color: #bbbbbb;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 550px;
}

.features {
    list-style: none;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #dddddd;
    font-size: 15px;
}

.features li::before {
    content: "✔";
    color: #39ff14;
    margin-right: 12px;
    font-weight: bold;
}

.hero-right {
    width: 45%;
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 0 40px rgba(57, 255, 20, 0.5));
}


/* ================= FEATURES SECTION ================= */

.features-section {
    padding: 120px 80px;
    border-top: 4px solid rgba(57, 255, 20, 0.15);
}

.features-header {
    margin-bottom: 60px;
}

.mini-title {
    color: #e0c15b;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 15px;
}

.features-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.subtitle {
    color: #aaaaaa;
    max-width: 600px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #0f2e0f, #081808);
    border-radius: 20px;
    padding: 40px;
    transition: 0.3s ease;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
}

.feature-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.feature-top img {
    width: 55px;
    height: auto;
}

.feature-top h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.feature-card p {
    color: #bbbbbb;
    font-size: 14px;
    line-height: 1.6;
}


/* ================= CASH OUT SECTION ================= */

.cashout-section {
    padding: 120px 80px;
    border-top: 4px solid rgba(57, 255, 20, 0.15);
}

.cashout-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cashout-left {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.cashout-left img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 40px rgba(57, 255, 20, 0.4));
}

.cashout-content {
    margin-bottom: 30px;
}

.cashout-label {
    color: #e0c15b;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 20px;
}

.cashout-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cashout-content .cashout-desc {
    color: #bbbbbb;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cashout-right {
    width: 50%;
}

.cashout-list {
    list-style: none;
    margin-bottom: 30px;
}

.cashout-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #dddddd;
}

.cashout-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #39ff14;
    font-weight: bold;
}

.cashout-box {
    background: linear-gradient(145deg, #0f2e0f, #081808);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.cashout-box h4 {
    margin-bottom: 15px;
}

.cashout-box ol {
    padding-left: 20px;
    margin-bottom: 15px;
    color: #cccccc;
}

.cashout-box small {
    color: #888888;
    font-size: 12px;
}

.cashout-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #39ff14;
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn-outline {
    border: 1px solid #39ff14;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
}


/* ========== SCREENS CAROUSEL SECTION ========== */

.screens-section {
    padding: 80px 20px 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px solid rgba(57, 255, 20, 0.15);
}

.screens-header {
    width: 100%;
    max-width: 1400px;
    margin-bottom: 30px;
    padding-left: 40px;
}

.screens-mini {
    color: #d4ff4f;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.screens-title {
    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 40px 0;
}

.carousel {
    position: relative;
    width: 1100px;
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 60px;
    left: -30px;
}

.carousel-item {
    position: absolute;
    width: 260px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 36px;
    overflow: visible;
}

.carousel-item img {
    width: 240px;
    height: 530px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 25px 40px -5px rgba(0, 0, 0, 0.7);
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.image-label {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #e5ffcf;
    text-transform: uppercase;
    background: transparent;
    width: 100%;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 20, 0, 0.5);
    white-space: nowrap;
}

.far-left {
    transform: translateX(-540px) scale(0.6);
    opacity: 0.3;
    z-index: 0;
}

.left {
    transform: translateX(-300px) scale(0.8);
    opacity: 0.7;
    z-index: 2;
}

.center {
    transform: translateX(0px) scale(1);
    z-index: 10;
}

.right {
    transform: translateX(300px) scale(0.8);
    opacity: 0.7;
    z-index: 2;
}

.far-right {
    transform: translateX(540px) scale(0.6);
    opacity: 0.3;
    z-index: 0;
}

.hidden {
    opacity: 0;
    transform: scale(0.4) translateX(0);
    z-index: -1;
    pointer-events: none;
}

.arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(30, 70, 40, 0.6);
    border: 1px solid rgba(150, 240, 100, 0.5);
    color: #d0ffa0;
    font-size: 40px;
    font-weight: 300;
    padding: 10px 22px 16px 22px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    backdrop-filter: blur(6px);
    z-index: 20;
    line-height: 0.8;
}

.arrow:hover {
    background: rgba(50, 120, 60, 0.8);
    color: white;
    border-color: #aeff7c;
}

.left-btn {
    left: 20px;
}

.right-btn {
    right: 20px;
}


/* ========== LANGUAGE SECTION ========== */

.language-section {
    padding: 100px 80px 120px 80px;
    color: white;
    border-top: 2px solid rgba(57, 255, 20, 0.15);
}

.language-container {
    max-width: 1300px;
    margin: 0 auto;
}

.language-mini-title {
    color: #e0c15b;
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.language-main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.language-description {
    color: #bbbbbb;
    font-size: 16px;
    max-width: 700px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
    margin-top: 20px;
}

.language-card {
    background: linear-gradient(145deg, #0f2e0f, #081808);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 18px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.2s;
}

.language-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(57, 255, 20, 0.3);
    border-color: rgba(57, 255, 20, 0.4);
}

.flag-img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    background-color: #1a2a1a;
}

.country-name {
    font-size: 18px;
    font-weight: 500;
    color: #f0f0f0;
    letter-spacing: 0.3px;
}

.flag-credit {
    color: #557755;
    font-size: 12px;
    margin-top: 50px;
    text-align: center;
    border-top: 1px dashed #2a4a2a;
    padding-top: 25px;
}


/* ========== ABOUT US (API description) ========== */

.about-section {
    display: flex;
    min-height: 100vh;
    padding: 80px;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid rgba(57, 255, 20, 0.15);
}

.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-mini {
    color: #f4c430;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 25px;
}

.about-heading {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 50px;
}

.about-image-wrapper {
    width: 550px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
}

.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 50px;
    width: 520px;
    line-height: 1.8;
    color: #dcdcdc;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card p {
    margin-bottom: 25px;
    font-size: 16px;
}


/* ========== FAQ SECTION (merged from second file) ========== */

section {
    padding: 80px 40px;
}

.faq-section {
    max-width: 1200px;
    margin: auto;
    padding: 100px 40px;
    border-top: 2px solid rgba(57, 255, 20, 0.15);
}

.faq-label {
    color: #e3c85d;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #b8c7be;
    margin-bottom: 40px;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.faq-item {
    padding: 20px 24px;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(0, 255, 120, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e6f1ea;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.faq-item:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(0, 255, 120, 0.08));
}

.cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(0, 255, 100, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.cta-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.cta-text p {
    color: #b8c7be;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.btn-green {
    background: linear-gradient(90deg, #46ff1f, #1fbf00);
    color: white;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light {
    padding: 14px 24px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}


/* ========== FOOTER (merged from second) ========== */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b8c7be;
    font-size: 14px;
    background: transparent;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #b8c7be;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}


/* Overlay */


/* popup background overlay */

.pop-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.pop-modal {
    width: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2') center/cover no-repeat;
}

.popup-inner {
    padding: 25px;
    text-align: center;
    color: white;
    background: linear-gradient(145deg, #0f2e0f, #1e571e);
}

.logo img {
    width: 100px;
    height: 60px;
}

.usp-list {
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.usp-list ul {
    margin-bottom: 10px;
    padding-left: 18px;
    list-style-type: none;
}

.demo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.demo-box img {
    width: 40px;
}

.demo-text {
    font-size: 13px;
    text-align: left;
}

.demo-text a {
    color: #00ff7f;
}

.trynow {
    background: url(/afbsports/img/trynowbtn.webp) no-repeat;
    background-size: contain;
    width: 160px !important;
    margin: 0 auto;
    color: transparent;
    display: flex;
    justify-content: center;
    height: 80px;
    width: 150px;
}

.try-btn img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: 0.3s;
}

.try-btn img:hover {
    transform: scale(1.05);
}

.close-btn {
    background: #111;
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .navbar {
        padding: 18px 30px;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 140px 30px 60px;
    }
    .hero-left,
    .hero-right {
        width: 100%;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .cashout-container {
        flex-direction: column;
    }
    .cashout-left,
    .cashout-right {
        width: 100%;
    }
    .cashout-content {
        position: relative;
        top: 0;
    }
    .screens-header {
        padding-left: 20px;
    }
    .carousel {
        width: 100%;
        margin-left: 0;
        left: 0;
    }
    .about-section {
        flex-direction: column;
        padding: 40px;
    }
    .about-image-wrapper {
        width: 100%;
    }
    .glass-card {
        width: 100%;
        margin-top: 40px;
    }
    .language-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .faq-title {
        font-size: 40px;
    }
    .cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 800px) {
    .language-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .screens-title {
        font-size: 42px;
    }
}

@media (max-width: 700px) {
    .carousel-item {
        width: 200px;
    }
    .carousel-item img {
        height: 400px;
    }
    .far-left {
        transform: translateX(-280px) scale(0.6);
    }
    .far-right {
        transform: translateX(280px) scale(0.6);
    }
}