/* ==================== ROOT & RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF5722;
    --secondary-color: #5B4CFF;
    --text-color: #E4EEFC;
    --bg-dark: #0a0a1a;
    --purple-dark: #1a1535;
    --purple-medium: #2d1b69;
    --card-bg: rgba(45, 27, 105, 0.3);
}

/* ========================================
   PROMOTIONAL RIBBON BAR
   ======================================== */
.promo-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #5B4CFF 0%, #552ffd 50%, #1b0636 100%);
    height: 40px;
    overflow: hidden;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(91, 76, 255, 0.3);
}

.promo-ribbon-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scrollRibbon 30s linear infinite;
    white-space: nowrap;
}

.promo-message {
    display: inline-block;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

@keyframes scrollRibbon {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   PROMOTIONAL POPUP MODAL
   ======================================== */
.promo-popup {
    background-color: #000000c5;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-popup.active {
    display: flex;
    opacity: 1;
}

.promo-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
}

.promo-popup-content {
    position: relative;
    width: 60%;
    max-width: 485px;
    max-height: 70vh;
    background: linear-gradient(180deg, rgba(10, 5, 25, 0.98) 0%, rgba(5, 2, 15, 0.98) 100%);
    border: 2px solid rgb(21, 16, 77);
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(91, 76, 255, 0.5), 0 0 100px rgba(91, 76, 255, 0.3);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.promo-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.promo-close-btn:hover {
    background: rgb(160, 0, 0);
    border-color: rgba(255, 87, 87, 0.5);
    transform: rotate(90deg);
}

.promo-close-btn svg {
    stroke: #E4EEFC;
}

.promo-popup-header {
    padding: 40px 40px 20px;
    text-align: center;
}

.promo-logo-container {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.promo-logo {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(91, 76, 255, 0);
}

.promo-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E4EEFC;
    letter-spacing: 0.5px;
}

.promo-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.promo-badge svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.promo-popup-body {
    padding: 20px 40px 40px;
}

.promo-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
}

.promo-highlight {
    color: var(--secondary-color);
    background: linear-gradient(135deg, #5B4CFF 0%, #7B5FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    text-align: center;
    opacity: 0.8;
    margin-bottom: 30px;
}

.promo-claim-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #5B4CFF 0%, #7B5FFF 100%);
    border: none;
    border-radius: 18px;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(91, 76, 255, 0.4);
    margin-bottom: 15px;
}

.promo-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(91, 76, 255, 0.6);
}

.promo-skip-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.promo-skip-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.promo-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.promo-step {
    background: rgba(91, 76, 255, 0.1);
    border: 1px solid rgba(91, 76, 255, 0.2);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.promo-step:hover {
    background: rgba(91, 76, 255, 0.15);
    border-color: rgba(91, 76, 255, 0.4);
    transform: translateY(-4px);
}

.promo-step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #5B4CFF 0%, #7B5FFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.promo-step-icon svg {
    stroke: #FFFFFF;
}

.promo-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.promo-step-desc {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive Styles for Promo Elements */





@font-face {
    font-family: 'Montserrat Black';
    src: url('../fonts/Montserrat-Black.ttf') format('truetype'),
         url('../fonts/Montserrat-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Aptos';
    src: local('Aptos'), local('Segoe UI Variable'), local('Segoe UI');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Aptos', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    background: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    padding-top: 110px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.2;
}

/* ==================== PARTICLE CANVAS ==================== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(228, 238, 252, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo img {
    height: 35px;
    width: auto;
}

.logo span {
    font-size: 18px;
    font-weight: bolder;
    color: var(--text-color);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu > li > a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.nav-menu > li > a svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.nav-menu > li > a:hover {
    color: #ffffff;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after {
    width: 100%;
}

/* Dropdown Button Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.3s ease;
    font-family: inherit;
}

.dropdown-toggle svg:not(.dropdown-icon) {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.dropdown-toggle:hover {
    color: #ffffff;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(16, 13, 32, 0.973);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(91, 76, 255, 0);
    border-radius: 12px;
    padding: 15px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-menu .nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li {
    padding: 0;
    margin: 0;
}

.nav-menu .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.nav-menu .dropdown-menu li a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.8;
    stroke: currentColor;
}

.nav-menu .dropdown-menu li a:hover {
    background: rgba(91, 76, 255, 0.2);
    color: #ffffff;
    transform: translateX(5px);
}

.nav-menu .dropdown-menu li a:hover svg {
    opacity: 1;
}

.nav-menu .dropdown-menu li a::after {
    display: none;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-only-nav {
    display: none;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-block;
}

.btn {
    padding: 5px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: #ff6b3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(91, 76, 255, 0.4);
}

/* Mobile Button Styles */
.btn-mobile-funded,
.btn-mobile-login {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 25px !important;
    border-radius: 12px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 12px !important;
    width: 100%;
    text-decoration: none;
}

.btn-mobile-funded {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-mobile-funded:hover {
    background: #ff6b3d;
    transform: translateY(-2px);
}

.btn-mobile-login {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--text-color);
}

.btn-mobile-login:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-mobile-funded svg,
.btn-mobile-login svg {
    width: 20px !important;
    height: 20px !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 3px;
    background: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    position: relative;
}

/* ==================== 3D CANDLES CONTAINER ==================== */
.candles-container {
    position: absolute;
    top: 100px;
    right: 60px;
    width: 500px;
    height: 500px;
    z-index: 5;
}

#candlesCanvas {
    width: 100%;
    height: 100%;
    cursor: grab;
}

#candlesCanvas:active {
    cursor: grabbing;
}

