/* ==================== 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 */
@media (max-width: 768px) {
    .promo-ribbon {
        height: 35px;
    }
    
    .promo-message {
        font-size: 12px;
        padding: 0 30px;
    }
    
    .navbar {
        top: 35px;
    }
    
    body {
        padding-top: 105px;
    }
    
    .promo-popup-content {
        width: 95%;
        border-radius: 16px;
    }
    
    .promo-popup-header,
    .promo-popup-body {
        padding: 30px 24px;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .promo-step {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .promo-ribbon {
        height: 32px;
    }
    
    .promo-message {
        font-size: 11px;
        padding: 0 20px;
    }
    
    .navbar {
        top: 32px;
    }
    
    body {
        padding-top: 102px;
    }
    
    .promo-title {
        font-size: 1.75rem;
    }
    
    .promo-logo {
        width: 60px;
        height: 60px;
    }
}


@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 */
@media (max-width: 968px) {
    .candles-container {
        display: none;
    }
}

/* ==================== 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 */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-highlight {
        font-size: 3.8rem;
    }

    .stat-number {
        font-size: 4.2rem;
    }

    .stat-suffix {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        gap: 70px;
    }
    
    .candles-container {
        width: 420px;
        height: 420px;
        top: 100px;
        right: 40px;
    }
    
    .hero-features {
        gap: 35px;
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .nav-container {
        padding: 15px 30px;
    }

    .hero-container {
        padding: 40px 30px;
        gap: 40px;
    }

    .candles-container {
        height: 500px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 25px;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu > li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu > li > a {
        width: 100%;
        padding: 18px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-color);
        border-radius: 8px;
        margin-bottom: 5px;
    }
    
    .nav-menu > li > a svg {
        width: 20px;
        height: 20px;
    }
    
    .nav-menu > li > a::after {
        display: none;
    }
    
    .nav-menu > li > a:hover {
        background: rgba(91, 76, 255, 0.1);
    }
    
    /* Mobile Dropdown Styles */
    .nav-menu .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu .dropdown-toggle {
        justify-content: center;
        width: 100%;
        padding: 18px 20px;
        font-size: 17px;
        font-weight: 500;
        border-radius: 8px;
        margin-bottom: 0;
        gap: 12px;
    }
    
    .nav-menu .dropdown-toggle svg:not(.dropdown-icon) {
        width: 20px;
        height: 20px;
    }
    
    .nav-menu .dropdown-toggle:hover {
        background: rgba(91, 76, 255, 0.1);
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 5px;
        padding: 0;
        border: none;
        border-radius: 8px;
        background: rgba(45, 27, 105, 0.4);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease, margin-bottom 0.4s ease;
        box-shadow: none;
        margin-bottom: 5px;
        left: 0;
        right: 0;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .nav-menu .dropdown-menu li {
        border-bottom: none;
    }
    
    .nav-menu .dropdown-menu li a {
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 400;
        justify-content: flex-start;
        border-radius: 6px;
        margin-bottom: 3px;
    }
    
    .nav-menu .dropdown-menu li a:hover {
        background: rgba(91, 76, 255, 0.3);
        transform: translateX(0);
    }
    
    .nav-menu .dropdown-menu li a svg {
        width: 18px;
        height: 18px;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile: Show only Get Funded button on navbar */
    .nav-buttons {
        display: flex;
        gap: 10px;
    }
    
    .nav-buttons .btn-secondary {
        display: none;
    }
    
    .nav-buttons .btn-primary {
        display: inline-flex;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only-nav {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-container {
        padding: 100px 20px 40px;
        gap: 30px;
    }
    
    .hero-left {
        text-align: center;
        margin-bottom: 50px;
        max-width: 100%;
    }
    
    .hero-center {
        margin-bottom: 60px;
    }

    .hero-title {
        
        font-size: 1.8rem;
    }

    .hero-highlight {
        font-size: 2.5rem;
        color: #ff4810;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .mt5-badge {
        padding: 10px 24px;
        margin-bottom: 25px;
    }
    
    .mt5-badge img {
        width: 28px;
        height: 28px;
    }
    
    .mt5-badge span {
        font-size: 0.95rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-text {
        white-space: normal;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: row;
        width: 100%;
        gap: 15px;
        margin-bottom: 35px;
        justify-content: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        text-align: center;
        padding: 16px 40px;
        font-size: 1rem;
    }

    /* Keep stats HORIZONTAL on mobile with better sizing */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-width: 100%;
        padding: 0 10px;
    }

    .stat-box {
        text-align: center;
        padding: 15px 5px;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .stat-suffix {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    .logo span {
        font-size: 16px;
    }

    .logo img {
        height: 30px;
    }

    .nav-container {
        padding: 12px 20px;
    }
    
    .btn {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-highlight {
        font-size: 2.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 14px;
    }

    .logo img {
        height: 28px;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .nav-menu {
        gap: 25px;
        padding-top: 40px;
    }

    .nav-menu li a {
        font-size: 18px;
    }

    .hero-container {
        padding: 90px 15px 30px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-highlight {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .stats-grid {
        gap: 5px;
        padding: 0 5px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }

    .stat-suffix {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }

    /* For very small screens, switch to single column for better readability */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payouts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .traders-features {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .traders-features::-webkit-scrollbar {
        display: none;
    }
    
    .trader-feature {
        min-width: auto !important;
        max-width: none !important;
        padding: 6px 4px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-heading {
        font-size: 0.6rem;
        margin-bottom: 2px;
        line-height: 1.1;
    }
    
    .feature-subtext {
        font-size: 0.5rem;
        margin-bottom: 1px;
        line-height: 1.1;
    }
    
    .feature-note {
        font-size: 0.45rem;
        line-height: 1.1;
    }
    
    .benefit-card,
    .payout-card {
        padding: 25px 20px;
    }
}

/* ==================== 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 */
@media (max-width: 1200px) {
    .traders-title {
        font-size: 3.2rem;
    }
    
    .traders-features {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .traders-hero {
        padding: 60px 20px;
    }
    
    .traders-header {
        margin-bottom: 40px;
    }
    
    .traders-title {
        font-size: 2.5rem;
    }
    
    .traders-subtitle {
        font-size: 1rem;
    }
    
    .traders-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trader-feature {
        padding: 40px 25px;
    }
    
    /* Mobile override for trader-feature */
    @media (max-width: 480px) {
        .trader-feature {
            padding: 6px 4px !important;
        }
    }
}

@media (max-width: 768px) {
    .traders-title {
        font-size: 2rem;
    }
    
    .traders-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-heading {
        font-size: 1.4rem;
    }
    
    .feature-subtext {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .traders-title {
        font-size: 1.7rem;
    }
    
    .feature-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .feature-heading {
        font-size: 1.2rem;
    }
}

/* ==================== 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 */
@media (max-width: 1200px) {
    .payouts-title {
        font-size: 3rem;
    }
    
    .payouts-grid {
        gap: 30px;
    }
}

@media (max-width: 968px) {
    .fast-payouts {
        padding: 60px 20px;
    }
    
    .payouts-header {
        margin-bottom: 60px;
    }
    
    .payouts-title {
        font-size: 2.2rem;
    }
    
    .payouts-subtitle {
        font-size: 1rem;
    }
    
    .payouts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payout-card {
        padding: 20px 15px;
    }
    
    .card-image {
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    .payouts-title {
        font-size: 1.8rem;
    }
    
    .payouts-subtitle {
        font-size: 0.95rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .fast-payouts {
        padding: 60px 15px;
    }
    
    .payouts-title {
        font-size: 1.6rem;
    }
    
    .card-image {
        min-height: 150px;
    }
}

/* ==================== 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 */
@media (max-width: 1200px) {
    .benefits-title {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .our-benefits {
        padding: 60px 20px;
    }
    
    .benefits-header {
        margin-bottom: 60px;
        max-width: 100%;
    }
    
    .benefits-title {
        font-size: 2.2rem;
    }
    
    .benefits-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-image {
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 1.8rem;
    }
    
    .benefits-subtitle {
        font-size: 0.95rem;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    .benefit-description,
    .extra-description {
        font-size: 0.95rem;
    }
    
    .extra-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .our-benefits {
        padding: 60px 15px;
    }
    
    .benefits-title {
        font-size: 1.6rem;
    }
    
    .benefit-image {
        min-height: 120px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}

/* ==================== 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 */
@media (max-width: 1200px) {
    .works-title {
        font-size: 3rem;
    }
    
    .works-steps {
        gap: 30px;
    }
    
    .step-image {
        min-height: 180px;
    }
    
    .step-card {
        min-height: 520px;
    }
    
    .arrow-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 968px) {
    .how-it-works {
        padding: 60px 20px;
    }
    
    .works-header {
        margin-bottom: 60px;
    }
    
    .works-title {
        font-size: 2.2rem;
    }
    
    .works-subtitle {
        font-size: 1rem;
    }
    
    .works-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step-card {
        padding: 20px 15px;
        min-height: auto;
    }
    
    .step-image {
        min-height: 120px;
        flex: 0;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .works-title {
        font-size: 1.8rem;
    }
    
    .works-subtitle {
        font-size: 0.95rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 60px 15px;
    }
    
    .works-title {
        font-size: 1.6rem;
    }
    
    .step-image {
        min-height: 150px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 1.8rem;
    }
}

/* ==================== 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 */
@media (max-width: 1200px) {
    .pricing-title {
        font-size: 3rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .pricing-plans {
        padding: 80px 20px;
    }
    
    .pricing-title {
        font-size: 2.2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .plan-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .comparison-table {
        padding: 20px;
        overflow-x: scroll;
    }
    
    .feature-name {
        min-width: 150px;
        font-size: 0.9rem;
    }
    
    .feature-value {
        font-size: 0.85rem;
    }

    /* New pricing table mobile */
    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .new-pricing-table {
        min-width: 800px;
    }

    .account-size {
        font-size: 1.4rem;
    }

    .get-plan-btn {
        padding: 5px 14px;
        font-size: 0.55rem;
    }

    .fee-text {
        font-size: 0.75rem;
    }

    .feature-label {
        font-size: 0.85rem;
        padding-left: 15px !important;
    }

    .feature-value {
        font-size: 0.85rem;
    }

    .addons-section {
        gap: 15px;
        padding: 15px;
    }

    .addon-label {
        font-size: 0.9rem;
        flex-basis: 100%;
        text-align: center;
    }

    .addon-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .account-size {
        font-size: 1.3rem;
    }
    
    .price-btn {
        font-size: 1rem;
    }

    /* New pricing table */
    .new-pricing-table {
        min-width: 700px;
    }

    .account-size-header {
        font-size: 1rem;
    }

    .get-plan-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .fee-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .pricing-plans {
        padding: 60px 15px;
    }
    
    .pricing-title {
        font-size: 1.6rem;
    }
    
    .tab-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .comparison-table {
        padding: 15px;
    }

    /* New pricing table */
    .pricing-table-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }

    .new-pricing-table {
        min-width: 650px;
        border-radius: 0;
    }

    .account-size {
        font-size: 1.2rem;
    }

    .account-size-header {
        font-size: 0.9rem;
    }

    .feature-label {
        font-size: 0.8rem;
    }

    .addons-section {
        padding: 12px;
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
}

/* ==================== 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: nowrap;
    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 */
@media (max-width: 1200px) {
    .details-title {
        font-size: 3rem;
    }
    
    .sizes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .program-details {
        padding: 80px 20px;
    }
    
    .details-header {
        margin-bottom: 60px;
    }
    
    .details-title {
        font-size: 2.2rem;
    }
    
    .details-subtitle {
        font-size: 1rem;
    }
    
    .evaluation-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .eval-card {
        padding: 25px 20px;
    }
    
    .eval-title {
        font-size: 1.3rem;
    }
    
    .sizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-stats-horizontal {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        justify-content: center;
    }
    
    .stat-card-inline {
        min-width: auto;
        max-width: none;
        padding: 10px 12px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    
    .evaluation-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .eval-card {
        padding: 30px 25px;
    }
    
    .details-title {
        font-size: 1.8rem;
    }
    
    .eval-title {
        font-size: 1.2rem;
    }
    
    .detail-label,
    .detail-value {
        font-size: 0.85rem;
    }
    
    .sizes-title {
        font-size: 1.4rem;
    }
    
    .size-badge {
        font-size: 0.95rem;
        padding: 15px 12px;
    }
}

@media (max-width: 480px) {
    .program-details {
        padding: 60px 15px;
    }
    
    .details-title {
        font-size: 1.4rem;
    }
    
    .eval-card {
        padding: 25px 20px;
    }
    
    .eval-title {
        font-size: 1.1rem;
    }
    
    .detail-label,
    .detail-value {
        font-size: 0.8rem;
    }
    
    .sizes-title {
        font-size: 1.3rem;
    }
    
    .size-badge {
        font-size: 0.9rem;
        padding: 12px 10px;
    }
    
    .program-stats-horizontal {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .stat-card-inline {
        min-width: auto !important;
        max-width: none !important;
        padding: 8px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .stat-icon-inline svg {
        width: 20px;
        height: 20px;
    }
    
    .stat-label-inline {
        font-size: 0.55rem;
        margin-bottom: 4px;
    }
    
    .stat-value-inline {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .stat-subtext-inline {
        font-size: 0.6rem;
    }
    
    .selected-account-badge {
        padding: 25px 40px;
    }
    
    .selected-amount {
        font-size: 2rem;
    }
    
    .stat-value-inline {
        font-size: 1.4rem;
    }
    
    .sizes-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .sizes-grid::-webkit-scrollbar {
        display: none;
    }
    
    .size-badge {
        flex: 0 0 auto;
        min-width: 80px;
        max-width: 100px;
        padding: 12px 10px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

/* Additional responsive for dropdown on mobile */
@media (max-width: 968px) {
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin-top: 10px;
    }
    
    .nav-menu .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .nav-menu .dropdown .dropdown-toggle::after {
        display: none;
    }
}

/* ==================== 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: 120px 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 */
@media (max-width: 968px) {
    .disclaimer-section {
        padding: 100px 20px 60px;
    }

    .content-title {
        font-size: 2rem;
    }

    .content-body {
        padding: 35px;
    }

    .disclaimer-heading {
        font-size: 1.1rem;
    }

    .disclaimer-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 80px 20px 40px;
    }

    .content-title {
        font-size: 1.6rem;
    }

    .content-body {
        padding: 25px;
    }

    .disclaimer-heading {
        font-size: 1rem;
    }

    .disclaimer-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

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

@media (max-width: 480px) {
    .disclaimer-section {
        padding: 80px 15px 40px;
    }

    .content-title {
        font-size: 1.4rem;
    }

    .content-body {
        padding: 20px;
    }

    .disclaimer-heading {
        font-size: 0.95rem;
    }

    .disclaimer-text {
        font-size: 0.85rem;
    }
}

/* ==================== 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 */
@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-company {
        grid-column: span 2;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-company {
        grid-column: span 1;
    }
    
    .cta-footer {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}

/* ==================== 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 */
@media (max-width: 968px) {
    .faq-hero {
        margin-bottom: 60px;
    }

    .faq-main-title {
        font-size: 2.5rem;
    }

    .faq-main-subtitle {
        font-size: 1.1rem;
    }

    .faq-category {
        padding: 30px 24px;
    }

    .faq-category-title {
        font-size: 1.6rem;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .faq-page {
        padding: 40px 0;
    }

    .faq-hero-icon {
        width: 100px;
        height: 100px;
    }

    .faq-main-title {
        font-size: 2.2rem;
    }

    .faq-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .faq-question {
        padding: 20px;
        gap: 12px;
    }

    .faq-answer p {
        padding-left: 0;
        font-size: 1rem;
    }

    .faq-cta-content {
        padding: 40px 24px;
    }

    .faq-cta-content h2 {
        font-size: 1.8rem;
    }
}

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

    .faq-main-subtitle {
        font-size: 1rem;
    }

    .faq-category {
        padding: 20px 16px;
    }

    .faq-category-icon {
        width: 50px;
        height: 50px;
    }

    .faq-category-title {
        font-size: 1.4rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-q-icon {
        width: 36px;
        height: 36px;
    }
}

/* 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 */
@media (max-width: 1200px) {
    .rules-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .page-container {
        padding: 40px 20px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .affiliate-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid-about {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .stats-grid-about {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 30px 15px;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .rule-category,
    .affiliate-stat,
    .feature-card {
        padding: 25px 20px;
    }
    
    .stat-number-about {
        font-size: 2.5rem;
    }
}

/* ==================== 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 */
@media (max-width: 1400px) {
    .pricing-grid-row {
        grid-template-columns: 240px repeat(6, 1fr);
    }
}

@media (max-width: 1200px) {
    .pricing-table-container-modern {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-grid-row {
        min-width: 1200px;
    }
}

@media (max-width: 768px) {
    .pricing-wrapper-new {
        padding: 40px 15px;
    }
    
    .pricing-tabs-modern {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 4px;
        gap: 4px;
    }
    
    .pricing-tab-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .pricing-grid-row {
        grid-template-columns: 200px repeat(6, 140px);
    }
    
    .account-size-label {
        font-size: 24px;
    }
    
    .get-plan-button {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* ==================== 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 */
@media (min-width: 969px) {
    .mobile-login-btn {
        display: none;
    }
}

@media (max-width: 968px) {
    .mobile-login-btn {
        display: block !important;
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(91, 76, 255, 0.2);
    }
}

.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: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.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: 1450px; /* Ensures table doesn't shrink below this width */
}

.pricing-row-new {
    display: grid;
    grid-template-columns: 180px 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: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    font-size: 15px;
    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: 25px 15px;
}

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

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

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

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

.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 */
@media (max-width: 1400px) {
    .pricing-row-new {
        grid-template-columns: 240px repeat(6, 1fr);
    }
    
    .account-size-new {
        font-size: 1.6rem;
    }
}

@media (max-width: 1200px) {
    .pricing-row-new {
        grid-template-columns: 220px repeat(6, 1fr);
    }
    
    .pricing-cell-new {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .account-size-new {
        font-size: 1.4rem;
    }
    
    .get-plan-btn-new {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 968px) {
    .pricing-plans-new {
        padding: 60px 20px;
    }
    
    .pricing-title-new {
        font-size: 2rem;
    }
    
    .pricing-subtitle-new {
        font-size: 1rem;
    }
    
    .pricing-tabs-container {
        flex-direction: row;
        width: 100%;
        padding: 8px;
        border-radius: 15px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 5px;
    }
    
    .pricing-tabs-container::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-tab-new {
        width: auto;
        text-align: center;
        padding: 8px 12px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .futures-plan-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Table - Better Scrolling */
    .pricing-table-wrapper-new {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;

       
      
    }
    
    .pricing-table-new {
        min-width: 1200px;
        width: 1200px;
    }
    
    .pricing-row-new {
        grid-template-columns: 180px repeat(8, 100px);
    }
    
    .pricing-cell-new {
        padding: 15px 10px;
        font-size: 13px;
    }
    
    .label-cell-new {
        padding-left: 15px !important;
        font-size: 14px;
        position: sticky;
        left: 0;
        background: rgb(26, 21, 53);
        z-index: 1;
    }
    
    .header-row-new .label-cell-new {
        background: rgb(11, 7, 26);
    }
    
    .feature-row-new:nth-child(even) .label-cell-new {
        background: rgb(20, 12, 46);
    }
    
    .footer-row-new .label-cell-new {
        background: rgb(45, 27, 105);
    }
    
    .account-size-new {
        font-size: 1.3rem;
    }
    
    .get-plan-btn-new {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .fee-label-new {
        font-size: 12px;
    }
    
    .info-icon-new {
        width: 18px;
        height: 18px;
    }
    
    .feature-name-new {
        font-size: 14px;
    }
    
    .feature-desc-new {
        font-size: 12px;
    }
    
    .value-cell-new {
        font-size: 13px;
    }
    
    .pricing-addons-new {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        font-size: 14px;
    }
    
    .addon-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .pricing-title-new {
        font-size: 1.6rem;
    }
    
    .pricing-subtitle-new {
        font-size: 0.9rem;
    }
    
    .pricing-tab-new {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .pricing-table-wrapper-new {
        margin: 0 -10px;
        padding: 0 10px;
    }
    
    .pricing-table-new {
        min-width: 1150px;
        width: 1150px;
    }
    
    .pricing-row-new {
        grid-template-columns: 160px repeat(8, 115px);
    }
    
    .pricing-cell-new {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .label-cell-new {
        padding-left: 12px !important;
        font-size: 13px;
    }
    
    .account-size-new {
        font-size: 1.1rem;
    }
    
    .get-plan-btn-new {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .fee-label-new {
        font-size: 11px;
    }
    
    .pricing-addons-new {
        font-size: 13px;
    }
}


/* ========================================
   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 */
@media (max-width: 768px) {
    .rules-page {
        padding: 80px 15px 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .rules-notice {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }

    .rule-category {
        padding: 25px 20px;
    }

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

    .category-title {
        font-size: 1.4rem;
    }

    .rule-list li {
        font-size: 0.95rem;
        padding: 12px 0 12px 30px;
    }

    .rule-list li::before {
        width: 22px;
        height: 22px;
        font-size: 1rem;
        top: 12px;
    }

    .rule-highlight,
    .rule-warning {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .subsection {
        padding: 20px 15px;
    }

    .subsection-title {
        font-size: 1.1rem;
    }

    .subsection-text {
        font-size: 0.95rem;
    }

    .rule-critical-notice,
    .rules-final-notice {
        flex-direction: column;
        padding: 25px 20px;
        text-align: center;
    }

    .rules-final-notice h4 {
        font-size: 1.3rem;
    }

    .rules-final-notice p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .rule-list li {
        font-size: 0.9rem;
        padding-left: 28px;
    }
}


/* ========================================
   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 */
@media (max-width: 768px) {
    .about-page {
        padding: 80px 15px 40px;
    }

    .about-story,
    .about-mission,
    .about-approach,
    .about-commitment {
        padding: 30px 25px;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .story-text,
    .mission-text,
    .approach-text,
    .commitment-text {
        font-size: 1rem;
    }

    .approach-list li {
        font-size: 1rem;
        padding-left: 35px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        width: 65px;
        height: 65px;
    }

    .value-title {
        font-size: 1.3rem;
    }

    .value-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.5rem;
    }

    .story-text,
    .mission-text,
    .approach-text,
    .commitment-text {
        font-size: 0.95rem;
    }

    .approach-list li {
        font-size: 0.95rem;
    }
}

