*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    padding-top: 40px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.95);
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

/* Header Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 1px solid rgba(56, 139, 255, 0.3);
    border-radius: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1001;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(56, 139, 255, 0.2);
    padding-left: 25px;
}

.nav-links a:hover {
    color: #388BFF;
}

.header-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
    font-size: 14px;
}

.login-btn {
    background-color: transparent;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: rgba(56, 139, 255, 0.1);
}

.signup-btn {
    background-color: #388BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background-color: #2c6ed5;
}

/* Become an IB Header Button */
.become-ib-header-btn {
    background: transparent;
    border: 2px solid #388BFF;
    color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.become-ib-header-btn:hover {
    background: rgba(56, 139, 255, 0.1);
    border-color: #58a6ff;
}

/* Main Section */
/* Main Section */
.main-section {
    padding: 40px 60px;
    background-image: url('https://i.pinimg.com/1200x/02/05/d6/0205d647bc5974157f7d3451cb489f49.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.main-section > * {
    position: relative;
    z-index: 1;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.main-content-area {
    flex: 1.5;
}

.main-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.main-content p {
    font-size: 18px;
    color: #aaa;
    margin: 0 0 40px 0;
}

.stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-separator {
    width: 1px;
    height: 40px;
    background-color: rgba(56, 139, 255, 0.2);
}

.promo-box {
    position: relative;
    flex: 1;
    background: rgba(25, 25, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateY(-50px);
}

.promo-text {
    position: relative;
    z-index: 2;
    max-width: 55%;
}

.promo-text h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.promo-text p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.promo-text a {
    color: #388BFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.promo-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.promo-image-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.promo-image-slider .slide.active {
    opacity: 1;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    top: 15px;
    right: 25px;
    display: flex;
    gap: 6px;
    z-index: 3;
}

.slider-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.4;
}

.slider-dots .dot.active {
    background: #388BFF;
    opacity: 1;
}

.stat h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.stat p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}

/* Info Boxes */
.info-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.box {
    flex: 1;
    background: rgba(25, 25, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Reduced padding to decrease card height */
    padding: 12px 18px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.box:hover {
    background: rgba(56, 139, 255, 0.1);
    border-color: rgba(56, 139, 255, 0.3);
    transform: translateY(-2px);
}

.box h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: #F4A124;
    position: relative;
    transition: color 0.3s ease;
}

/* Arrow appears beside heading on hover */
.box h4::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%) translateX(-6px);
    opacity: 0;
    font-size: 14px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.box:hover h4::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.box p {
    color: #aaa;
    font-size: 12px;
    margin: 0;
}

.icon-placeholder {
    /* Slightly smaller icon size to match reduced card height */
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: filter 0.3s ease;
}

/* Glow effect on hover */
.box:hover .icon-placeholder {
    filter: drop-shadow(0 0 6px #F4A124);
}

.info-boxes .box:nth-child(1) .icon-placeholder {
    background-image: url('https://api.iconify.design/emojione:money-bag.svg');
}

.info-boxes .box:nth-child(2) .icon-placeholder {
    background-image: url('https://api.iconify.design/emojione:man.svg');
}

.info-boxes .box:nth-child(3) .icon-placeholder {
    background-image: url('https://api.iconify.design/emojione:clipboard.svg');
}

/* Hamburger (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}
.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
}

/* Side panel (mobile menu) */
.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    padding: 80px 0 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
}

.side-panel.active {
    transform: translateX(0);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.side-panel .mobile-nav {
    display: flex;
    flex-direction: column;
}

.side-panel .mobile-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 25px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.side-panel .mobile-nav .nav-item:hover {
    background: rgba(56, 139, 255, 0.1);
    border-left-color: #388BFF;
}

.nav-icon {
    font-size: 18px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-cta-section {
    padding: 20px 15px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.become-ib-btn {
    background: transparent;
    border: 2px solid #388BFF;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    width: 100%;
}

.become-ib-btn:hover {
    background: rgba(56, 139, 255, 0.1);
}

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

.become-ib-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.ib-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(56, 139, 255, 0.05);
    border-radius: 8px;
    margin-top: 8px;
}

.ib-dropdown-menu.active {
    max-height: 200px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(56, 139, 255, 0.15);
}

.dropdown-icon {
    font-size: 16px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-login-btn,
.mobile-signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-login-btn {
    background: #388BFF;
    color: #fff;
}

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

.mobile-signup-btn {
    background: #388BFF;
    color: #fff;
}

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

.btn-icon {
    font-size: 16px;
}

/* Overlay for closing side panel */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .header-right {
        display: none;
    }
    
    /* Horizontal scrolling for trader cards on mobile */
    .trader-cards {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 15px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .trader-cards::-webkit-scrollbar {
        height: 6px;
    }
    
    .trader-cards::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    
    .trader-cards::-webkit-scrollbar-thumb {
        background: rgba(56, 139, 255, 0.5);
        border-radius: 10px;
    }
    
    .trader-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .hamburger {
        display: flex;
    }
    .main-section {
        padding: 30px 20px;
    }
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .promo-box {
        width: 100%;
        margin-top: 20px;
    }
    .stats {
        gap: 15px;
    }
    /* Mobile filters horizontally scroll */
    .filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 10px;
        padding-bottom: 4px;
        margin-bottom: 15px;
    }
    .filters::-webkit-scrollbar {
        display: none;
    }
    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    /* Leaderboard header stacking */
    .leaderboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .tabs {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        flex-wrap: nowrap;
    }
    .tabs::-webkit-scrollbar {
        display: none;
    }
    .tabs a {
        flex: 0 0 auto;
        margin-right: 0;
        font-size: 16px;
        white-space: nowrap;
    }

    /* Search bar layout */
    .search-bar {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .search-bar input {
        width: 100%;
    }
    .daily-picks {
        align-self: flex-start;
        width: fit-content;
        padding: 8px 16px;
    }
}

/* Leaderboard */
.leaderboard {
    background-color: #111;
    padding: 40px;
    border-radius: 10px;
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tabs a {
    color: #ccc;
    text-decoration: none;
    margin-right: 20px;
    font-size: 18px;
}

.tabs a.active {
    color: #388BFF;
    border-bottom: 2px solid #388BFF;
    padding-bottom: 5px;
}

.search-bar input {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.daily-picks {
    background-color: #388BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

.filter-btn.active {
    background-color: #388BFF;
    color: #fff;
}

.leaderboard-footer {
    text-align: right;
}

.leaderboard-footer a {
    color: #388BFF;
    text-decoration: none;
}

/* Trader Cards */
.trader-cards {
    display: grid;
    grid-template-columns: repeat(4, 0.9fr);
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.trader-card {
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.95), rgba(230, 245, 255, 0.9));
    border: 1px solid rgba(200, 220, 240, 0.3);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow 0.2s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trader-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(56, 139, 255, 0.2);
}

/* Special card styling */
.trader-card.gold-card {
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.trader-card.silver-card {
    border: 2px solid #C0C0C0;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.2);
}

.trader-card.bronze-card {
    border: 2px solid #CD7F32;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    position: relative;
}

.active-strategy-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #4CAF50;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trader-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trader-avatar {
    position: relative;
}

.trader-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #333;
}

.rank-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
}

.rank-badge.gold {
    background-image: url('https://api.iconify.design/mdi:crown.svg?color=%23FFD700');
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
}

.rank-badge.silver {
    background-image: url('https://api.iconify.design/mdi:crown.svg?color=%23C0C0C0');
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
}

.rank-badge.bronze {
    background-image: url('https://api.iconify.design/mdi:crown.svg?color=%23CD7F32');
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
}

.trader-details h3 {
    margin: 0 0 3px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.followers {
    font-size: 12px;
    color: #666;
    opacity: 0.9;
}

.strategy-provider {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    line-height: 1.3;
}

.favorite-btn {
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    color: #666;
}

.favorite-btn:hover {
    opacity: 1;
    color: #FFD700;
    transform: scale(1.1);
}

.favorite-btn.active {
    opacity: 1;
    color: #FFD700;
}

.roi-chart-section {
    margin: 20px 0;
    flex-grow: 1;
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.roi-section {
    flex: 1;
    text-align: left;
    padding: 8px 0;
    border-bottom: 1px solid rgba(200, 220, 240, 0.3);
}

.roi-section:last-child {
    border-bottom: none;
}

.roi-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
    opacity: 0.9;
    font-weight: 500;
}

.roi-value {
    font-size: 20px;
    font-weight: 700;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.roi-value.positive {
    color: #00ff88;
}

.roi-value.negative {
    color: #ff4757;
}

.chart-container {
    display: none;
}

.chart-container::before {
    content: '0';
    position: absolute;
    bottom: 2px;
    left: 4px;
    font-size: 8px;
    color: #666;
}

.chart-container::after {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 8px;
    color: #666;
}

.gold-card .chart-container::after { content: '1571'; }
.silver-card .chart-container::after { content: '131'; }
.bronze-card .chart-container::after { content: '96'; }
.trader-card:not(.gold-card):not(.silver-card):not(.bronze-card) .chart-container::after { content: '24'; }

.mini-chart {
    width: 100%;
    height: 100%;
}

.mini-chart path {
    filter: drop-shadow(0 0 2px currentColor);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin: 16px 0 12px 0;
    gap: 8px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat .label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat .sublabel {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.8;
    font-weight: 500;
}

.copy-btn {
    width: 100%;
    background: #FFD700;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-btn:hover {
    background: #F7B733;
    color: #000;
}

.copy-btn.full-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.copy-btn.full-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #e8841a);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .trader-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .trader-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trader-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .trader-card {
        padding: 12px;
        min-height: 260px;
    }
}

/* Hero Section Updates */
.main-content-area h1 {
    font-size: 42px;
    font-weight: bold;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    color: #aaa;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-primary {
    background: linear-gradient(135deg, #388BFF, #2c6ed5);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 139, 255, 0.4);
}

.cta-secondary {
    background: rgba(56, 139, 255, 0.1);
    color: #388BFF;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(56, 139, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-secondary:hover {
    background: rgba(56, 139, 255, 0.2);
    border-color: rgba(56, 139, 255, 0.5);
}

/* Content Sections */
.content-section {
    background-color: #0a0a0a;
    padding: 60px 40px;
    margin: 0;
}

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

.content-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 30px 0;
    text-align: center;
    color: #fff;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

/* Unified How It Works Section */
.unified-how-it-works {
    background: linear-gradient(180deg, #0a0a0a 0%, rgba(56, 139, 255, 0.03) 50%, #0a0a0a 100%);
    padding: 80px 40px 40px 40px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Timeline Process */
.process-timeline {
    max-width: 1000px;
    margin: 0 auto 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.timeline-card {
    flex: 1;
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(56, 139, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    border-color: rgba(56, 139, 255, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(56, 139, 255, 0.2);
}

.timeline-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #388BFF, #2c6ed5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(56, 139, 255, 0.4);
}

.badge-number {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.timeline-content h3 {
    font-size: 20px;
    margin: 20px 0 12px 0;
    color: #fff;
    text-align: center;
}

.timeline-content p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.timeline-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(56, 139, 255, 0.3), rgba(56, 139, 255, 0.6), rgba(56, 139, 255, 0.3));
    position: relative;
}

.timeline-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -10px;
    color: #388BFF;
    font-size: 20px;
}

/* Key Features Section */
.key-features-section {
    margin: 80px 0;
}

.features-subtitle {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin: 0 0 50px 0;
}

.unified-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.unified-feature-card {
    background: rgba(25, 25, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.unified-feature-card:hover {
    border-color: rgba(56, 139, 255, 0.5);
    background: rgba(56, 139, 255, 0.05);
    transform: translateY(-5px);
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
}

.unified-feature-card h4 {
    font-size: 18px;
    margin: 0 0 12px 0;
    color: #fff;
    font-weight: 600;
}

.unified-feature-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

/* Markets Showcase */
.markets-showcase {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(56, 139, 255, 0.2);
}

.markets-subtitle {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin: 0 0 50px 0;
}

.markets-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.market-item {
    background: linear-gradient(135deg, rgba(56, 139, 255, 0.08), rgba(56, 139, 255, 0.02));
    border: 1px solid rgba(56, 139, 255, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.market-item:hover {
    border-color: rgba(56, 139, 255, 0.6);
    background: linear-gradient(135deg, rgba(56, 139, 255, 0.12), rgba(56, 139, 255, 0.04));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(56, 139, 255, 0.2);
}

.market-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.market-item h4 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #fff;
    font-weight: 600;
}

.market-item p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}

.markets-cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Provider Section */
.provider-section {
    background: linear-gradient(135deg, rgba(56, 139, 255, 0.08), rgba(56, 139, 255, 0.03));
    text-align: center;
}

.provider-section p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.provider-cta {
    margin-top: 30px;
}

/* FAQ Section */
.faq-section {
    background-color: #0a0a0a;
}

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

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    font-size: 24px;
    color: #388BFF;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(56, 139, 255, 0.3);
}

.faq-item {
    background: rgba(25, 25, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(56, 139, 255, 0.3);
}

.faq-item.active {
    border-color: rgba(56, 139, 255, 0.5);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question span:first-child {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    color: #388BFF;
    font-weight: bold;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 18px 20px;
    margin: 0;
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .timeline-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, rgba(56, 139, 255, 0.3), rgba(56, 139, 255, 0.6), rgba(56, 139, 255, 0.3));
    }
    
    .timeline-connector::after {
        content: '↓';
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
        top: auto;
    }
    
    .unified-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .markets-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .content-section {
        padding: 40px 20px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .main-content-area h1 {
        font-size: 32px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .unified-how-it-works {
        padding: 60px 20px;
    }
    
    .features-subtitle,
    .markets-subtitle {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .main-content-area h1 {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .timeline-badge {
        width: 40px;
        height: 40px;
    }
    
    .badge-number {
        font-size: 20px;
    }
    
    .timeline-card {
        padding: 25px 15px;
    }
    
    .unified-features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-subtitle,
    .markets-subtitle {
        font-size: 22px;
    }
    
    .faq-question span:first-child {
        font-size: 14px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

/* Footer Section */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(56, 139, 255, 0.2);
    padding: 60px 40px 20px;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.footer-description {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
}

.social-icon:nth-child(1) {
    background-color: #0088cc;
}

.social-icon:nth-child(1):hover {
    background-color: #006699;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.social-icon:nth-child(2) {
    background-color: #1877f2;
}

.social-icon:nth-child(2):hover {
    background-color: #145dbf;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-icon:nth-child(3) {
    background-color: #25D366;
}

.social-icon:nth-child(3):hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.social-icon:nth-child(4) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:nth-child(4):hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #388BFF;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}