/* Hide candles on mobile */


/* ==================== HERO LEFT (Title Area) ==================== */
.hero-left {
    max-width: 550px;
    margin-bottom: 20px;
    
}

.hero-title {
    font-size: 3.2rem;
    font-weight: bolder;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--text-color);
}

.hero-highlight {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    display: inline;
    color: #ff6334;

    line-height: 1;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    margin-top: 8px;
    max-width: 500px;
}

/* ==================== HERO CENTER (Buttons & Features) ==================== */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

/* MT5 Badge */
.mt5-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(91, 76, 255, 0.3);
    border: 2px solid rgba(91, 76, 255, 0.6);
    border-radius: 50px;
    padding: 12px 30px;
    margin-bottom: 15px;
}

.mt5-badge img {
    width: 32px;
    height: 32px;
}

.mt5-badge span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary:hover {
    background: #ff6b3d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-color);
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn-hero-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 76, 255, 0.5);
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(167, 139, 250, 0.25);
    border: 2px solid rgba(167, 139, 250, 0.5);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: #cfbeff;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.85;
    white-space: nowrap;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #e1d7ff;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 3rem;
    opacity: 0.8;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
}

/* Responsive adjustments for hero content */


/* ==================== RESPONSIVE DESIGN ==================== */








/* ==================== TRADERS HERO SECTION ==================== */
.traders-hero {
    position: relative;
    z-index: 2;
    padding: 30px 40px;
    background: linear-gradient(180deg, rgba(10, 10, 26, 0) 0%, rgba(45, 27, 105, 0.1) 100%);
}

.traders-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/built-by-traders-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.traders-container {
    max-width: 1400px;
    margin: 0 auto;
}

.traders-header {
    text-align: center;
    margin-bottom: 20px;
}

.traders-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.traders-highlight {
    background: linear-gradient(90deg, #FF5722 0%, #FF8A50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.traders-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
    max-width: 900px;
    margin: 0 auto;
}

.traders-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
    
}

.trader-feature {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trader-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 76, 255, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trader-feature:hover {
    transform: translateY(-10px);
    border-color: rgba(91, 76, 255, 0.6);
    box-shadow: 0 20px 60px rgba(91, 76, 255, 0.3);
}

.trader-feature:hover::before {
    opacity: 1;
}

.feature-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-heading {
    position: relative;
    z-index: 1;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-subtext {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.85;
}

.feature-highlight {
    color: #5B4CFF;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-note {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: 5px;
}

/* Responsive for Traders Hero */








/* ==================== FAST PAYOUTS SECTION ==================== */
.fast-payouts {
    position: relative;
    z-index: 2;
    padding: 30px 40px;
}

.fast-payouts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/fast-payouts-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.payouts-container {
    max-width: 1400px;
    margin: 0 auto;
}

.payouts-header {
    text-align: center;
    margin-bottom: 20px;
}

.payouts-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.payouts-title {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
}

.payouts-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto;
}

.payouts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.payout-card {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 24px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.payout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.payout-card:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.payout-card:hover::before {
    opacity: 1;
}

.card-image {
    position: relative;
    z-index: 1;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.payout-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(167, 139, 250, 0.4));
    transition: transform 0.4s ease;
}

.payout-card:hover .payout-img {
    transform: scale(1.05);
}

.card-title {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-description {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.85;
}

.payouts-disclaimer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(167, 139, 250, 0.2);
}

.payouts-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.6;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

.highlight-text {
    color: #a78bfa;
    font-weight: 700;
}

/* Responsive for Fast Payouts */








/* ==================== OUR BENEFITS SECTION ==================== */
.our-benefits {
    position: relative;
    z-index: 2;
    padding: 30px 40px;
}

.our-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/benefits-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-header {
    text-align: left;
    margin-bottom: 20px;
    max-width: 700px;
}

.benefits-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.benefits-title {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
}

.benefits-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 24px;
    padding: 15px 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-image {
    position: relative;
    z-index: 1;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.benefit-img {
    max-width: 55%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(167, 139, 250, 0.4));
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-img {
    transform: scale(1.05);
}

.benefit-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 12px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.75;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5B4CFF;
    font-weight: bold;
}

.benefit-extra {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(167, 139, 250, 0.2);
}

.extra-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.extra-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
}

