/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    /* Exact background from the image: radial bright glow + vertical stripes */
    background-color: #0b3d91;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 40px
        ),
        radial-gradient(circle at 50% -20%, #4a90e2 0%, #051d45 90%);
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- Top Bar --- */
.top-bar {
    width: 100%;
    background-color: #2a6df5; /* Vibrant blue matched to image */
    color: #ffffff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 12px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* --- Brighter, Attractive Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    max-width: 1050px;
    
    /* Bright frosted glass effect just like the image */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    
    border: 1px solid rgba(255, 255, 255, 0.9); /* Solid white border for sharpness */
    border-radius: 12px;
    padding: 12px 25px;
    margin-top: 30px;
    
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.6);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 35px; /* Ensures 100% zoom par logo fit rahega */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 22px;
}

.nav-links li a {
    color: #091a3f; /* Deep navy text for crisp readability against the bright glass */
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #000;
}

.nav-links li a.highlight {
    color: #2a6df5;
    text-decoration: underline;
}

/* Yellow Button with subtle gradient */
.btn-yellow {
    background: linear-gradient(180deg, #ffde24, #ffb100);
    color: #000;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    border: 1px solid #ffcc00;
    box-shadow: 0 4px 15px rgba(255, 170, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 170, 0, 0.6);
}

/* --- Hero Section --- */
.hero {
    margin-top: 50px;
    width: 90%;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-head {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #d1e3ff;
    text-transform: uppercase;
}

/* Dark Badge (Black Pill) */
.badge {
    background: linear-gradient(180deg, #1c1c1c, #000000);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Main Typography */
.main-title {
    font-size: 3.1rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.main-title .yellow-text {
    color: #ffcc00;
}

.main-title i {
    font-style: italic;
    font-weight: 900;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #c9e0ff;
    margin-bottom: 50px;
    font-weight: 500;
}

/* --- Launch Cards --- */
.launch-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-bottom: 60px;
}

.card {
    background: linear-gradient(135deg, rgba(14, 52, 133, 0.6), rgba(6, 30, 84, 0.8));
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    flex: 1;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.card .icon {
    font-size: 2.5rem;
    color: #ffffff;
    opacity: 0.95;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.7rem;
    color: #7ab3ff;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.card-date {
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icon colors for cards */
.text-green { color: #00ff88; font-size: 1.2rem; }
.text-red { color: #ff3333; font-size: 1.2rem; }

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .launch-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        width: 95%;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .main-title {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 1.1rem;
    }
    .badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
}


/* --- Video & Promo Section --- */
.video-promo-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding-bottom: 40px;
}

/* Video Player Styling */
.video-container {
    width: 90%;
    max-width: 900px;
    background: #000;
    border: 2px solid rgba(74, 144, 226, 0.4); /* Blue glowing border */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(74, 144, 226, 0.2);
    margin-bottom: 50px;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9; /* Keeps the perfect video ratio */
    border: none;
    display: block;
}

/* Promote Area */
.promote-area {
    text-align: center;
    margin-bottom: 60px;
}

.promote-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.affiliate-boxes {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.aff-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 12px;
    padding: 30px 40px;
    min-width: 320px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.aff-box h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Modifier for full-width button inside boxes */
.block-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
}

/* Introducing Area */
.introducing-area {
    text-align: center;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 0.85rem;
    color: #a0c4ff;
    margin-bottom: 10px;
}

.intro-logo {
    max-height: 45px;
    object-fit: contain;
}

/* --- Dark Footer Info Section --- */
.dark-footer {
    width: 100%;
    background-color: #000000;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 900px;
    text-align: center;
}

.footer-main-text {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-sub-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0a0a0;
    font-weight: 500;
}

/* Responsive Adjustments for Next Section */
@media (max-width: 768px) {
    .affiliate-boxes {
        flex-direction: column;
        align-items: center;
    }
    .aff-box {
        width: 100%;
        max-width: 350px;
    }
    .promote-title {
        font-size: 1.8rem;
    }
    .footer-main-text {
        font-size: 1.1rem;
    }
}

/* --- Sales Funnel & Commissions Section --- */
.sales-funnel-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color: #050a15; /* Dark background contrasting with the blue hero */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.funnel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1200px;
}

.funnel-card {
    background: linear-gradient(145deg, #0d1b2a, #070f1a);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    display: flex;
    flex-direction: column;
}

.funnel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(74, 144, 226, 0.15);
}

/* Make the most popular card stand out slightly */
.popular-card {
    border: 1px solid rgba(138, 43, 226, 0.5);
    background: linear-gradient(145deg, #130a21, #070f1a);
}
.popular-card:hover {
    border-color: rgba(138, 43, 226, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(138, 43, 226, 0.2);
}

/* Badges */
.funnel-badge {
    background-color: #00e1ff;
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.popular-badge {
    background-color: #8a2be2;
    color: #fff;
}

/* Typography inside cards */
.product-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.price-comm {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.price-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffaa00; /* Yellow/Orange price */
}

.comm-text {
    font-size: 0.95rem;
    font-style: italic;
    color: #a0c4ff;
    margin-left: 8px;
}

.product-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0c4de;
    margin-bottom: 20px;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: auto; /* Pushes the list to fill available space */
}

.feature-list li {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.feature-list li i {
    margin-top: 3px;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .funnel-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Promo Tools & Contest Section --- */
.promo-contest-section {
    width: 100%;
    background-color: #060a12; /* Very dark background to match the image */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Promo Tools Header */
.promo-header {
    text-align: center;
    margin-bottom: 40px;
}

.promo-badge {
    border: 1px solid #1a56ff;
    color: #1a56ff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.promo-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

/* Promo Cards */
.promo-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1000px;
    margin-bottom: 90px;
}

.p-card {
    background-color: #0d121c; /* Darker card background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px 30px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.p-icon {
    color: #1a56ff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.p-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.btn-blue {
    background-color: #1a56ff;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 18px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-blue:hover {
    background-color: #0d3dc2;
}

/* Contest Header */
.contest-header {
    text-align: center;
    margin-bottom: 60px;
}

.contest-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
}

.contest-sub {
    color: #7a869a;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Medals Layout */
.medals-container {
    display: flex;
    align-items: flex-end; /* Aligns them at the bottom so the center one can pop up */
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
}

.medal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Center Medal (1st Place) Adjustment */
.first-place {
    transform: scale(1.15); /* Makes the 1st place medal bigger */
    margin-bottom: 30px; /* Pushes it up slightly */
    z-index: 2;
}

.second-place, .third-place {
    z-index: 1;
}

.medal-box img {
    max-width: 220px;
    width: 100%;
    margin-bottom: 15px;
    /* Adds the subtle red glow behind the medal ribbons as seen in image */
    filter: drop-shadow(0px -15px 25px rgba(255, 0, 0, 0.15));
}

.place-text {
    color: #7a869a;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.prize-amt {
    font-size: 2.2rem;
    font-weight: 900;
}

/* Medal specific colors */
.silver-prize { color: #d0d6df; } /* Silver/Grey */
.gold-prize { color: #ffcc00; }   /* Gold/Yellow */
.bronze-prize { color: #ff7b33; } /* Bronze/Orange */

/* Responsive Design */
@media (max-width: 900px) {
    .medals-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .first-place {
        order: -1; /* Puts 1st place at the top on mobile */
        transform: scale(1.1);
        margin-bottom: 0;
    }
    .promo-cards {
        flex-direction: column;
        align-items: center;
    }
    .p-card {
        width: 100%;
        max-width: 350px;
    }
}

/* --- Contact & Team Section --- */
.contact-team-section {
    width: 100%;
    background-color: #03060c; /* Ultra dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header Area */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.outline-badge {
    border: 1px solid #0055ff;
    color: #0055ff;
    padding: 6px 25px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.contact-sub {
    color: #8a94a6;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Contact Cards */
.contact-cards-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    max-width: 900px;
    margin-bottom: 80px;
}

.c-card {
    background-color: #0d111a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.c-card:hover {
    transform: translateY(-5px);
}

.c-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Card Icons */
.c-card i {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.icon-messenger { color: #0084ff; }
.icon-teams { color: #464eb8; }
.icon-email { color: #ea4335; }

/* Card Buttons */
.c-card a {
    text-decoration: none;
    padding: 10px 18px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    color: #ffffff;
    transition: filter 0.3s ease;
}

.c-card a:hover {
    filter: brightness(1.2);
}

.btn-fb { background-color: #0055ff; }
.btn-teams { background-color: #464eb8; }
.btn-email { background-color: #ea4335; }


/* Team Profiles */
.team-profiles {
    display: flex;
    justify-content: center;
    gap: 60px; /* Spacing between profiles */
    flex-wrap: wrap;
    margin-top: 20px;
}

.profile-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Signature font for names */
.signature-font {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-title {
    color: #0055ff; /* Blue color for title */
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 1.8rem;
    }
    .contact-cards-container {
        flex-direction: column;
        align-items: center;
    }
    .c-card {
        width: 100%;
        max-width: 350px;
    }
    .team-profiles {
        gap: 40px;
    }
}

