* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #09c372;
    --primary-dark-green: #07a85e;
    --secondary-blue: #1971ff;
    --text-primary: #2c3e50;
    --text-secondary: #718096;
    --text-light: #a0aec0;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --border-light: #e2e8f0;
    --success-green: #38a169;
    --danger-red: #e53e3e;
    --warning-orange: #dd6b20;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 70px;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 35px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-auth {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: var(--bg-light);
}

.btn-signup {
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-signup:hover {
    background: var(--primary-dark-green);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--bg-white);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.highlight-text {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-primary-hero {
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary-hero:hover {
    background: var(--primary-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary-hero {
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 32px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary-hero:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: capitalize;
}

.trust-badges {
    display: flex;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trust-item i {
    color: var(--primary-green);
    font-size: 16px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-preview {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.platform-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-element {
    position: absolute;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 16px;
    animation: float 3s ease-in-out infinite;
}

.portfolio-card {
    top: 20px;
    right: -20px;
    min-width: 200px;
}

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

.card-title {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.card-value.positive {
    color: var(--success-green);
    font-weight: 600;
    font-size: 14px;
}

.card-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.trader-card {
    bottom: 100px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.trader-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.trader-info {
    flex: 1;
}

.trader-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.trader-profit {
    font-size: 12px;
    color: var(--success-green);
    font-weight: 600;
}

.copy-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.price-card {
    top: 60%;
    right: -40px;
    min-width: 160px;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.asset-name {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.asset-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.asset-change.positive {
    color: var(--success-green);
    font-size: 14px;
    font-weight: 600;
}

/* Popular Investors Section */
.popular-investors {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.investor-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.investor-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.investor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.investor-info {
    flex: 1;
}

.investor-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.investor-location {
    font-size: 14px;
    color: var(--text-secondary);
}

.copy-button {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background: var(--primary-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.investor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-value.positive {
    color: var(--success-green);
}

.section-cta {
    text-align: center;
}

.btn-view-all {
    background: transparent;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--primary-green);
    color: white;
}

/* Trading Markets Section */
.trading-markets {
    padding: 80px 0;
    background: var(--bg-white);
}

.markets-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    background: var(--bg-gray);
    border-radius: 4px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--bg-white);
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.market-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    min-height: 80px;
}

.market-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.market-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.market-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.market-details {
    display: flex;
    flex-direction: column;
}

.market-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.market-symbol {
    font-size: 14px;
    color: var(--text-secondary);
}

.market-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.price {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.change.positive {
    color: var(--success-green);
    font-size: 14px;
    font-weight: 600;
}

.change.negative {
    color: var(--danger-red);
    font-size: 14px;
    font-weight: 600;
}

.trade-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.trade-btn:hover {
    background: var(--primary-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-green);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-green);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: var(--primary-green);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #cbd5e0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-auth {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 20px;
    }
    
    .floating-element {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
        margin: 15px auto !important;
        animation: none !important;
        max-width: 280px;
        transform: none !important;
    }
    
    .platform-preview {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .investors-grid {
        grid-template-columns: 1fr;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .markets-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .education-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .education-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        justify-content: center;
        text-align: center;
    }
}

/* Mobile-specific trading feed styles */
.trade-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

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

.trade-metrics-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
}

.trade-metrics-mobile .trade-time {
    grid-column: span 2;
    text-align: center;
}

.amount-label,
.result-label,
.time-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-right: 8px;
}

/* Enhanced responsive design for trading feed */
@media (max-width: 768px) {
    .trading-dashboard {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .popular-assets {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .asset-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .feed-header {
        display: none;
    }
    
    .feed-item {
        display: block !important;
        padding: 20px;
        margin-bottom: 16px;
        border-radius: 12px;
        background: var(--bg-white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .trade-asset {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .trading-feed {
        max-height: none;
        padding: 0 10px;
    }
    
    .trading-feed-container {
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .live-trading {
        padding: 60px 0;
    }
    
    .activity-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .activity-stat {
        min-width: 200px;
    }
    
    .trading-filters {
        padding: 15px;
    }
    
    .filter-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .trade-metrics-mobile {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .trade-metrics-mobile .trade-time {
        grid-column: span 1;
    }
    
    .popular-assets {
        padding: 20px;
    }
    
    .popular-assets h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .education-text h2 {
        font-size: 2rem;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .market-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 15px;
    }
    
    .market-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .trade-btn {
        margin-left: 0;
        width: 100%;
    }
}

/* Tab Content */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.4s ease;
}

.etf-icon, .commodity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.commodity-icon {
    background: var(--warning-orange);
    font-size: 20px;
}

/* Trading Tools Section */
.trading-tools {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tool-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tool-image {
    height: 200px;
    overflow: hidden;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.tool-content {
    padding: 30px;
}

.tool-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.tool-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.tool-link:hover {
    gap: 12px;
}

/* Education Section */
.education {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.education-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.education-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.education-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.education-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.education-feature i {
    color: var(--primary-green);
    font-size: 18px;
    width: 20px;
}

.btn-education {
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-education:hover {
    padding: 32px;
    text-align: center;
}

.cookie-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(9, 195, 114, 0.3);
}

.cookie-text {
    margin-bottom: 24px;
}

.cookie-text h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-btn.accept {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 12px rgba(9, 195, 114, 0.3);
}

.cookie-btn.accept:hover {
    background: var(--primary-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9, 195, 114, 0.4);
}

.cookie-btn.decline {
    background: var(--bg-gray);
    color: var(--text-secondary);
}

.cookie-btn.decline:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

.cookie-btn.settings {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.cookie-btn.settings:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-settings-modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-settings-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.modal-body {
    padding: 0 24px 24px;
}

.modal-body > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-light);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.category-info {
    flex: 1;
}

.category-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.category-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.toggle-switch {
    position: relative;
    flex-shrink: 0;
}

.toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    background: var(--bg-gray);
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input[type="checkbox"]:checked + label {
    background: var(--primary-green);
}

.toggle-switch input[type="checkbox"]:checked + label::after {
    transform: translateX(22px);
}

.toggle-switch input[type="checkbox"]:disabled + label {
    background: var(--primary-green);
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-footer {
    padding: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-settings-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-settings-btn.decline {
    background: var(--bg-gray);
    color: var(--text-secondary);
}

.cookie-settings-btn.decline:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

.cookie-settings-btn.accept {
    background: var(--primary-green);
    color: white;
}

.cookie-settings-btn.accept:hover {
    background: var(--primary-dark-green);
    transform: translateY(-1px);
}

.cookie-settings-btn.accept-all {
    background: var(--secondary-blue);
    color: white;
}

.cookie-settings-btn.accept-all:hover {
    background: #1557cc;
    transform: translateY(-1px);
}

/* Success message styles */
.cookie-success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(9, 195, 114, 0.3);
    z-index: 25000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-success-message.show {
    transform: translateX(0);
    opacity: 1;
}

.cookie-success-message i {
    font-size: 18px;
}

/* Responsive design for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px 20px 0;
    }
    
    .modal-body {
        padding: 0 20px 20px;
    }
    
    .modal-footer {
        padding: 20px;
        flex-direction: column;
    }
    
    .cookie-settings-btn {
        width: 100%;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .toggle-switch {
        align-self: flex-end;
    }
}

/* Live Trading Activity */
.live-trading {
    padding: 80px 0;
    background: var(--bg-light);
}

.trading-feed {
    max-width: 800px;
}

/* Pricing Section - Enhanced Styling */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 32px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.pricing-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(9, 195, 114, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    flex-shrink: 0;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
    line-height: 1;
}

.currency {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 4px;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-right: 8px;
    letter-spacing: -2px;
}

.period {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding: 8px 0;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
}

.pricing-features .feature i {
    color: var(--success-green);
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
    background: rgba(56, 161, 105, 0.1);
    padding: 6px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(9, 195, 114, 0.3);
    margin-top: auto;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(9, 195, 114, 0.4);
    background: linear-gradient(135deg, var(--primary-dark-green), var(--primary-green));
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, var(--secondary-blue), #1557cc);
    box-shadow: 0 6px 20px rgba(25, 113, 255, 0.3);
}

.pricing-card.featured .pricing-btn:hover {
    box-shadow: 0 12px 30px rgba(25, 113, 255, 0.4);
    background: linear-gradient(135deg, #1557cc, var(--secondary-blue));
}

/* FAQ Section - Enhanced Styling */
.faq-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(9, 195, 114, 0.03), rgba(25, 113, 255, 0.03));
    transform: translateY(-50%);
    border-radius: 50px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 8px 30px rgba(9, 195, 114, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-white);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-item.active .faq-question::before {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
}

.faq-question:hover {
    background: rgba(9, 195, 114, 0.02);
}

.faq-question h4 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.3px;
    flex: 1;
    margin-right: 20px;
}

.faq-question i {
    color: var(--primary-green);
    font-size: 18px;
    transition: all 0.3s ease;
    background: rgba(9, 195, 114, 0.1);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-green);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(9, 195, 114, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 32px 32px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    padding-top: 8px;
}

/* Add some decorative elements */
.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-blue));
    border-radius: 2px;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-card {
        padding: 32px 24px 24px;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 24px 20px;
    }
    
    .faq-question h4 {
        font-size: 1.125rem;
    }
    
    .faq-answer {
        padding: 0 20px 24px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 24px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 28px 20px 20px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features .feature {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .pricing-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq-question {
        padding: 20px 16px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .faq-question i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 20px;
    }
}

/* Live Market Overview */
.market-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.market-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.market-dashboard {
    position: relative;
    z-index: 1;
}

.market-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.market-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.market-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.market-stat-card .stat-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.market-stat-card .stat-icon i {
    font-size: 20px;
    color: white;
}

.stat-content .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-content .stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.stat-content .stat-change {
    font-size: 14px;
    font-weight: 600;
}

.stat-change.positive {
    color: #22c55e;
}

.stat-change.negative {
    color: #ef4444;
}

.live-chart-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    height: 400px;
}

.live-chart-container canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Trending Assets */
.trending-assets {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.trending-assets::before {
    content: '🔥';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

.trending-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.trending-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.trending-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f, #4d96ff);
    animation: shimmer 2s infinite;
}

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

.trending-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.trending-rank {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.trending-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.trending-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.trending-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.trending-change {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
}

.trending-change.positive {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-green);
}

.trending-change.negative {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-red);
}

.trending-sparkline {
    margin-top: 16px;
    height: 40px;
}

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

.stock-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 16px;
}

/* Social Sentiment */
.social-sentiment {
    padding: 80px 0;
    background: var(--bg-light);
}

.sentiment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.sentiment-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sentiment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.sentiment-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sentiment-score {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.sentiment-score.bullish {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-green);
}

.sentiment-score.neutral {
    background: rgba(156, 163, 175, 0.1);
    color: #6b7280;
}

.sentiment-score.bearish {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-red);
}

.sentiment-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.sentiment-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.sentiment-fill.bullish {
    background: linear-gradient(90deg, var(--success-green), #22c55e);
}

.sentiment-fill.neutral {
    background: linear-gradient(90deg, #6b7280, #9ca3af);
}

.sentiment-mentions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mentions-count {
    font-weight: 600;
    color: var(--text-primary);
}

.mentions-trend {
    font-size: 14px;
    color: var(--success-green);
}

.social-feed {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.feed-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.feed-filters {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 6px 16px;
    border: 1px solid var(--border-light);
    background: transparent;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.social-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-post {
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-post:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.post-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.post-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.username {
    font-weight: 600;
    color: var(--text-primary);
}

.post-time {
    font-size: 12px;
    color: var(--text-light);
}

.post-content {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.post-sentiment {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.post-sentiment.bullish {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-green);
}

/* Trading Signals */
.trading-signals {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.trading-signals::before {
    content: '🎯';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.signals-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

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

.signal-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signal-stat .stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.live-signals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.signal-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.signal-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

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

.signal-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}

.signal-type i {
    font-size: 16px;
}

.buy-signal .signal-type {
    color: #22c55e;
}

.sell-signal .signal-type {
    color: #ef4444;
}

.signal-strength {
    display: flex;
    align-items: center;
    gap: 8px;
}

.strength-label {
    font-size: 12px;
    font-weight: 600;
}

.strength-bars {
    display: flex;
    gap: 2px;
}

.bar {
    width: 4px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.bar.active {
    background: white;
}

.signal-content {
    margin-bottom: 20px;
}

.signal-asset {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.signal-asset img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.stock-icon-small {
    width: 32px;
    height: 32px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 10px;
}

.signal-asset h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.signal-price {
    font-size: 14px;
    opacity: 0.8;
}

.signal-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.signal-target, .signal-stop {
    flex: 1;
}

.signal-details .label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.signal-details .value {
    font-weight: 700;
    font-size: 14px;
}

.signal-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    opacity: 0.8;
}

/* Global Markets Heat Map */
.markets-heatmap {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.heatmap-cell {
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.heatmap-cell:hover {
    transform: scale(1.05);
    z-index: 10;
}

.heatmap-cell.positive {
    background: linear-gradient(135deg, var(--success-green), #22c55e);
}

.heatmap-cell.negative {
    background: linear-gradient(135deg, var(--danger-red), #dc2626);
}

.cell-label {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
}

.cell-value {
    font-size: 18px;
    font-weight: 800;
}

.heatmap-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.positive {
    background: var(--success-green);
}

.legend-color.negative {
    background: var(--danger-red);
}

/* Copy Trading Leaderboard */
.leaderboard {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.leaderboard-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.leader-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.rank-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.rank-1 .rank-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #b45309;
    position: relative;
}

.rank-1 .rank-badge i {
    position: absolute;
    top: -5px;
    font-size: 14px;
}

.rank-2 .rank-badge {
    background: linear-gradient(135deg, #c0c0c0, #e5e7eb);
    color: #6b7280;
}

.rank-3 .rank-badge {
    background: linear-gradient(135deg, #cd7f32, #d97706);
    color: white;
}

.trader-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.trader-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.trader-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.trader-level {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

.performance-metrics {
    display: flex;
    gap: 32px;
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-value.positive {
    color: var(--success-green);
}

.copy-trader-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-trader-btn:hover {
    background: var(--primary-dark-green);
    transform: translateY(-2px);
}

/* Real-time Portfolio Analytics */
.portfolio-analytics {
    padding: 80px 0;
    background: var(--bg-white);
}

.analytics-dashboard {
    max-width: 1200px;
    margin: 0 auto;
}

.analytics-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.analytics-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-actions {
    display: flex;
    gap: 8px;
}

.period-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    background: transparent;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.period-btn.active,
.period-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.portfolio-value {
    margin-bottom: 20px;
}

.value-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.value-change {
    font-size: 14px;
    font-weight: 600;
}

.value-change.positive {
    color: var(--success-green);
}

.portfolio-chart, .allocation-chart {
    height: 200px;
    margin-bottom: 20px;
}

.allocation-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.performance-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.metric-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-content .metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.metric-content .metric-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Trading Academy */
.trading-academy {
    padding: 80px 0;
    background: var(--bg-light);
}

.academy-content {
    margin-bottom: 60px;
}

.learning-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.path-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.path-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.beginner .path-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.intermediate .path-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.advanced .path-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.path-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.beginner .path-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.intermediate .path-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.advanced .path-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.path-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.path-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.path-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.duration, .lessons {
    font-size: 14px;
    color: var(--text-secondary);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-dark-green));
    border-radius: 4px;
    transition: width 1s ease;
}

.start-learning-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.start-learning-btn:hover {
    background: var(--primary-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 195, 114, 0.3);
}

.featured-courses h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.course-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.course-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(9, 195, 114, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    backdrop-filter: blur(4px);
}

.course-content {
    padding: 20px;
}

.course-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.course-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-weight: 600;
}

.students {
    font-size: 14px;
    color: var(--text-secondary);
}

/* News & Market Updates */
.market-news {
    padding: 80px 0;
    background: var(--bg-white);
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breaking-news {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.breaking-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.breaking-badge i {
    animation: flash 1s infinite;
}

@keyframes flash {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

.breaking-content {
    flex: 1;
}

.breaking-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.breaking-content p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.news-time {
    font-size: 12px;
    opacity: 0.8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-category {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.news-category.crypto {
    background: var(--primary-green);
}

.news-category.stocks {
    background: var(--secondary-blue);
}

.news-category.forex {
    background: var(--warning-orange);
}

.news-category.commodities {
    background: #8b5cf6;
}

.news-content {
    padding: 20px;
}

.news-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-source {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 12px;
}

.news-time {
    font-size: 12px;
    color: var(--text-light);
}

/* Community Hub */
.community-hub {
    padding: 80px 0;
    background: var(--bg-light);
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.community-stats .stat-item {
    text-align: center;
}

.community-stats .stat-item i {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 16px;
}

.community-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.community-stats .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.discussion-topics h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.topic-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.topic-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.topic-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.topic-content {
    flex: 1;
}

.topic-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.topic-content p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 14px;
}

.topic-stats {
    display: flex;
    gap: 16px;
}

.replies, .last-activity {
    font-size: 12px;
    color: var(--text-light);
}

.topic-trend {
    color: var(--primary-green);
    font-size: 20px;
}

.featured-traders h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.traders-carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trader-spotlight {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.trader-spotlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.trader-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.trader-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.trader-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.trader-details {
    text-align: center;
    margin-bottom: 16px;
}

.trader-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.trader-details p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 14px;
}

.trader-metrics {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.trader-metrics .metric {
    font-size: 12px;
    color: var(--text-secondary);
}

.follow-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.follow-btn:hover {
    background: var(--primary-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 195, 114, 0.3);
}

/* Advanced Trading Tools Showcase */
.advanced-tools {
    padding: 80px 0;
    background: var(--bg-white);
}

.tools-showcase {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.demo-header {
    margin-bottom: 32px;
}

.tool-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: var(--bg-gray);
    border-radius: 8px;
    padding: 8px;
    width: fit-content;
    margin: 0 auto;
}

.tool-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-tab.active,
.tool-tab:hover {
    background: var(--bg-white);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.demo-content {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-light);
    min-height: 300px;
    transition: opacity 0.3s ease;
}

.tool-demo.loading .demo-content {
    opacity: 0.5;
}

.scanner-interface {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
}

.scanner-filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.filter-group select,
.filter-group input {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-white);
    font-size: 14px;
}

.scanner-results {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-light);
}

.result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background: var(--bg-light);
}

.result-item .symbol {
    font-weight: 700;
    color: var(--text-primary);
    min-width: 60px;
}

.result-item .price {
    font-weight: 600;
    color: var(--text-primary);
}

.result-item .change {
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.result-item .signal {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--success-green);
    color: white;
}

.tools-features {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.feature-highlight {
    text-align: center;
}

.feature-highlight .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 16px;
}

.feature-highlight h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-highlight p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Enhanced responsive design for new sections */
@media (max-width: 768px) {
    .market-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trending-carousel {
        grid-template-columns: 1fr;
    }
    
    .sentiment-grid {
        grid-template-columns: 1fr;
    }
    
    .signals-stats {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .live-signals {
        grid-template-columns: 1fr;
    }
    
    .heatmap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .leaderboard-list {
        gap: 16px;
    }
    
    .leader-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .performance-metrics {
        gap: 20px;
    }
    
    .analytics-cards {
        grid-template-columns: 1fr;
    }
    
    .performance-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .learning-paths {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .scanner-interface {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tools-features {
        flex-direction: column;
        gap: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .breaking-news {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .heatmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .performance-metrics {
        flex-direction: column;
        gap: 16px;
    }
    
    .performance-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .result-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Fix Security Section Progress Bars */
.security-metrics .progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin: 8px 0;
}

.security-metrics .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 4px;
    transition: width 2s ease-in-out;
}

/* Phone Notifications Animation */
.phone-notifications {
    position: absolute;
    top: 60px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification {
    background: rgba(9, 195, 114, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInNotification 0.5s ease forwards;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes slideInNotification {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification:nth-child(1) {
    animation-delay: 2s;
}

.notification:nth-child(2) {
    animation-delay: 2.5s;
    background: rgba(25, 113, 255, 0.95);
}

/* Tool Demo Interface Styles */
.backtester-interface,
.alerts-interface,
.portfolio-interface {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-light);
}

.backtester-interface h4,
.alerts-interface h4,
.portfolio-interface h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.backtester-interface p,
.alerts-interface p,
.portfolio-interface p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.backtest-results,
.optimization-results {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.result-metric,
.optimization-metric {
    flex: 1;
    min-width: 150px;
}

.result-metric .metric-label,
.optimization-metric .metric-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.result-metric .metric-value,
.optimization-metric .metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.alert-examples {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 500;
}

.alert-item i {
    color: var(--primary-green);
}

/* Live Trading Feed Animation */
@keyframes slideInFeed {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feed-item {
    animation: slideInFeed 0.5s ease;
}

/* Enhanced responsive design for charts */
@media (max-width: 768px) {
    .live-chart-container {
        height: 300px;
        padding: 16px;
    }
    
    .portfolio-chart,
    .allocation-chart {
        height: 150px;
    }
    
    .phone-notifications {
        position: static;
        margin-top: 20px;
        align-items: center;
    }
    
    .notification {
        animation: none;
        opacity: 1;
        transform: none;
        position: relative;
    }
}

/* Fix for missing canvas sizing */
canvas {
    max-width: 100%;
    height: auto;
}

#liveMarketChart {
    width: 100%;
    height: 350px;
}

#portfolioChart,
#allocationChart {
    width: 100%;
    height: 180px;
}

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

/* Performance chart containers */
.performance-chart canvas {
    width: 100% !important;
    height: 200px !important;
}

/* Enhanced button hover effects */
.start-learning-btn:hover {
    background: var(--primary-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 195, 114, 0.3);
}

.follow-btn:hover {
    background: var(--primary-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 195, 114, 0.3);
}

/* Enhanced Live Trading Activity */
.live-trading {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.live-trading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(9,195,114,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.live-trading .container {
    position: relative;
    z-index: 1;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #dc2626;
    margin-right: 16px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.activity-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.activity-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 140px;
}

.activity-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.activity-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.activity-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trading-dashboard {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-top: 60px;
}

/* Trading Filters */
.trading-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.filter-tabs {
    display: flex;
    gap: 8px;
    background: var(--bg-gray);
    border-radius: 12px;
    padding: 6px;
}

.filter-tab {
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--bg-white);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

/* Trading Feed Container */
.trading-feed-container {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feed-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr 1fr 0.8fr;
    gap: 20px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--bg-light), #e2e8f0);
    border-bottom: 1px solid var(--border-light);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.feed-column {
    display: flex;
    align-items: center;
}

/* Enhanced Feed Items */
.trading-feed {
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) var(--bg-light);
}

.trading-feed::-webkit-scrollbar {
    width: 6px;
}

.trading-feed::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.trading-feed::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 3px;
}

.feed-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr 1fr 0.8fr;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: slideInFromRight 0.8s ease;
    position: relative;
    overflow: hidden;
}

.feed-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.feed-item:hover {
    background: rgba(9, 195, 114, 0.02);
    transform: translateX(5px);
}

.feed-item:hover::before {
    background: var(--primary-green);
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Trader Profile */
.trader-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trader-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.trader-avatar:hover {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.trader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid var(--bg-white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.trader-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trader-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
}

.trader-level {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Action Badge */
.action-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.action-badge.buy {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.action-badge.sell {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.action-badge i {
    font-size: 10px;
}

/* Trade Asset */
.trade-asset {
    display: flex;
    align-items: center;
    gap: 12px;
}

.asset-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.asset-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stock-icon, .forex-icon {
    background: linear-gradient(135deg, var(--secondary-blue), #1557cc);
    color: white;
    font-weight: 700;
    font-size: 10px;
    text-align: center;
    line-height: 1;
}

.forex-icon {
    font-size: 8px;
}

.asset-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.asset-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.asset-symbol {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* Trade Amount */
.trade-amount {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.amount-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
}

.amount-size {
    font-size: 12px;
    color: var(--text-light);
}

/* Trade Result */
.trade-result {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.result-value {
    font-weight: 700;
    font-size: 14px;
}

.result-percent {
    font-size: 12px;
    font-weight: 600;
}

.trade-result.profit .result-value,
.trade-result.profit .result-percent {
    color: var(--success-green);
}

.trade-result.loss .result-value,
.trade-result.loss .result-percent {
    color: var(--danger-red);
}

/* Trade Time */
.trade-time {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.time-value {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.time-progress {
    width: 100%;
    height: 2px;
    background: var(--bg-gray);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.time-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, var(--primary-green), #22c55e);
    border-radius: 1px;
    animation: progressBar 5s ease-in-out infinite;
}

@keyframes progressBar {
    0%, 100% { width: 10%; }
    50% { width: 90%; }
}

/* Popular Assets Sidebar */
.popular-assets {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.popular-assets h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.asset-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-asset {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.popular-asset:hover {
    background: var(--bg-light);
    transform: translateX(5px);
}

.popular-asset .asset-icon {
    width: 32px;
    height: 32px;
}

.popular-asset .asset-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popular-asset .asset-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.popular-asset .asset-trades {
    font-size: 12px;
    color: var(--text-light);
}

.popular-asset .asset-change {
    font-weight: 700;
    font-size: 14px;
}

.asset-change.positive {
    color: var(--success-green);
}

.asset-change.negative {
    color: var(--danger-red);
}

/* Activity Ticker */
.activity-ticker {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--text-primary), #1e293b);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding: 16px 0;
}

.ticker-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
    color: white;
    font-weight: 500;
}

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

.ticker-item {
    margin-right: 60px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trading-dashboard {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .popular-assets {
        position: relative;
        top: 0;
    }
    
    .asset-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .activity-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .trading-filters {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .feed-header {
        display: none;
    }
    
    .feed-item {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .trader-profile,
    .trade-asset {
        justify-content: flex-start;
    }
    
    .trade-amount,
    .trade-result,
    .trade-time {
        text-align: left;
    }
    
    .filter-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .asset-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .live-trading {
        padding: 60px 0;
    }
    
    .feed-item {
        padding: 16px;
    }
    
    .trader-avatar {
        width: 36px;
        height: 36px;
    }
    
    .asset-icon {
        width: 28px;
        height: 28px;
    }
    
    .popular-assets {
        padding: 20px;
    }
}

/* Mobile App Section */
.mobile-app {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.mobile-app::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 195, 114, 0.05), rgba(25, 113, 255, 0.05));
    border-radius: 50px 0 0 50px;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(9, 195, 114, 0.3);
}

.app-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.app-feature:hover {
    background: rgba(9, 195, 114, 0.1);
    transform: translateX(5px);
}

.app-feature i {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.app-feature span {
    font-weight: 600;
    color: var(--text-primary);
}

.app-downloads {
    display: flex;
    gap: 16px;
}

.app-store-btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.app-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-store-btn img {
    height: 50px;
    width: auto;
}

.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.phone-screen {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.phone-notifications {
    position: absolute;
    top: 60px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification {
    background: rgba(9, 195, 114, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInNotification 0.5s ease forwards;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes slideInNotification {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification:nth-child(1) {
    animation-delay: 2s;
}

.notification:nth-child(2) {
    animation-delay: 2.5s;
    background: rgba(25, 113, 255, 0.95);
}

/* Responsive Design for Mobile App Section */
@media (max-width: 768px) {
    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .app-text h2 {
        font-size: 2rem;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .app-downloads {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .phone-notifications {
        position: static;
        margin-top: 20px;
        align-items: center;
    }
    
    .notification {
        animation: none;
        opacity: 1;
        transform: none;
        position: relative;
    }
}

@media (max-width: 480px) {
    .app-text h2 {
        font-size: 1.75rem;
    }
    
    .app-text p {
        font-size: 1rem;
    }
    
    .app-downloads {
        flex-direction: column;
        align-items: center;
    }
}