/* Responsive for Our Benefits */








/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    position: relative;
    z-index: 2;
    padding: 30px 40px;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/how-it-works-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.works-container {
    max-width: 2000px;
    margin: 0 auto;
    max-height: 2000px;
}

.works-header {
    text-align: center;
    margin-bottom: 20px;
}

.works-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.works-title {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
}

.works-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto;
}

.works-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.step-card {
    background: rgba(15, 9, 36, 0.911);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 24px;
    padding: 20px 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
}

.arrow-img {
    width: 40px;
    height: 40px;
    transition: opacity 0.3s ease;
}

.step-arrow:hover .arrow-img {
    opacity: 1;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat Black', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(186, 163, 255, 0.856);
    
}

.step-image {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    flex: 1;
}

.step-img {
    max-width: 50%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(167, 139, 250, 0.4));
    transition: transform 0.4s ease;
}

.step-card:hover .step-img {
    transform: scale(1.05);
}

.step-title {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
}

/* Responsive for How it Works */








/* ==================== PRICING PLANS SECTION ==================== */
.pricing-plans {
    position: relative;
    z-index: 2;
    padding: 40px 40px;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-title {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.85;
}

/* Plan Tabs */
.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    position: relative;
    background: rgba(26, 21, 53, 0.6);
    border: 2px solid rgba(167, 139, 250, 0.3);
    color: var(--text-color);
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: rgba(167, 139, 250, 0.6);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #FFFFFF;
}

.tab-badge {
    display: block;
    background: var(--primary-color);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 8px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.pricing-card {
    background: rgba(26, 21, 53, 0.6);
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 16px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 10px 40px rgba(167, 139, 250, 0.3);
}

.card-header {
    text-align: center;
}

.account-size {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.price-btn {
    background: #241d8d;
    color: white;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background: #0052CC;
    transform: scale(1.05);
}

/* Comparison Table */
.comparison-table {
    background: rgba(18, 15, 37, 0.651);
    border: 2px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table tr {
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.feature-name {
    color: var(--text-color);
    font-weight: 600;
    padding: 20px 15px;
    text-align: left;
    min-width: 180px;
}

.feature-value {
    color: var(--text-color);
    opacity: 0.85;
    padding: 20px 15px;
    text-align: center;
    font-weight: 500;
}

.pricing-note {
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
    font-style: italic;
}

/* New Pricing Table Styles */
.pricing-table-wrapper {
    margin-bottom: 30px;
    overflow-x: auto;
    border-radius: 16px;
}

.new-pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(20, 15, 40, 0.8);
    border: 2px solid rgba(91, 76, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.new-pricing-table thead {
    background: rgba(26, 21, 53, 0.9);
}

.new-pricing-table th {
    padding: 20px 15px;
    text-align: center;
    border-right: 1px solid rgba(91, 76, 255, 0.2);
}

.new-pricing-table th:last-child {
    border-right: none;
}

.account-size-header {
    text-align: left;
    color: #E4EEFC;
    font-size: 1.1rem;
    font-weight: 600;
    padding-left: 25px !important;
}

.account-column {
    background: rgba(26, 21, 53, 0.932);
}

.account-size {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.get-plan-btn {
    background: #1f195a;
    color: #FFFFFF;
    border: none;
    padding: 5px 12px;
    border-radius: 17px;
    font-size: 0.45rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.get-plan-btn:hover {
    background: #4A3CE6;
    transform: translateY(-2px);
}

.fee-text {
    color: #E4EEFC;
    font-size: 0.85rem;
    opacity: 0.8;
}

.fee-amount {
    color: #FFFFFF;
    font-weight: 600;
}

.new-pricing-table tbody tr {
    border-bottom: 1px solid rgba(91, 76, 255, 0.15);
}

.new-pricing-table tbody tr:last-child {
    border-bottom: none;
}

.new-pricing-table tbody td {
    padding: 18px 15px;
    border-right: 1px solid rgba(91, 76, 255, 0.15);
}

.new-pricing-table tbody td:last-child {
    border-right: none;
}

.feature-label {
    text-align: left;
    padding-left: 25px !important;
    color: #E4EEFC;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-icon {
    flex-shrink: 0;
    opacity: 0.6;
    color: #5B4CFF;
}

.reward-label {
    font-weight: 600;
}

.reward-subtext,
.refund-subtext {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 2px;
}

.refundable-label {
    font-weight: 600;
}

.feature-value {
    text-align: center;
    color: #E4EEFC;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-value.checkmark {
    color: #5B4CFF;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Add-ons Section */
.addons-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(26, 21, 53, 0.4);
    border: 1px solid rgba(91, 76, 255, 0.2);
    border-radius: 12px;
}

.addon-label {
    color: #E4EEFC;
    font-weight: 600;
    font-size: 1rem;
}

.addon-item {
    color: #E4EEFC;
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
}

.addon-item::before {
    content: "•";
    color: #5B4CFF;
    font-weight: bold;
    margin-right: 8px;
}

/* Futures Button Styling */
.futures-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.futures-btn svg {
    transition: transform 0.3s ease;
}

.futures-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Responsive for Pricing */








/* ==================== PROGRAM DETAILS SECTION ==================== */
.program-details {
    position: relative;
    z-index: 2;
    padding: 40px 40px 60px 40px;
}

.program-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/program-details-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.details-container {
    max-width: 1400px;
    margin: 0 auto;
}

.details-header {
    text-align: center;
    margin-bottom: 30px;
}

.details-title {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.2;
}

.details-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.85;
}

/* Account Selector Section */
.account-selector-section {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.selected-account-badge {
    background: rgba(91, 76, 255, 0.15);
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    padding: 20px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(91, 76, 255, 0.3);
}

.selected-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--secondary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.selected-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 6px;
    font-family: 'Montserrat Black', sans-serif;
}

.selected-type {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Program Stats - Horizontal Inline Layout */
.program-stats-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: stretch;
}

.stat-card-inline {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 12px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 calc(33.333% - 12px);
    min-width: 200px;
    max-width: 280px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 76, 255, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card-inline:hover {
    transform: translateY(-5px);
    border-color: rgba(91, 76, 255, 0.6);
    box-shadow: 0 15px 40px rgba(91, 76, 255, 0.25);
}

.stat-card-inline:hover::before {
    opacity: 1;
}

.stat-icon-inline {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-inline svg {
    width: 28px;
    height: 28px;
}

.stat-content-inline {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: left;
}

.stat-label-inline {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--secondary-color);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.stat-value-inline {
    font-size: 1.3rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 4px;
    font-family: 'Montserrat Black', sans-serif;
    transition: all 0.3s ease;
}

.stat-subtext-inline {
    font-size: 0.7rem;
    color: var(--text-color);
    opacity: 0.75;
}

/* Program Stats Grid (keep for backward compatibility but hide) */
.program-stats-grid {
    display: none;
}

/* Evaluation Cards */
.evaluation-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.eval-card {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 20px;
    padding: 20px 22px;
    transition: all 0.4s ease;
}

.eval-card:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.eval-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
}

.eval-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
}

.detail-value {
    font-size: 0.95rem;
    color: #FFFFFF;
    font-weight: 700;
    text-align: right;
}

/* Account Sizes Section */
.account-sizes-section {
    margin-top: 30px;
}

.sizes-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.size-badge {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 12px;
    padding: 8px 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    transition: all 0.3s ease;
    cursor: pointer;
}

.size-badge:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.4);
}

.size-badge.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.5);
    transform: scale(1.08);
}

.size-badge.active:hover {
    transform: scale(1.08);
}

/* Responsive for Program Details */








/* Additional responsive for dropdown on mobile */


/* ==================== CTA FOOTER SECTION ==================== */
.cta-footer {
    position: relative;
    z-index: 2;
    padding: 40px 40px;
    text-align: center;
}

.cta-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/cta-footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--secondary-color);
    color: #FFFFFF;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(91, 76, 255, 0.4);
}

.btn-cta:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(91, 76, 255, 0.6);
}

/* ==================== DISCLAIMER PAGE ==================== */
.disclaimer-section {
    position: relative;
    z-index: 2;
    padding: 30px 40px 80px;
    min-height: 100vh;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/fast-payouts-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.content-section {
    position: relative;
    z-index: 2;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
}

.content-title {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-body {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 16px;
    padding: 50px;
}

.disclaimer-block {
    margin-bottom: 40px;
}

.disclaimer-block:last-child {
    margin-bottom: 0;
}

.disclaimer-heading {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #5B4CFF;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.disclaimer-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Responsive for Disclaimer */






/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    z-index: 2;
    background: rgb(15, 9, 36);
    border: 2px solid rgba(167, 139, 250, 0.13);
    padding: 40px 40px 20px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-heading svg {
    width: 20px;
    height: 20px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

.footer-links li a,
.footer-links li {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-company {
    grid-column: span 1;
}

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

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(91, 76, 255, 0.1);
    border: 1px solid rgba(91, 76, 255, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(91, 76, 255, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(91, 76, 255, 0.2);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.6;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.5;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer Responsive */




/* ==================== NEW PAGES STYLING ==================== */

/* Common Page Styles */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.6;
}

/* Rules Page */
.rules-page {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.rules-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/pricing-plans-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.rules-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.rule-category {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.4s ease;
}

.rule-category:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.category-icon {
    margin-bottom: 20px;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.rule-list {
    list-style: none;
    padding: 0;
}

.rule-list li {
    padding: 12px 0 12px 35px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.rule-list li:last-child {
    border-bottom: none;
}

.rule-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5B4CFF;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Affiliate Page */
.affiliate-page {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.affiliate-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/benefits-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.affiliate-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.affiliate-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.affiliate-stat {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.affiliate-stat:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.stat-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.85;
}

.features-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 15px 40px rgba(167, 139, 250, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.6;
}

.affiliate-cta {
    text-align: center;
    padding: 60px 40px;
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 30px;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 30px;
}

/* FAQ Page */
/* ==================== FAQ PAGE ==================== */
.faq-page {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.faq-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/cta-footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

/* FAQ Hero Section */
.faq-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.faq-hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #5B4CFF 0%, #7B5FFF 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(91, 76, 255, 0.4);
    animation: floatFAQ 3s ease-in-out infinite;
}

@keyframes floatFAQ {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.faq-hero-icon svg {
    stroke: #FFFFFF;
}

.faq-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-main-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 0.85;
}

/* FAQ Content */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Category */
.faq-category {
    background: rgba(15, 9, 36, 0.6);
    border: 2px solid rgba(91, 76, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(91, 76, 255, 0.3);
}

.faq-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5B4CFF 0%, #7B5FFF 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(91, 76, 255, 0.4);
}

.faq-category-icon svg {
    stroke: #FFFFFF;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

/* FAQ Item */
.faq-item {
    background: rgba(20, 20, 45, 0.6);
    border: 2px solid rgba(91, 76, 255, 0.15);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: rgba(91, 76, 255, 0.4);
    background: rgba(25, 25, 50, 0.7);
    transform: translateX(5px);
}

.faq-item.active {
    border-color: rgba(91, 76, 255, 0.6);
    background: rgba(30, 30, 60, 0.8);
}

/* FAQ Question */
.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
}

.faq-q-icon {
    width: 40px;
    height: 40px;
    background: rgba(91, 76, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-q-icon {
    background: linear-gradient(135deg, #5B4CFF 0%, #7B5FFF 100%);
}

.faq-q-icon svg {
    stroke: #5B4CFF;
    transition: stroke 0.3s ease;
}

.faq-item.active .faq-q-icon svg {
    stroke: #FFFFFF;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    flex: 1;
    margin: 0;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(91, 76, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: rgba(91, 76, 255, 0.3);
    transform: rotate(180deg);
}

.faq-toggle svg {
    stroke: #5B4CFF;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 28px 28px;
}

.faq-answer p {
    font-size: 1.05rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.7;
    margin: 0;
    padding-left: 55px;
}

/* FAQ CTA Section */
.faq-cta {
    margin-top: 60px;
    text-align: center;
}

.faq-cta-content {
    background: linear-gradient(135deg, rgba(91, 76, 255, 0.2) 0%, rgba(91, 76, 255, 0.1) 100%);
    border: 2px solid rgba(91, 76, 255, 0.3);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.faq-cta-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 30px;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #5B4CFF 0%, #7B5FFF 100%);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(91, 76, 255, 0.4);
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(91, 76, 255, 0.6);
}

.faq-cta-btn svg {
    stroke: currentColor;
}

/* Responsive FAQ Styles */






/* About Page */
.about-page {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/program-details-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-align: center;
}

.about-story {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 24px;
    padding: 50px 40px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.6;
}

.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item-about {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-item-about:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.stat-number-about {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #5B4CFF;
    margin-bottom: 10px;
}

.stat-label-about {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.85;
}

.about-mission,
.about-vision {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 24px;
    padding: 50px 40px;
}

.mission-text,
.vision-text {
    font-size: 1.15rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.8;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive for New Pages */








/* ==================== NEW PRICING TABLE STYLES ==================== */

.pricing-wrapper-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Pricing Tabs */
.pricing-tabs-modern {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tab-btn {
    position: relative;
    padding: 12px 28px;
    background: transparent;
    border: none;
    border-radius: 40px;
    color: #B8B8C8;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.pricing-tab-btn:hover {
    background: rgba(91, 76, 255, 0.1);
    color: #E4EEFC;
}

.pricing-tab-btn.active {
    background: #5B4CFF;
    color: #FFFFFF;
}

.pricing-tab-btn.has-badge {
    padding-right: 12px;
}

.price-drop-badge {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.external-link-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.futures-btn {
    border: 1px solid rgba(91, 76, 255, 0.3);
}

/* Pricing Table Container */
.pricing-table-container-modern {
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.8) 0%, rgba(20, 20, 45, 0.6) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-table-modern {
    overflow-x: auto;
}

/* Grid Layout */
.pricing-grid-row {
    display: grid;
    grid-template-columns: 280px repeat(6, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 1200px;
}

.pricing-grid-row:last-child {
    border-bottom: none;
}

.pricing-grid-cell {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #E4EEFC;
    font-size: 14px;
    font-weight: 500;
}

/* Header Row */
.header-row-pricing {
    background: linear-gradient(180deg, rgba(30, 30, 60, 0.9) 0%, rgba(25, 25, 50, 0.8) 100%);
    border-bottom: 2px solid rgba(91, 76, 255, 0.3);
}

.header-cell-left {
    justify-content: flex-start;
    padding-left: 28px;
    font-size: 15px;
    font-weight: 600;
    color: #B8B8C8;
}

.header-cell-plan {
    flex-direction: column;
    gap: 12px;
    padding: 24px 16px;
}

.account-size-label {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.get-plan-button {
    width: 100%;
    max-width: 140px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #5B4CFF 0%, #7B5FFF 100%);
    border: none;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(91, 76, 255, 0.3);
}

.get-plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 76, 255, 0.5);
    background: linear-gradient(135deg, #6B5CFF 0%, #8B6FFF 100%);
}

.fee-display {
    font-size: 13px;
    color: #B8B8C8;
    font-weight: 500;
}

.fee-price {
    color: #FFFFFF;
    font-weight: 700;
}

/* Feature Rows */
.feature-row-pricing {
    background: rgba(20, 20, 45, 0.4);
}

.feature-row-pricing:nth-child(even) {
    background: rgba(25, 25, 50, 0.3);
}

.feature-name-cell {
    justify-content: flex-start;
    padding-left: 28px;
    gap: 14px;
}

.feature-icon-info,
.feature-icon-wrapper {
    flex-shrink: 0;
}

.feature-text-info {
    text-align: left;
}

.feature-main-name {
    color: #E4EEFC;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.feature-sub-text {
    color: #9A9AAF;
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
}

.feature-value-cell {
    font-weight: 600;
    color: #FFFFFF;
}

.check-icon {
    color: #5B4CFF;
    font-size: 20px;
    font-weight: 700;
}

/* Footer Row */
.footer-row-pricing {
    background: linear-gradient(180deg, rgb(10, 10, 34) 0%, rgba(30, 30, 60, 0.9) 100%);
    border-top: 2px solid rgba(91, 76, 255, 0.3);
}

/* Add-ons Footer */
.pricing-addons-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    font-size: 13px;
    color: #B8B8C8;
}

.addons-title {
    font-weight: 700;
    color: #FFFFFF;
    margin-right: 8px;
}

.addon-item {
    color: #E4EEFC;
    font-weight: 500;
}

.addon-bullet {
    color: #5B4CFF;
    font-weight: 700;
}

/* Responsive Design */






/* ==================== ENHANCED NAVIGATION STYLES ==================== */

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    margin-top: 12px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #E4EEFC;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: rgba(91, 76, 255, 0.15);
    color: #5B4CFF;
    padding-left: 28px;
}

/* Mobile Navigation Improvements */




.btn-mobile-login,
.btn-mobile-funded {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-mobile-login {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--text-color);
}

.btn-mobile-login:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(91, 76, 255, 0.4);
}

.btn-mobile-funded {
    background: linear-gradient(135deg, #5B4CFF 0%, #7B5FFF 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(91, 76, 255, 0.4);
}

.btn-mobile-funded:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 76, 255, 0.6);
}

.btn-mobile-login svg,
.btn-mobile-funded svg {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor;
}



/* ==================== NEW PRICING SECTION ==================== */
.pricing-plans-new {
    position: relative;
    z-index: 2;
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.014) 0%, rgb(10, 10, 26) 100%);
}

.pricing-plans-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/pricing-plans-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.pricing-container-new {
    max-width: 1600px;
    margin: 0 auto;
}

/* Section Header */
.pricing-header-new {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-title-new {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.pricing-subtitle-new {
    font-size: 1.2rem;
    color: rgba(228, 238, 252, 0.8);
    font-weight: 400;
}

/* Tabs Wrapper */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.pricing-tabs-container {
    display: flex;
    background: rgb(15, 9, 36);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 50px;
    padding: 8px;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pricing-tabs-container::-webkit-scrollbar {
    display: none;
}

.pricing-tab-new {
    position: relative;
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: rgba(228, 238, 252, 0.7);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-tab-new:hover {
    color: #FFFFFF;
    background: rgba(36, 30, 100, 0.1);
}

.pricing-tab-new.active {
    background: #FFFFFF;
    color: #1a1535;
}

.pricing-tab-new.has-badge-new {
    padding-top: 8px;
}

.price-badge-new {
    position: absolute;
    top: -8px;
    right: 50%;
    transform: translateX(50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.tab-subtitle-new {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 2px;
}

.futures-plan-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 50px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.futures-plan-btn:hover {
    background: rgba(15, 9, 36, 0.726);
    border: 2px solid rgba(167, 139, 250, 0.13);
    transform: translateY(-2px);
    text-decoration: none;
}

.futures-plan-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Pricing Table */
.pricing-table-wrapper-new {
    background: rgb(7, 4, 17);
    border: 2px solid rgba(167, 139, 250, 0.13);
    border-radius: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 30px;
}

.pricing-table-new {
    width: 100%;
    min-width: unset;
}

.pricing-row-new {
    display: grid;
    grid-template-columns: 150px repeat(8, 1fr);
    border-bottom: 1px solid rgba(91, 76, 255, 0.15);
}

.pricing-row-new:last-child {
    border-bottom: none;
}

.pricing-cell-new {
    padding: 14px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    font-size: 13px;
    border-right: 1px solid rgba(91, 76, 255, 0.1);
}

.pricing-cell-new:last-child {
    border-right: none;
}

/* Header Row */
.header-row-new {
    background: rgb(10, 6, 22);
}

.header-row-new .pricing-cell-new {
    padding: 18px 8px;
}

.label-cell-new {
    justify-content: flex-start;
    padding-left: 14px !important;
    font-weight: 600;
    font-size: 13px;
    color: rgba(228, 238, 252, 0.9);
    gap: 8px;
}

.account-cell-new {
    flex-direction: column;
    gap: 7px;
}

.account-size-new {
    font-family: 'Montserrat Black', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.get-plan-btn-new {
    padding: 9px 14px;
    background: var(--secondary-color);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
}

.get-plan-btn-new:hover {
    background: #6d5eff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(91, 76, 255, 0.4);
}

.fee-label-new {
    font-size: 13px;
    color: rgba(228, 238, 252, 0.7);
}

.fee-amount-new {
    color: #FFFFFF;
    font-weight: 600;
}

/* Feature Rows */
.feature-row-new {
     background: rgb(4, 3, 10);
}

.feature-row-new:nth-child(even) {
    background: rgb(29, 18, 68);
}

.info-icon-new {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: rgba(228, 238, 252, 0.5);
}

.feature-text-new {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.feature-name-new {
    font-weight: 600;
    color: rgba(228, 238, 252, 0.9);
    font-size: 15px;
}

.feature-desc-new {
    font-size: 13px;
    color: rgba(228, 238, 252, 0.6);
}

.value-cell-new {
    font-weight: 500;
    color: rgba(228, 238, 252, 0.9);
}

/* Footer Row */
.footer-row-new {
    background: rgba(45, 27, 105, 0.5);
}

.footer-row-new .pricing-cell-new {
    padding: 25px 15px;
    font-weight: 600;
}

/* Add-ons Footer */
.pricing-addons-new {
    text-align: center;
    padding: 25px;
    color: rgba(228, 238, 252, 0.7);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.addons-title-new {
    font-weight: 700;
    color: #FFFFFF;
}

.addon-separator {
    color: var(--secondary-color);
    font-size: 18px;
}

.addon-text-new {
    color: rgba(228, 238, 252, 0.8);
    font-weight: 500;
}

/* Responsive Design for New Pricing */









/* ========================================
   RULES PAGE - COMPREHENSIVE STYLES
   ======================================== */

.rules-page {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #0a0b1e 0%, #1a1b3e 100%);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #5B4CFF 0%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.rules-notice {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(91, 76, 255, 0.1);
    border: 1px solid rgba(91, 76, 255, 0.3);
    padding: 15px 30px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.rules-notice svg {
    flex-shrink: 0;
}

.rules-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rule-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rule-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5B4CFF, #00E5FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rule-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(91, 76, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(91, 76, 255, 0.2);
}

.rule-category:hover::before {
    opacity: 1;
}

.rule-critical {
    border: 2px solid rgba(244, 67, 54, 0.3);
    background: rgba(244, 67, 54, 0.05);
}

.rule-critical::before {
    background: linear-gradient(90deg, #F44336, #FF9800);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(91, 76, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.rule-category:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(91, 76, 255, 0.2);
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-list li {
    padding: 15px 0;
    padding-left: 35px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rule-list li:last-child {
    border-bottom: none;
}

.rule-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
}

.prohibited-list li::before {
    content: '✗';
    color: #FF5722;
    background: rgba(255, 87, 34, 0.1);
}

.rule-highlight,
.rule-warning {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 20px 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

.rule-warning {
    background: rgba(255, 87, 34, 0.1);
    border-color: rgba(255, 87, 34, 0.3);
}

.rule-highlight svg,
.rule-warning svg {
    flex-shrink: 0;
}

.rule-highlight strong,
.rule-warning strong {
    color: #fff;
    font-weight: 700;
}

.subsection {
    margin: 25px 0;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 4px solid #5B4CFF;
}

.subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subsection-title.allowed {
    color: #4CAF50;
}

.subsection-title.prohibited {
    color: #FF5722;
}

.subsection-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.rule-critical-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(244, 67, 54, 0.15);
    border: 2px solid rgba(244, 67, 54, 0.4);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.rule-critical-notice svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.rule-critical-notice div {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
}

.rule-critical-notice strong {
    color: #FF5722;
    font-weight: 700;
}

.rules-final-notice {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(91, 76, 255, 0.1);
    border: 2px solid rgba(91, 76, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.rules-final-notice svg {
    flex-shrink: 0;
    margin-top: 5px;
}

.rules-final-notice h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.rules-final-notice p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Rules Page */





/* ========================================
   DARK PURPLE THEME FOR ABOUT & RULES PAGES
   ======================================== */

/* About Page Dark Theme */
.about-page {
    background: linear-gradient(135deg, #0a0b1e 0%, #1a1b3e 50%, #2a1b4e 100%);
    min-height: 100vh;
    padding: 100px 20px 60px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story,
.about-mission,
.about-approach,
.about-commitment {
    background: rgba(91, 76, 255, 0.08);
    border: 1px solid rgba(91, 76, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.about-story:hover,
.about-mission:hover,
.about-approach:hover,
.about-commitment:hover {
    background: rgba(91, 76, 255, 0.12);
    border-color: rgba(91, 76, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(91, 76, 255, 0.25);
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #5B4CFF 0%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text,
.mission-text,
.approach-text,
.commitment-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text:last-child,
.mission-text:last-child,
.approach-text:last-child,
.commitment-text:last-child {
    margin-bottom: 0;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.approach-list li {
    padding: 15px 0 15px 40px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-list li:last-child {
    border-bottom: none;
}

.approach-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    color: #00E5FF;
    font-weight: bold;
    font-size: 1.3rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.15);
    border-radius: 50%;
}

.about-values {
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: rgba(91, 76, 255, 0.08);
    border: 1px solid rgba(91, 76, 255, 0.2);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(91, 76, 255, 0.15);
    border-color: rgba(91, 76, 255, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(91, 76, 255, 0.3);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(91, 76, 255, 0.1);
    border-radius: 20px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(91, 76, 255, 0.2);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.value-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Enhanced Rules Page Dark Theme */
.rules-page {
    background: linear-gradient(135deg, #0a0b1e 0%, #1a1b3e 50%, #2a1b4e 100%);
}

.rule-category {
    background: rgba(91, 76, 255, 0.08);
    border: 1px solid rgba(91, 76, 255, 0.2);
}

.rule-category:hover {
    background: rgba(91, 76, 255, 0.12);
}

.rule-critical {
    background: rgba(244, 67, 54, 0.08);
    border: 2px solid rgba(244, 67, 54, 0.3);
}

.rule-critical:hover {
    background: rgba(244, 67, 54, 0.12);
}

/* Responsive adjustments for About page */




