/* Custom CSS for CopyMinds */

/* Global Text Glow Effects */
h1, h2, h3, h4, h5, h6 {
    text-shadow: 
        0 0 8px rgba(255, 107, 53, 0.5),
        0 0 16px rgba(255, 107, 53, 0.3),
        0 0 24px rgba(255, 107, 53, 0.1);
}

p, span, div {
    text-shadow: 
        0 0 4px rgba(255, 112, 67, 0.3),
        0 0 8px rgba(255, 112, 67, 0.2);
}

/* Compact Navbar Styles */
.compact-navbar {
    background: transparent !important;
    backdrop-filter: none;
    border-bottom: none;
    padding: 0.1rem 0;
    min-height: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.compact-navbar.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.compact-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.compact-nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.2rem 0.5rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    text-shadow: 
        0 0 4px rgba(255, 112, 67, 0.3),
        0 0 8px rgba(255, 112, 67, 0.2);
}

.compact-nav-link:hover {
    color: white !important;
    text-shadow: 
        0 0 4px rgba(255, 112, 67, 0.3),
        0 0 8px rgba(255, 112, 67, 0.2);
}

.compact-btn {
    padding: 0.15rem 0.5rem !important;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid rgba(51, 51, 51, 0.5);
    background: transparent;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.compact-btn:hover {
    background: transparent;
    border-color: rgba(51, 51, 51, 0.5);
    color: white;
}

.compact-btn-primary {
    padding: 0.15rem 0.5rem !important;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 4px;
    background: var(--gradient-orange-black-yellow);
    border: none;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.compact-btn-primary:hover {
    background: var(--gradient-orange-black-yellow);
    color: white;
    transform: none;
    box-shadow: none;
}

.navbar-toggler {
    border: 1px solid rgba(51, 51, 51, 0.5);
    padding: 0.2rem 0.4rem;
    font-size: 0.8rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.2em;
    height: 1.2em;
}

/* Navbar scroll effect */
.compact-navbar .container {
    max-width: 1200px;
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
    display: flex;
    align-items: center;
}

/* Section Dividers */
.section-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 112, 67, 0.3) 25%, 
        rgba(255, 107, 53, 0.4) 50%, 
        rgba(255, 138, 101, 0.3) 75%, 
        transparent 100%);
    margin: 0;
    border: none;
    opacity: 0.6;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 112, 67, 0.1) 25%, 
        rgba(255, 107, 53, 0.2) 50%, 
        rgba(255, 138, 101, 0.1) 75%, 
        transparent 100%);
    filter: blur(1px);
}

/* Add dividers between sections */
.ultra-modern-hero-section,
.modern-how-it-works-section,
.modern-ai-features-section,
.modern-features-section,
.modern-waitlist-section,
.ultra-modern-whitepaper-section {
    position: relative;
}

.ultra-modern-hero-section::after,
.modern-how-it-works-section::after,
.modern-ai-features-section::after,
.modern-features-section::after,
.modern-waitlist-section::after,
.ultra-modern-whitepaper-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 112, 67, 0.4) 25%, 
        rgba(255, 107, 53, 0.6) 50%, 
        rgba(255, 138, 101, 0.4) 75%, 
        transparent 100%);
    opacity: 0.8;
    z-index: 10;
}

.ultra-modern-hero-section::before,
.modern-how-it-works-section::before,
.modern-ai-features-section::before,
.modern-features-section::before,
.modern-waitlist-section::before,
.ultra-modern-whitepaper-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 112, 67, 0.2) 25%, 
        rgba(255, 107, 53, 0.3) 50%, 
        rgba(255, 138, 101, 0.2) 75%, 
        transparent 100%);
    filter: blur(2px);
    z-index: 9;
}

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
        .compact-navbar {
            background: rgba(26, 26, 26, 0.95) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(51, 51, 51, 0.3);
        }
    
    .compact-brand-text {
        font-size: 0.9rem;
    }
    
    .compact-nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.95rem;
    }
}

:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #ff7043;
    --secondary-dark: #e55a2b;
    --accent-color: #ff8a65;
    --background-dark: #000000;
    --background-darker: #1a1a1a;
    --surface-color: #1a1a1a;
    --surface-hover: #333333;
    --border-color: #333333;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff7043 100%);
    --gradient-secondary: linear-gradient(135deg, #ff7043 0%, #ff8a65 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-orange-black-yellow: linear-gradient(135deg, #fec163 0%, #de4313 100%);
    --gradient-surface: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    --shadow-primary: 0 15px 40px rgba(255, 107, 53, 0.4);
    --shadow-secondary: 0 15px 40px rgba(255, 112, 67, 0.4);
    --shadow-dark: 0 15px 40px rgba(255, 107, 53, 0.2);
    --blur-glass: blur(20px);
}

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

html {
    scroll-behavior: smooth;
}

/* Seamless Scrolling Layout - Single Background System */
body {
    font-family: 'Exo 2', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Continuous Background System */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 112, 67, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(255, 138, 101, 0.05) 0%, transparent 50%),
        #000000;
    z-index: -2;
    pointer-events: none;
}

/* Animated Background Particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 53, 0.2), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 112, 67, 0.15), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 107, 53, 0.25), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 138, 101, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 107, 53, 0.15), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: backgroundMove 20s linear infinite;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -100px); }
}

/* Background Color Areas for Sections */
.ultra-modern-hero-section {
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 20%, rgba(255, 112, 67, 0.08) 0%, transparent 60%),
        #000000;
}

.modern-how-it-works-section {
    background: 
        radial-gradient(circle at 20% 60%, rgba(255, 112, 67, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 40%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        #000000;
}

.modern-ai-features-section {
    background: 
        radial-gradient(circle at 50% 30%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(255, 138, 101, 0.08) 0%, transparent 60%),
        #000000;
}

.modern-features-section {
    background: 
        radial-gradient(circle at 70% 50%, rgba(255, 112, 67, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        #000000;
}

.modern-waitlist-section {
    background: 
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 60% 80%, rgba(255, 112, 67, 0.1) 0%, transparent 60%),
        #000000;
}

.ultra-modern-whitepaper-section {
    background: 
        radial-gradient(circle at 80% 30%, rgba(255, 112, 67, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        #000000;
}

.modern-roadmap-section {
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 20%, rgba(255, 112, 67, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(255, 138, 101, 0.06) 0%, transparent 60%),
        #000000;
}

.modern-footer-section {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 112, 67, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        #000000;
}

.dark-theme {
    background: #000000;
}

/* Typography */
.gradient-text {
    background: var(--gradient-orange-black-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Brand */
.brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Navigation */
.glass-nav {
    background: rgba(13, 17, 23, 0.8) !important;
    backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(13, 17, 23, 0.95) !important;
    box-shadow: var(--shadow-dark);
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: transparent;
}

.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    color: var(--background-dark);
    font-weight: 600;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient:hover {
    transform: none;
    box-shadow: none;
    color: var(--background-dark);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-gradient:hover::before {
    left: -100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #000000;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    opacity: 0.05;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.7);
    z-index: 2;
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 3;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 53, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 107, 53, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 107, 53, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 107, 53, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: float-particles 20s linear infinite;
    z-index: 3;
}

@keyframes float-particles {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 4;
    padding-bottom: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 4;
}

.trading-dashboard {
    background: var(--gradient-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-dark);
    backdrop-filter: var(--blur-glass);
    animation: float-dashboard 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.trading-dashboard:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.7);
    background: #000000;
}

@keyframes float-dashboard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}

.dashboard-title-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.dashboard-title-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.profit-display {
    text-align: center;
    margin-bottom: 2rem;
}

.profit-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.profit-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.25rem;
}

.profit-percentage {
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 500;
}

.chart-container {
    height: 120px;
    margin-bottom: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.active-trades {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trade-item:hover {
    background: rgba(255, 107, 53, 0.15);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.trade-pair {
    font-weight: 500;
    color: var(--text-primary);
}

.trade-profit.positive {
    color: #ff6b35;
    font-weight: 600;
}

/* Sections */
.modern-how-it-works-section .section-header {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.modern-how-it-works-section .section-title {
    font-size: 2rem !important;
}

.modern-how-it-works-section .section-subtitle {
    font-size: 1rem !important;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.modern-ai-features-section .section-header {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.modern-ai-features-section .section-title {
    font-size: 2rem !important;
}

.modern-ai-features-section .section-subtitle {
    font-size: 1rem !important;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.modern-features-section .section-header {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.modern-features-section .section-title {
    font-size: 2rem !important;
}

.modern-features-section .section-subtitle {
    font-size: 1rem !important;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ultra-modern-whitepPaper-section .section-header {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ultra-modern-whitepaper-section .section-title {
    font-size: 2rem !important;
}

.ultra-modern-whitepaper-section .section-subtitle {
    font-size: 1rem !important;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.modern-roadmap-section .section-header {
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.modern-roadmap-section .section-title {
    font-size: 2rem !important;
}

.modern-roadmap-section .section-subtitle {
    font-size: 1rem !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(255, 107, 53, 0.6),
        0 0 20px rgba(255, 107, 53, 0.4),
        0 0 30px rgba(255, 107, 53, 0.2);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 
        0 0 8px rgba(255, 112, 67, 0.4),
        0 0 16px rgba(255, 112, 67, 0.2);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: #000000;
}

.feature-card {
    background: var(--gradient-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.7);
    border-color: rgba(255, 107, 53, 0.3);
    background: #000000;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--background-dark);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

/* Waitlist Section */
.waitlist-section {
    padding: 6rem 0;
    background: #000000;
}

.waitlist-card {
    background: var(--gradient-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.waitlist-card:hover {
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.8);
    background: #000000;
}

.waitlist-counter {
    margin: 2rem 0;
}

.counter-display {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

.counter-display:hover {
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.15);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.waitlist-form .form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background: #000000;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: var(--surface-hover);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-check-input {
    background: #000000;
    border: 1px solid var(--border-color);
}

.form-check-input:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-secondary);
}

/* Whitepaper Section */
.whitepaper-section {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 40% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 60% 30%, rgba(255, 112, 67, 0.08) 0%, transparent 60%),
        #000000;
}

.whitepaper-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.document-preview {
    background: var(--gradient-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 300px;
    box-shadow: var(--shadow-dark);
    animation: float-document 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.document-preview:hover {
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.8);
    background: #000000;
}

@keyframes float-document {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.document-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.document-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.25rem;
}

.document-info h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.document-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.document-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.content-line {
    height: 8px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 4px;
}

.content-line.short {
    width: 60%;
}

.content-line.medium {
    width: 80%;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #000000;
}

.team-card {
    background: var(--gradient-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.7);
    border-color: rgba(255, 107, 53, 0.3);
    background: #000000;
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

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

.team-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Footer */
.footer-section {
    padding: 3rem 0;
    background: #000000;
    border: 2px solid rgba(255, 107, 53, 0.6);
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3), 
                0 0 100px rgba(255, 107, 53, 0.1),
                inset 0 0 20px rgba(255, 107, 53, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-text {
    color: var(--text-secondary);
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #000000;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

/* Language Button */
.language-btn {
    transition: all 0.3s ease;
}

.language-btn:hover {
    transform: translateX(5px);
    background: var(--primary-color) !important;
    color: var(--background-dark) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.flag-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.language-btn:hover .flag-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        text-align: center;
    }
    
    .waitlist-card {
        padding: 2rem;
    }
    
    .footer-links {
        align-items: center;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .team-card {
        padding: 1.5rem;
    }
    
    .trading-dashboard {
        padding: 1.5rem;
    }
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.success-message {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    display: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.alert-danger {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Top Traders List in Dashboard */
.top-traders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 460px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.top-traders-list::-webkit-scrollbar {
    width: 4px;
}

.top-traders-list::-webkit-scrollbar-track {
    background: rgba(48, 54, 61, 0.3);
    border-radius: 2px;
}

.top-traders-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.trader-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.8) 0%, rgba(33, 38, 45, 0.6) 100%);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trader-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.trader-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.4);
}

.trader-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--gradient-orange-black-yellow);
    padding: 2px;
    flex-shrink: 0;
    position: relative;
}

.trader-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b35, var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    animation: rotate-border 3s linear infinite;
}

.trader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #000000;
}

.trader-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trader-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(255, 107, 53, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trader-stats {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.trader-profit {
    color: #ff6b35;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.trader-meta {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trader-chart {
    width: 80px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trader-chart canvas {
    border-radius: 4px;
}

/* Responsive improvements for trader items */
@media (max-width: 768px) {
    .trader-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .trader-avatar {
        width: 45px;
        height: 45px;
    }
    
    .trader-name {
        font-size: 0.875rem;
    }
    
    .trader-profit {
        font-size: 0.825rem;
    }
    
    .trader-meta {
        font-size: 0.7rem;
    }
    
    .trader-chart {
        width: 70px;
        height: 35px;
    }
    
    .dashboard-title-container {
        gap: 0.75rem;
    }
    
    .dashboard-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .dashboard-title {
        font-size: 1.1rem;
    }
    
    .dashboard-subtitle {
        font-size: 0.8rem;
    }
}

/* Testimonials */
.testimonial-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gradient-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    background: #000000;
}

.testimonial-item p {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-item cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

/* Modern Top Traders Section */
.modern-traders-section {
    padding: 8rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.modern-traders-section::before {
    display: none;
}

.modern-traders-section .container {
    position: relative;
    z-index: 2;
}

/* Modern Trader Cards */
.modern-trader-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.9) 0%, rgba(33, 38, 45, 0.8) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.modern-trader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.modern-trader-card:hover::before {
    opacity: 1;
}

.modern-trader-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4),
                0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Trader Header */
.trader-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.modern-trader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #000000, #ff6b35);
    padding: 3px;
    position: relative;
}

.modern-trader-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #000000, #ff6b35, #000000);
    border-radius: 50%;
    z-index: -1;
    animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modern-trader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #000000;
}

.trader-info {
    flex: 1;
}

.trader-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(255, 107, 53, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trader-rank {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(30, 148, 245, 0.2));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

.trader-rank i {
    font-size: 0.75rem;
}

/* Profit Display */
.modern-profit-display {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.profit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1rem;
}

.profit-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    margin-bottom: 0.5rem;
}

.profit-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Chart Container */
.modern-chart-container {
    height: 120px;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(48, 54, 61, 0.3);
    border-radius: 16px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.modern-chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.1) 50%, transparent 100%);
    animation: chart-glow 2s ease-in-out infinite alternate;
}

@keyframes chart-glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Stats Grid */
.modern-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.modern-stat-item {
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.8) 0%, rgba(33, 38, 45, 0.6) 100%);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 16px;
    padding: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-stat-item:hover::before {
    opacity: 1;
}

.modern-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--background-dark);
    font-size: 1.2rem;
}

.modern-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Follow Button */
.follow-btn {
    width: 100%;
    background: var(--gradient-orange-black-yellow);
    border: none;
    border-radius: 16px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--background-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.follow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.follow-btn:hover::before {
    left: 100%;
}

.follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: var(--background-dark);
}

/* Performance Badge */
.performance-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff6b35;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-trader-card {
        padding: 2rem;
    }
    
    .trader-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modern-trader-avatar {
        width: 100px;
        height: 100px;
    }
    
    .profit-amount {
        font-size: 2rem;
    }
    
    .modern-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Modern AI Features Section */
.modern-ai-features-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.modern-ai-features-section::before {
    display: none;
}

.modern-ai-features-section .container {
    position: relative;
    z-index: 2;
}

/* AI Features List */
.ai-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.9) 0%, rgba(33, 38, 45, 0.8) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.ai-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.ai-feature-item:hover::before {
    opacity: 1;
}

.ai-feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4),
                0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.ai-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.8rem;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.ai-feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.ai-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Modern Testimonials Container */
.modern-testimonials-container {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.9) 0%, rgba(33, 38, 45, 0.8) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 18px;
    padding: 1.8rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.modern-testimonials-container:hover {
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Testimonials Header */
.testimonials-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}

.testimonials-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.2rem;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.testimonials-title-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonials-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Modern Testimonials Grid */
.modern-testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 650px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.modern-testimonials-grid::-webkit-scrollbar {
    width: 4px;
}

.modern-testimonials-grid::-webkit-scrollbar-track {
    background: rgba(48, 54, 61, 0.3);
    border-radius: 2px;
}

.modern-testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.modern-testimonial-card {
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8) 0%, rgba(22, 27, 34, 0.6) 100%);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-testimonial-card:hover::before {
    opacity: 1;
}

.modern-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

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

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--primary-color);
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--gradient-orange-black-yellow);
    padding: 2px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #000000;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 700;
    color: var(--primary-color);
    font-style: normal;
    font-size: 1rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-ai-features-section {
        padding: 6rem 0;
    }
    
    .ai-feature-item {
        padding: 1.5rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .ai-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .ai-feature-title {
        font-size: 1.25rem;
    }
    
    .ai-feature-description {
        font-size: 1rem;
    }
    
    .modern-testimonials-container {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
    }
    
    .modern-testimonials-grid {
        max-height: 350px;
    }
    
    .modern-testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-author {
        gap: 0.75rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
    }
}

/* Modern Features Section */
.modern-features-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.modern-features-section::before {
    display: none;
}

.modern-features-section .container {
    position: relative;
    z-index: 2;
}

/* Modern Features Grid */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.modern-feature-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.9) 0%, rgba(33, 38, 45, 0.8) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 18px;
    padding: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.modern-feature-card:hover::before {
    opacity: 1;
}

.modern-feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4),
                0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Feature Card Header */
.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.modern-feature-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 2rem;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    position: relative;
}

.modern-feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b35, var(--primary-color));
    border-radius: 22px;
    z-index: -1;
    animation: rotate-border 4s linear infinite;
}

.feature-badge {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge.security {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

.feature-badge.performance {
    background: linear-gradient(45deg, rgba(30, 148, 245, 0.2), rgba(255, 107, 53, 0.1));
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

.feature-badge.social {
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.2), rgba(138, 43, 226, 0.1));
    border-color: rgba(138, 43, 226, 0.3);
    color: #8a2be2;
}

.feature-badge.mobile {
    background: linear-gradient(45deg, rgba(255, 99, 132, 0.2), rgba(255, 99, 132, 0.1));
    border-color: rgba(255, 99, 132, 0.3);
    color: #ff6384;
}

.feature-badge.automation {
    background: linear-gradient(45deg, rgba(54, 162, 235, 0.2), rgba(54, 162, 235, 0.1));
    border-color: rgba(54, 162, 235, 0.3);
    color: #36a2eb;
}

/* Feature Card Content */
.feature-card-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.modern-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-feature-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Feature Card Footer */
.feature-card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(48, 54, 61, 0.3);
    position: relative;
    z-index: 2;
}

.feature-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Waitlist Section */
.modern-waitlist-section {
    padding: 8rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.modern-waitlist-section::before {
    display: none;
}

.modern-waitlist-section .container {
    position: relative;
    z-index: 2;
}

/* Modern Waitlist Card */
.modern-waitlist-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 32px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-waitlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.modern-waitlist-card:hover {
    box-shadow: 0 40px 100px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Waitlist Card Header */
.waitlist-card-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.waitlist-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.waitlist-main-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 2.5rem;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
    position: relative;
    z-index: 2;
}

.waitlist-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float-particle 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

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

.modern-waitlist-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-waitlist-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Waitlist Stats Container */
.waitlist-stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.waitlist-counter-card {
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8) 0%, rgba(22, 27, 34, 0.6) 100%);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.waitlist-counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.counter-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.counter-content {
    flex: 1;
}

.counter-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b35;
    font-size: 0.875rem;
    font-weight: 600;
}

.waitlist-benefits {
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8) 0%, rgba(22, 27, 34, 0.6) 100%);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.benefit-item i {
    color: #ff6b35;
    font-size: 1.2rem;
}

/* Modern Waitlist Form */
.modern-waitlist-form-container {
    position: relative;
    z-index: 2;
}

.modern-waitlist-form {
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modern-form-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.input-container,
.select-container {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    z-index: 2;
}

.modern-form-control,
.modern-form-select {
    width: 100%;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8) 0%, rgba(22, 27, 34, 0.6) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 16px;
    color: var(--text-primary);
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modern-form-control:focus,
.modern-form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1),
                0 10px 30px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.9) 0%, rgba(33, 38, 45, 0.8) 100%);
}

.modern-form-control::placeholder {
    color: var(--text-muted);
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 0.875rem;
    pointer-events: none;
}

/* Modern Submit Button */
.modern-submit-btn {
    width: 100%;
    background: var(--gradient-orange-black-yellow);
    border: none;
    border-radius: 20px;
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--background-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.modern-submit-btn:hover .btn-shine {
    left: 100%;
}

.modern-submit-btn:active {
    transform: translateY(-1px);
}

/* Security Note */
.waitlist-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: center;
}

.waitlist-security-note i {
    color: #ff6b35;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-feature-card {
        padding: 2rem;
    }
    
    .modern-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .modern-feature-title {
        font-size: 1.25rem;
    }
    
    .modern-feature-description {
        font-size: 1rem;
    }
    
    .modern-waitlist-card {
        padding: 2rem;
    }
    
    .modern-waitlist-title {
        font-size: 2.5rem;
    }
    
    .modern-waitlist-subtitle {
        font-size: 1.1rem;
    }
    
    .waitlist-stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .waitlist-main-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
}

/* Modern Whitepaper Section */
.modern-whitepaper-section {
    padding: 8rem 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(255, 138, 101, 0.08) 0%, transparent 60%),
        #000000;
    position: relative;
    overflow: hidden;
}

.modern-whitepaper-section::before {
    display: none;
}

.modern-whitepaper-section .container {
    position: relative;
    z-index: 2;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
        transform: scale(1.02);
    }
}

/* Whitepaper Actions */
.whitepaper-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.whitepaper-actions .btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(229, 90, 43, 0.3));
}

.notify-container {
    position: relative;
}

.notify-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.notify-btn:hover::before {
    left: 100%;
}

.notify-btn:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Modern Document Preview */
.modern-document-preview {
    background: var(--gradient-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 350px;
    box-shadow: var(--shadow-dark);
    animation: float-document 4s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-document-preview:hover {
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.8);
    background: #000000;
}

.document-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.coming-soon-overlay {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: var(--gradient-orange-black-yellow);
    color: var(--background-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: bounce-glow 3s ease-in-out infinite;
}

@keyframes bounce-glow {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
    50% { 
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    }
}

.document-blur-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(3px);
    z-index: 2;
}

/* Modern Team Section */
.modern-team-section {
    padding: 8rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.modern-team-section::before {
    display: none;
}

.modern-team-section .container {
    position: relative;
    z-index: 2;
}

/* Modern Team Cards */
.modern-team-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.9) 0%, rgba(33, 38, 45, 0.8) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.modern-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.modern-team-card:hover::before {
    opacity: 1;
}

.modern-team-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4),
                0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.modern-team-card .team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: var(--gradient-orange-black-yellow);
    padding: 4px;
    position: relative;
    z-index: 2;
}

.modern-team-card .team-avatar::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b35, var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    animation: rotate-border 4s linear infinite;
}

.modern-team-card .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #000000;
}

.modern-team-card .team-info {
    position: relative;
    z-index: 2;
}

.modern-team-card .team-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-team-card .team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-team-card .team-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-whitepaper-section,
    .modern-team-section {
        padding: 6rem 0;
    }
    
    .whitepaper-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .whitepaper-actions .btn {
        text-align: center;
    }
    
    .modern-document-preview {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .modern-team-card {
        padding: 2rem;
    }
    
    .modern-team-card .team-avatar {
        width: 100px;
        height: 100px;
    }
    
    .modern-team-card .team-name {
        font-size: 1.25rem;
    }
}

/* How it Works Section - Modern Design */
.modern-how-it-works-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.modern-how-it-works-section::before {
    display: none;
}

.modern-how-it-works-section .container {
    position: relative;
    z-index: 2;
}

/* Modern How It Works Cards */
.modern-how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.modern-how-it-works-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.9) 0%, rgba(33, 38, 45, 0.8) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.modern-how-it-works-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.modern-how-it-works-card:hover::before {
    opacity: 1;
}

.modern-how-it-works-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4),
                0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Step Number */
.step-number {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

/* Modern How It Works Icon */
.modern-how-it-works-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 2rem;
    color: var(--background-dark);
    font-size: 2.5rem;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
}

.modern-how-it-works-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b35, var(--primary-color));
    border-radius: 28px;
    z-index: -1;
    animation: rotate-border 4s linear infinite;
}

.modern-how-it-works-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.modern-how-it-works-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Connection Lines */
.modern-how-it-works-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    z-index: 3;
}

/* Modern Roadmap Section */
.modern-roadmap-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.modern-roadmap-section::before {
    display: none;
}

.modern-roadmap-section .container {
    position: relative;
    z-index: 2;
}

/* Modern Roadmap Timeline */
.modern-roadmap-timeline {
    position: relative;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.modern-roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 2px;
    z-index: 1;
}

/* Modern Roadmap Items */
.modern-roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.modern-roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.modern-roadmap-item:nth-child(even) .modern-roadmap-content {
    text-align: right;
}

.modern-roadmap-content {
    flex: 1;
    max-width: 48%;
    padding: 0 2rem;
}

.modern-roadmap-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.9) 0%, rgba(33, 38, 45, 0.8) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.modern-roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 112, 67, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.modern-roadmap-card:hover::before {
    opacity: 0.3;
}

.modern-roadmap-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4),
                0 15px 40px rgba(255, 112, 67, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Roadmap Quarter Badge */
.modern-roadmap-quarter {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-orange-black-yellow);
    color: var(--background-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 10;
}

.modern-roadmap-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    text-shadow: 
        0 0 8px rgba(255, 107, 53, 0.5),
        0 0 16px rgba(255, 107, 53, 0.3),
        0 0 24px rgba(255, 107, 53, 0.1);
    position: relative;
    z-index: 10;
}

.modern-roadmap-features {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 10;
}

.modern-roadmap-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-shadow: 
        0 0 4px rgba(255, 112, 67, 0.3),
        0 0 8px rgba(255, 112, 67, 0.2);
    position: relative;
    z-index: 10;
}

.modern-roadmap-features li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
    text-shadow: 
        0 0 8px rgba(255, 107, 53, 0.6),
        0 0 16px rgba(255, 107, 53, 0.4);
}

.modern-roadmap-features li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 10;
}

/* Roadmap Status Badge */
.modern-roadmap-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
    text-shadow: 
        0 0 4px rgba(255, 112, 67, 0.3),
        0 0 8px rgba(255, 112, 67, 0.2);
}

.modern-roadmap-status.upcoming {
    background: linear-gradient(45deg, rgba(139, 148, 158, 0.2), rgba(139, 148, 158, 0.1));
    border: 1px solid rgba(139, 148, 158, 0.3);
    color: var(--text-secondary);
}

.modern-roadmap-status.active {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

.modern-roadmap-status.completed {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary-color);
}

/* Timeline Dot */
.roadmap-timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 50%;
    border: 4px solid var(--background-dark);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 3;
    animation: pulse-timeline-dot 2s ease-in-out infinite;
}

@keyframes pulse-timeline-dot {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-how-it-works-section,
    .modern-roadmap-section {
        padding: 6rem 0;
    }
    
    .modern-how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-how-it-works-card {
        padding: 2.5rem 2rem;
    }
    
    .modern-how-it-works-card:not(:last-child)::after {
        display: none;
    }
    
    .modern-how-it-works-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .modern-how-it-works-title {
        font-size: 1.25rem;
    }
    
    .modern-how-it-works-description {
        font-size: 1rem;
    }
    
    .modern-roadmap-timeline::before {
        left: 2rem;
    }
    
    .modern-roadmap-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 4rem;
    }
    
    .modern-roadmap-item:nth-child(even) .modern-roadmap-content {
        text-align: left;
    }
    
    .modern-roadmap-content {
        max-width: 100%;
        padding: 0;
    }
    
    .modern-roadmap-card {
        padding: 2rem;
    }
    
    .modern-roadmap-title {
        font-size: 1.5rem;
    }
    
    .roadmap-timeline-dot {
        left: 2rem;
    }
}

@media (max-width: 576px) {
    .modern-how-it-works-card {
        padding: 2rem 1.5rem;
    }
    
    .modern-how-it-works-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .modern-roadmap-card {
        padding: 1.5rem;
    }
    
    .modern-roadmap-title {
        font-size: 1.25rem;
    }
    
    .modern-roadmap-features li {
        font-size: 0.9rem;
    }
}

/* Modern Navigation */
.modern-glass-nav {
    background: rgba(13, 17, 23, 0.4) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(48, 54, 61, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 0;
    min-height: 70px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.05);
}

.modern-glass-nav.scrolled {
    background: rgba(13, 17, 23, 0.7) !important;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
    padding: 0.5rem 0;
}

/* Modern Brand */
.modern-brand {
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-brand:hover {
    transform: translateY(-2px);
}

.modern-brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modern-brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.modern-brand-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.modern-brand:hover .modern-brand-icon::before {
    left: 100%;
}

.modern-brand-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.modern-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-brand-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

/* Modern Navbar Toggler */
.modern-navbar-toggler {
    border: none;
    background: none;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-toggler-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.modern-navbar-toggler:hover .modern-toggler-line {
    background: var(--text-primary);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Modern Nav Links */
.modern-nav-link {
    display: flex;
    align-items: center;
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}


.modern-nav-link:hover {
    color: var(--text-primary) !important;
}

.nav-icon {
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.modern-nav-link span {
    position: relative;
    z-index: 2;
}

/* Modern Language Selector */
.modern-language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.8) 0%, rgba(33, 38, 45, 0.6) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}


.current-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-flag {
    font-size: 1.2rem;
}

.current-flag-img {
    width: 24px;
    height: 18px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-lang {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.selector-arrow {
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}


/* Modern Sign In Button */
.modern-signin-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}


/* Modern Log In Button */
.modern-login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 112, 67, 0.3);
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    color: var(--secondary-color) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}


/* Modern CTA Button */
.modern-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-orange-black-yellow);
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    color: var(--background-dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    white-space: nowrap;
}



.btn-icon {
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.modern-cta-btn span {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}


/* Modern Language Modal */
.modern-language-modal {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 24px;
    backdrop-filter: blur(25px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
}

.modern-modal-header {
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    border-radius: 24px 24px 0 0;
}

.modal-title-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.25rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.modal-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-close-btn {
    background: rgba(255, 99, 99, 0.1);
    border: 1px solid rgba(255, 99, 99, 0.3);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6363;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-close-btn:hover {
    background: rgba(255, 99, 99, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 99, 99, 0.3);
}

.modern-modal-body {
    padding: 1.5rem;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0.5rem;
}

.modern-language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.ultra-modern-hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.badge-content {
    position: relative;
}

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

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 20px;
    background: var(--primary-color);
    filter: blur(20px);
    opacity: 0.3;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Ultra Modern Hero Title */
.ultra-modern-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 
        0 0 10px rgba(255, 107, 53, 0.8),
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 107, 53, 0.4),
        0 0 40px rgba(255, 107, 53, 0.2);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: title-reveal 1s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.gradient-title {
    background: linear-gradient(45deg, var(--primary-color), #ff6b35, #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes title-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Ultra Modern Hero Subtitle */
.ultra-modern-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    text-shadow: 
        0 0 8px rgba(255, 112, 67, 0.6),
        0 0 16px rgba(255, 112, 67, 0.4),
        0 0 24px rgba(255, 112, 67, 0.2);
}

/* Ultra Modern Hero Actions */
.ultra-modern-hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.ultra-modern-primary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ultra-modern-primary-btn .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    border-radius: 50px;
    z-index: 1;
}

.ultra-modern-primary-btn .btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ultra-modern-primary-btn .btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ultra-modern-primary-btn .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: btn-particles 2s ease-in-out infinite;
}

.ultra-modern-primary-btn .particle:nth-child(1) {
    top: -20px;
    left: -10px;
    animation-delay: 0s;
}

.ultra-modern-primary-btn .particle:nth-child(2) {
    top: 20px;
    right: -10px;
    animation-delay: 0.7s;
}

.ultra-modern-primary-btn .particle:nth-child(3) {
    bottom: -20px;
    left: 10px;
    animation-delay: 1.4s;
}

@keyframes btn-particles {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.ultra-modern-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.ultra-modern-secondary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ultra-modern-secondary-btn .btn-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    z-index: 1;
    transition: all 0.3s ease;
}

.ultra-modern-secondary-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ultra-modern-secondary-btn:hover .btn-border {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.ultra-modern-secondary-btn:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* Ultra Modern Hero Stats */
.ultra-modern-hero-stats {
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-content .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-content .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-trend i {
    font-size: 0.8rem;
}

/* Ultra Modern Hero Visual */
.ultra-modern-hero-visual {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.ultra-modern-trading-dashboard {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.dashboard-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.05));
    z-index: 1;
}

.dashboard-glass-container > * {
    position: relative;
    z-index: 2;
}

/* Ultra Modern Dashboard Header */
.ultra-modern-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.dashboard-info .dashboard-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.dashboard-info .dashboard-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Ultra Modern Performance Display */
.ultra-modern-performance-display {
    margin-bottom: 2rem;
}

.performance-main {
    text-align: center;
    margin-bottom: 1.5rem;
}

.performance-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.performance-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
}

.percentage {
    color: #4ade80;
    font-size: 1.25rem;
    font-weight: 700;
}

.performance-chart {
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

/* Ultra Modern Traders Preview */
.ultra-modern-traders-preview {
    margin-bottom: 2rem;
}

.traders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.traders-header h6 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.view-all {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #ff6b35;
}

.traders-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Hero Trader Items */
.hero-trader-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-trader-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
}

.hero-trader-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

.trader-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(13, 17, 23, 0.8);
}

.trader-status.active {
    background: #4ade80;
}

.hero-trader-info {
    flex: 1;
}

.hero-trader-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.hero-trader-profit {
    color: #4ade80;
    font-weight: 700;
    font-size: 0.85rem;
}

.hero-trader-action {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.hero-trader-item:hover .hero-trader-action {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Ultra Modern Quick Actions */
.ultra-modern-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action-btn.primary {
    background: var(--gradient-orange-black-yellow);
    color: white;
}

.quick-action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
}

.quick-action-btn.primary:hover {
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.quick-action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

/* Dashboard Floating Elements */
.dashboard-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    animation: float-card 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -15%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: -4s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(5px); }
    66% { transform: translateY(5px) translateX(-5px); }
}

/* Ultra Modern Whitepaper Section */
.ultra-modern-whitepaper-section {
    padding: 4rem 0;
    position: relative;
    background: 
        radial-gradient(circle at 60% 40%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 40% 60%, rgba(255, 112, 67, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 138, 101, 0.08) 0%, transparent 60%),
        #000000;
    overflow: hidden;
}

.whitepaper-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.whitepaper-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}

.whitepaper-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}

.ultra-modern-whitepaper-content {
    position: relative;
    z-index: 10;
    padding: 1.5rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* Ultra Modern Section Badge */
.ultra-modern-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.ultra-modern-section-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ultra-modern-section-badge .badge-content {
    position: relative;
}

.ultra-modern-section-badge .badge-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 20px;
    background: var(--primary-color);
    filter: blur(15px);
    opacity: 0.3;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Ultra Modern Whitepaper Title */
.ultra-modern-whitepaper-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.ultra-modern-whitepaper-title .title-main {
    display: block;
    background: var(--gradient-orange-black-yellow);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.ultra-modern-whitepaper-title .title-sub {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7em;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Ultra Modern Coming Soon Badge */
.ultra-modern-coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 165, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.coming-soon-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.coming-soon-content .coming-soon-text {
    color: #ffa500;
    font-weight: 700;
    font-size: 0.95rem;
}

.coming-soon-date {
    color: rgba(255, 165, 0, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
}

.coming-soon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 20px;
    background: #ffa500;
    filter: blur(15px);
    opacity: 0.3;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Ultra Modern Whitepaper Description */
.ultra-modern-whitepaper-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Ultra Modern Features List */
.ultra-modern-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ultra-modern-features-list .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    text-align: left;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ultra-modern-features-list .feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.ultra-modern-features-list .feature-icon {
    width: 50px;
    height: 50px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ultra-modern-features-list .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ultra-modern-features-list .feature-item:hover::before {
    opacity: 1;
}

.ultra-modern-features-list .feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 107, 53, 0.3);
}

.ultra-modern-features-list .feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ultra-modern-features-list .feature-item .feature-content {
    flex: 1;
}

.ultra-modern-features-list .feature-item .feature-content h6 {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ultra-modern-features-list .feature-item .feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Ultra Modern Whitepaper Actions */
.ultra-modern-whitepaper-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ultra-modern-download-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    cursor: not-allowed;
}

.ultra-modern-download-btn .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #666, #888);
    border-radius: 50px;
    z-index: 1;
}

.ultra-modern-download-btn .btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-disabled-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 4;
}

.ultra-modern-notify-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ultra-modern-notify-btn .btn-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 50px;
    z-index: 1;
    transition: all 0.3s ease;
}

.ultra-modern-notify-btn .btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ultra-modern-notify-btn .btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ultra-modern-notify-btn .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: btn-particles 2s ease-in-out infinite;
}

.ultra-modern-notify-btn .particle:nth-child(1) {
    top: -15px;
    left: -8px;
    animation-delay: 0s;
}

.ultra-modern-notify-btn .particle:nth-child(2) {
    bottom: -15px;
    right: -8px;
    animation-delay: 1s;
}

.ultra-modern-notify-btn:hover .btn-border {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.ultra-modern-notify-btn:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* Ultra Modern Whitepaper Visual */
.ultra-modern-whitepaper-visual {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.ultra-modern-document-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    height: 500px;
}

.document-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.document-page {
    position: absolute;
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.page-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.page-2 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 2;
    opacity: 0.8;
}

.page-3 {
    top: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    z-index: 1;
    opacity: 0.6;
}

.document-page:hover {
    transform: translateX(-50%) translateY(-10px) rotate(0deg);
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.page-number {
    background: var(--gradient-orange-black-yellow);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.page-title {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.copyminds-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 700;
}

.copyminds-logo i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.document-badge {
    background: var(--gradient-orange-black-yellow);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.main-title h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.main-title p {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
}

.content-preview {
    margin-top: 2rem;
}

.content-block,
.content-line {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.content-block.short,
.content-line.short {
    width: 60%;
}

.content-block.medium,
.content-line.medium {
    width: 80%;
}

.document-coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Whitepaper Floating Stats */
.whitepaper-floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    animation: float-stat 8s ease-in-out infinite;
}

.floating-stat i {
    color: var(--primary-color);
}

.stat-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.stat-2 {
    top: 60%;
    left: -15%;
    animation-delay: -2.5s;
}

.stat-3 {
    bottom: 15%;
    right: -5%;
    animation-delay: -5s;
}

@keyframes float-stat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-15px) translateX(8px); }
    66% { transform: translateY(8px) translateX(-8px); }
}

/* Responsive Whitepaper */
@media (max-width: 768px) {
    .ultra-modern-whitepaper-section {
        padding: 4rem 0;
    }
    
    .ultra-modern-whitepaper-title {
        font-size: 2.5rem;
    }
    
    .ultra-modern-whitepaper-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .document-page {
        width: 250px;
        height: 350px;
        padding: 1.5rem;
    }
    
    .ultra-modern-features-list .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .ultra-modern-features-list .feature-item .feature-icon {
        align-self: center;
    }
    
    .ultra-modern-section-badge,
    .ultra-modern-coming-soon-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 0.875rem;
    pointer-events: none;
}

/* Modern Form Select Dropdown Options */
.modern-form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
    cursor: pointer;
}

.modern-form-select option {
    background: var(--surface-color) !important;
    color: var(--text-primary) !important;
    padding: 0.75rem 1rem !important;
    border: none !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

.modern-form-select option:hover,
.modern-form-select option:focus,
.modern-form-select option:checked {
    background: linear-gradient(135deg, rgba(30, 148, 245, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%) !important;
    color: var(--primary-color) !important;
}

.modern-form-select option:disabled {
    background: rgba(48, 54, 61, 0.3) !important;
    color: var(--text-muted) !important;
}

/* Select dropdown for different browsers */
.modern-form-select::-ms-expand {
    display: none;
}

/* Firefox specific styling */
@-moz-document url-prefix() {
    .modern-form-select {
        color: var(--text-primary);
        background: #000000;
    }
    
    .modern-form-select option {
        background: #000000;
        color: var(--text-primary);
    }
    
    .modern-form-select option:checked {
        background: var(--primary-color);
        color: var(--background-dark);
    }
}

/* WebKit browsers (Chrome, Safari, Edge) */
.modern-form-select::-webkit-scrollbar {
    width: 8px;
}

.modern-form-select::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 4px;
}

.modern-form-select::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.modern-form-select::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Flag-only button styling */
.modern-language-btn.flag-only {
    padding: 1.5rem;
    min-height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8) 0%, rgba(22, 27, 34, 0.6) 100%);
    border: 1px solid rgba(48, 54, 61, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.modern-language-btn.flag-only:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

/* Flag image styling */
.flag-image {
    width: 48px;
    height: 36px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.modern-language-btn:hover .flag-image {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Active state for flag-only buttons */
.modern-language-btn.flag-only.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.modern-language-btn.flag-only.active .flag-image {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Remove old language elements for flag-only buttons */
.modern-language-btn.flag-only .language-flag,
.modern-language-btn.flag-only .language-info,
.modern-language-btn.flag-only .language-check {
    display: none;
}

/* Modern Footer Section */
.modern-footer-section {
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.6);
    border-radius: 20px;
    margin: 2rem;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3), 
                0 0 100px rgba(255, 107, 53, 0.1),
                inset 0 0 20px rgba(255, 107, 53, 0.1);
}

.modern-footer-section::before {
    display: none;
}

.modern-footer-section .container {
    position: relative;
    z-index: 2;
}

/* Footer Logo */
.footer-logo-container {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Footer Brand */

.footer-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    max-width: 400px;
}

.footer-contact {
    margin: 1rem 0;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-email i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.footer-stat-item .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.footer-stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Columns */
.footer-column {
    margin-bottom: 2rem;
}

.footer-column-title {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Modern Social Links */
.modern-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.modern-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.modern-social-link i {
    width: 20px;
    font-size: 1.1rem;
}

.modern-social-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.modern-social-link.twitter:hover {
    color: #1da1f2;
}

.modern-social-link.telegram:hover {
    color: #0088cc;
}

.modern-social-link.discord:hover {
    color: #7289da;
}

.modern-social-link.linkedin:hover {
    color: #0077b5;
}

.modern-social-link.medium:hover {
    color: #00ab6c;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 2rem;
}

.newsletter-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: linear-gradient(45deg, var(--primary-color), #e55a2b);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--bg-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-copyright {
    text-align: left;
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-style: italic;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.security-badge,
.ssl-badge,
.compliance-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.security-badge i,
.ssl-badge i,
.compliance-badge i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.security-badge:hover,
.ssl-badge:hover,
.compliance-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .modern-footer-section {
        padding: 3rem 1rem 1.5rem;
        margin: 1rem;
    }
    
    .footer-section {
        margin: 1rem;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ===== ULTRA MODERN HERO SECTION ===== */
.ultra-modern-hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
    padding: 120px 0 80px;
}

/* Hero Background */
.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}

/* Hero Particles System */
.hero-particles-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}

.particle-layer:nth-child(2) {
    animation-delay: -5s;
    animation-duration: 25s;
}

.particle-layer:nth-child(3) {
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes float-particles {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-40px) translateX(-5px); }
    75% { transform: translateY(-20px) translateX(-10px); }
    100% { transform: translateY(0) translateX(0); }
}

/* Hero Geometric Shapes */
.hero-geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: transparent;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: -10s;
}

@keyframes float-shape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Hero Content Container */
.ultra-modern-hero-section .container {
    position: relative;
    z-index: 10;
}

.ultra-modern-hero-content {
    padding: 2rem 0;
}

/* Hero Badge */
.ultra-modern-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.ultra-modern-hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.badge-content {
    position: relative;
}

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

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Hero Slogan Styles */
.hero-slogan-container {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    animation: slogan-fade-in 1.5s ease-out 0.8s forwards;
}

.slogan-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    position: relative;
}

.slogan-main {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    position: relative;
}

.slogan-accent {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.slogan-decoration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0.6;
}

.decoration-line {
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    position: relative;
}

.decoration-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    animation: line-glow 2s ease-in-out infinite;
}

.decoration-dot {
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    animation: dot-pulse 2s ease-in-out infinite;
}

.decoration-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: dot-ring 2s ease-in-out infinite;
}

/* Slogan Animations */
@keyframes slogan-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes line-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

@keyframes dot-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes dot-ring {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

/* Hero Title */
.ultra-modern-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.title-line {
    display: block;
    opacity: 0;
    animation: title-reveal 1s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.gradient-title {
    background: linear-gradient(45deg, var(--primary-color), #ff6b35, #ff6b6b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes title-reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Subtitle */
.ultra-modern-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Hero Actions */
.ultra-modern-hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.ultra-modern-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, var(--primary-color), #e55a2b);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ultra-modern-primary-btn .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.ultra-modern-primary-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ultra-modern-primary-btn .btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ultra-modern-primary-btn .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: btn-particles 2s linear infinite;
}

.ultra-modern-primary-btn .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.ultra-modern-primary-btn .particle:nth-child(2) {
    top: 80%;
    left: 80%;
    animation-delay: 0.7s;
}

.ultra-modern-primary-btn .particle:nth-child(3) {
    top: 50%;
    left: 90%;
    animation-delay: 1.4s;
}

@keyframes btn-particles {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.ultra-modern-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.ultra-modern-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ultra-modern-secondary-btn .btn-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.ultra-modern-secondary-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ultra-modern-secondary-btn:hover .btn-border {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.ultra-modern-secondary-btn:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Stats */
.ultra-modern-hero-stats {
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-content .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-content .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-trend i {
    font-size: 0.8rem;
}

/* Hero Visual Section */
.ultra-modern-hero-visual {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.ultra-modern-trading-dashboard {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.dashboard-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.05));
    z-index: 1;
}

.dashboard-glass-container > * {
    position: relative;
    z-index: 2;
}

/* Dashboard Header */
.ultra-modern-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.dashboard-info .dashboard-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.dashboard-info .dashboard-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Performance Display */
.ultra-modern-performance-display {
    margin-bottom: 2rem;
}

.performance-main {
    text-align: center;
    margin-bottom: 1.5rem;
}

.performance-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.performance-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
}

.percentage {
    color: #4ade80;
    font-size: 1.25rem;
    font-weight: 700;
}

.performance-chart {
    height: 100px;
    margin-top: 1rem;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

/* Compact Dashboard Styles */
.compact-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compact-dashboard-header .header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.compact-dashboard-header .dashboard-logo {
    width: 32px;
    height: 32px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compact-dashboard-header .dashboard-logo i {
    font-size: 0.9rem;
    color: white;
}

.compact-dashboard-header .dashboard-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.compact-dashboard-header .dashboard-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1;
}

.compact-dashboard-header .dashboard-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.compact-dashboard-header .live-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 600;
}

.compact-dashboard-header .live-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Compact Performance Display */
.compact-performance-display {
    margin-bottom: 1.5rem;
}

.compact-performance-header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.compact-performance-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.compact-performance-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.compact-performance-value .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.compact-performance-value .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.compact-performance-value .percentage {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4ade80;
    margin-left: 0.3rem;
}

.compact-performance-chart {
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
}

.compact-performance-chart canvas {
    width: 100%;
    height: 100%;
}

/* Traders Preview */
.ultra-modern-traders-preview {
    margin-bottom: 2rem;
}

.traders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.traders-header h6 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.view-all {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

.view-all:hover {
    color: #e55a2b;
}

.traders-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
}

/* Compact Metrics Container - Minimal */
.compact-metrics-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
}

.compact-metric-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.compact-metric-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 107, 53, 0.15);
}

.compact-metric-icon {
    width: 20px;
    height: 20px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compact-metric-icon i {
    font-size: 0.6rem;
    color: white;
}

.compact-metric-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.compact-metric-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.compact-metric-label {
    font-size: 0.55rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
}

.compact-metric-trend {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    color: #4ade80;
    font-size: 0.6rem;
    font-weight: 600;
}

.compact-metric-trend i {
    font-size: 0.45rem;
}

/* Minimal Chart Container */
.minimal-chart-container {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
}

.minimal-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.minimal-chart-title {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.minimal-chart-value {
    font-size: 0.65rem;
    font-weight: 600;
    color: #4ade80;
}

.minimal-chart-wrapper {
    position: relative;
    height: 40px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.minimal-chart-wrapper canvas {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.hero-trader-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-trader-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.hero-trader-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

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

.trader-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
}

.trader-status.active {
    background: #4ade80;
}

.hero-trader-info {
    flex: 1;
}

.hero-trader-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.hero-trader-profit {
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-trader-action {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-trader-item:hover .hero-trader-action {
    opacity: 1;
}

/* Quick Actions */
.ultra-modern-quick-actions {
    display: flex;
    gap: 1rem;
}

.quick-action-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quick-action-btn.primary {
    background: var(--gradient-orange-black-yellow);
    color: var(--bg-primary);
}

.quick-action-btn.secondary {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
}

.quick-action-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.quick-action-btn.secondary:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

/* Floating Elements */
.dashboard-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Dashboard Trader List Design */
.marketplace-grid .trader-card {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.98) 0%, rgba(33, 38, 45, 0.95) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.marketplace-grid .trader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.marketplace-grid .trader-card:hover::before {
    opacity: 1;
}

.marketplace-grid .trader-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
}

/* Trader Info Section */
.trader-info-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 300px;
    flex: 1;
}

.trader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 107, 53, 0.2);
    flex-shrink: 0;
}

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

.trader-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trader-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.trader-company {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.trader-company i {
    color: #10B981;
    font-size: 0.9rem;
}

.trader-currency {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.trader-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.trader-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Trader Stats Section */
.trader-stats-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 200px;
    align-items: center;
}

.trader-amount {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.trader-amount i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.trader-followers,
.trader-experience {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Performance Section */
.trader-performance-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 220px;
}

.performance-roi {
    font-size: 1.6rem;
    font-weight: 700;
    color: #10B981;
}

.performance-chart {
    width: 150px;
    height: 50px;
}

.performance-drawdown {
    font-size: 1rem;
    color: #EF4444;
}

/* Risk Section */
.trader-risk-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 150px;
}

.risk-score {
    margin-bottom: 0.8rem;
}

.risk-badge {
    background: #ff6b35;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
}

.risk-meter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.risk-gauge {
    width: 100px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.gauge-fill {
    height: 100%;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.risk-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Action Section */
.trader-action-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 180px;
}

.invest-btn {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.invest-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.invest-btn.subscribed {
    background: #10B981;
}

.performance-fee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.performance-fee i {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .trader-row {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .trader-info-section,
    .trader-stats-section,
    .trader-performance-section,
    .trader-risk-section,
    .trader-action-section {
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .trader-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .trader-info-section {
        flex-direction: column;
        text-align: center;
    }
    
    .trader-stats-section,
    .trader-performance-section,
    .trader-risk-section,
    .trader-action-section {
        align-items: center;
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float-card 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
}

.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    left: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 30%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ultra-modern-hero-section {
        padding: 100px 0 60px;
    }
    
    .ultra-modern-hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .ultra-modern-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ultra-modern-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-glass-container {
        padding: 1.5rem;
    }
    
    .floating-card {
        display: none;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Additional Global Styles */
.btn-icon {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.nav-icon {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.nav-text {
    font-weight: 500;
}

/* Mobile Navigation Improvements */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.navbar-collapse.show .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.nav-link-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Language Modal Improvements */
.modern-language-modal .modal-content {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.modern-language-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.modern-language-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-language-btn:hover::before {
    opacity: 1;
}

.modern-language-btn:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

/* Scrollbar Improvements */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-orange-black-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #e55a2b, var(--primary-color));
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success and Error Messages */
.success-message {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-orange-black-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* Focus States for Accessibility */
button:focus,
a:focus,
input:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .modern-glass-nav,
    .floating-card,
    .hero-particles-system,
    .hero-geometric-shapes {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* ========================================
   SIGN IN & LOGIN PAGES STYLES
   ======================================== */

/* Page Layout */
.signin-page,
.login-page {
    min-height: 100vh;
    position: relative;
    background: #000000;
    overflow-x: hidden;
}

/* Background Elements */
.signin-background,
.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.signin-gradient-overlay,
.login-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 112, 67, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(255, 112, 67, 0.05) 0%, transparent 50%);
}

.signin-particles,
.login-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.signin-particles .particle,
.login-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.signin-particles .particle-1,
.login-particles .particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.signin-particles .particle-2,
.login-particles .particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    background: var(--secondary-color);
}

.signin-particles .particle-3,
.login-particles .particle-3 {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

.signin-particles .particle-4,
.login-particles .particle-4 {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
    background: var(--secondary-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Container */
.signin-container,
.login-container {
    position: relative;
    z-index: 2;
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Cards */
.signin-card,
.login-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.signin-card::before,
.login-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 112, 67, 0.03) 100%);
    z-index: 1;
}

.signin-card > *,
.login-card > * {
    position: relative;
    z-index: 2;
}

/* Headers */
.signin-header,
.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.signin-icon,
.login-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--background-dark);
    font-size: 2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.signin-title,
.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signin-subtitle,
.login-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Forms */
.signin-form,
.login-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: rgba(22, 27, 34, 0.9);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.4;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--secondary-color);
}

/* Buttons */
.signin-btn,
.login-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-orange-black-yellow);
    border: none;
    border-radius: 12px;
    color: var(--background-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.signin-btn:hover,
.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.signin-btn:hover .btn-icon,
.login-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Login Options */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.forgot-password-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--secondary-color);
}

/* Social Login */
.social-login {
    margin-bottom: 2rem;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.divider span {
    background: #000000;
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-btn {
    padding: 0.75rem 1rem;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: rgba(22, 27, 34, 0.9);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.google-btn:hover {
    border-color: #db4437;
    color: #db4437;
}

.github-btn:hover {
    border-color: #333;
    color: #333;
}

/* Footer */
.signin-footer,
.login-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(48, 54, 61, 0.3);
}

.signin-footer-text,
.login-footer-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.signin-footer-link,
.login-footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.signin-footer-link:hover,
.login-footer-link:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .signin-container,
    .login-container {
        padding: 100px 0 40px;
    }
    
    .signin-card,
    .login-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .signin-title,
    .login-title {
        font-size: 2rem;
    }
    
    .signin-icon,
    .login-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
    
    .login-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* ========================================
   DASHBOARD STYLES
   ======================================== */

/* Dashboard Layout */
.dashboard-page {
    min-height: 100vh;
    background: #000000;
    display: flex;
    position: relative;
    overflow-x: hidden;
}

/* Background Elements */
.dashboard-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.dashboard-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 112, 67, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(255, 112, 67, 0.05) 0%, transparent 50%);
}

.dashboard-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dashboard-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.dashboard-particles .particle-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.dashboard-particles .particle-2 {
    top: 70%;
    left: 85%;
    animation-delay: 3s;
    background: var(--secondary-color);
}

.dashboard-particles .particle-3 {
    top: 45%;
    left: 75%;
    animation-delay: 6s;
}

.dashboard-particles .particle-4 {
    top: 85%;
    left: 15%;
    animation-delay: 2s;
    background: var(--secondary-color);
}

/* Sidebar */
.dashboard-sidebar {
    width: 280px;
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border-right: 1px solid rgba(48, 54, 61, 0.6);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.nav-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    text-decoration: none;
}

.nav-item:hover {
    background: transparent;
    color: inherit;
}

.nav-item.active {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.2) 0%, transparent 100%);
    color: var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.nav-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(48, 54, 61, 0.3);
}

.logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #EF4444;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
}

/* Main Content */
.dashboard-main {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.header-left {
    flex: 1;
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.header-btn:hover {
    background: rgba(22, 27, 34, 0.9);
    border-color: var(--primary-color);
}

.notifications-btn {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #EF4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.profile-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Dashboard Controls */
.dashboard-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-container {
    flex: 1;
}

.search-input {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input i {
    position: absolute;
    left: 1rem;
    color: var(--text-secondary);
    z-index: 2;
}

.search-input input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-input input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-input input::placeholder {
    color: var(--text-muted);
}

.filter-container {
    min-width: 200px;
}

.filter-select {
    width: 100%;
    padding: 1rem;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Traders Grid */
.traders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trader-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.trader-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 112, 67, 0.02) 100%);
    z-index: 1;
}

.trader-card > * {
    position: relative;
    z-index: 2;
}

/* Trader Header */
.trader-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.trader-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

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

.trader-info {
    flex: 1;
}

.trader-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.trader-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.roi-stat {
    font-size: 1rem;
    font-weight: 700;
    color: #10B981;
}

.risk-stat {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Trader Chart */
.trader-chart {
    margin-bottom: 1rem;
}

.mini-chart {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 40px;
    padding: 0.5rem;
    background: rgba(22, 27, 34, 0.5);
    border-radius: 8px;
}

.chart-bar {
    flex: 1;
    min-height: 2px;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Trader Details */
.trader-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

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

.detail-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Trader Coins */
.trader-coins {
    margin-bottom: 1rem;
}

.coins-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.coins-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.coin-tag {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Subscribe Button */
.subscribe-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--gradient-orange-black-yellow);
    border: none;
    border-radius: 10px;
    color: var(--background-dark);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.subscribe-btn.subscribed {
    background: linear-gradient(45deg, #10B981, #059669);
}

/* Education Section */
.education-section {
    margin-top: 3rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.education-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 112, 67, 0.1);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.education-image {
    width: 120px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 2rem;
}

.education-content {
    flex: 1;
}

.education-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.education-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--secondary-color);
    color: var(--background-dark);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .traders-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .dashboard-sidebar.open {
        transform: translateX(0);
    }
    
    .dashboard-main {
        margin-left: 0;
        padding: 1rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
    
    .dashboard-controls {
        flex-direction: column;
    }
    
    .traders-grid {
        grid-template-columns: 1fr;
    }
    
    .education-card {
        flex-direction: column;
        text-align: center;
    }
    
    .education-image {
        width: 100px;
        height: 60px;
    }
}

/* ========================================
   TRADERS MARKETPLACE STYLES
   ======================================== */

/* Marketplace Filters */
.marketplace-filters {
    margin-bottom: 2rem;
}

.filter-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    min-width: 150px;
}

.filter-group .filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-group .filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Results Info */
.results-info {
    margin-bottom: 1.5rem;
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Marketplace Grid */
.marketplace-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.marketplace-card {
    padding: 2.5rem;
    min-height: 600px;
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.98) 0%, rgba(33, 38, 45, 0.95) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

/* Enhanced Trader Card */
.marketplace-card .trader-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}

.marketplace-card .trader-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    border: 3px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #10B981;
    border: 2px solid var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.trader-description {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(22, 27, 34, 0.3);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 107, 53, 0.4);
}

.trader-description p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.marketplace-card .trader-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.marketplace-card .detail-item {
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.8) 0%, rgba(33, 38, 45, 0.6) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.marketplace-card .detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.marketplace-card .detail-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marketplace-card .detail-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* Trader Actions */
.trader-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.view-profile-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 112, 67, 0.3);
    border-radius: 10px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.view-profile-btn:hover {
    background: rgba(255, 112, 67, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.marketplace-card .subscribe-btn {
    flex: 1;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-results-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.no-results p {
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design for Marketplace */
@media (max-width: 1200px) {
    .marketplace-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .marketplace-grid {
        grid-template-columns: 1fr;
    }
    
    .marketplace-card {
        padding: 1.5rem;
    }
    
    .marketplace-card .trader-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trader-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .marketplace-card .trader-details {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TRADER PROFILE STYLES
   ======================================== */

/* Profile Header */
.profile-header {
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: rgba(22, 27, 34, 0.9);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

/* Trader Profile Header */
.trader-profile-header {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.trader-profile-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 112, 67, 0.02) 100%);
    z-index: 1;
}

.trader-profile-header > * {
    position: relative;
    z-index: 2;
}

.profile-main {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

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

.verified-badge-large {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: #10B981;
    border: 3px solid var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.profile-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.subscribe-btn-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-orange-black-yellow);
    border: none;
    border-radius: 12px;
    color: var(--background-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.subscribe-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.subscribe-btn-large.subscribed {
    background: linear-gradient(45deg, #10B981, #059669);
}

.copy-trade-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 112, 67, 0.3);
    border-radius: 10px;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.copy-trade-btn:hover {
    background: rgba(255, 112, 67, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(22, 27, 34, 0.5);
    border-radius: 12px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--gradient-orange-black-yellow);
    color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

/* Profile Content */
.profile-content {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 112, 67, 0.02) 100%);
    z-index: 1;
}

.profile-content > * {
    position: relative;
    z-index: 2;
}

/* Overview Tab */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(22, 27, 34, 0.8);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.2rem;
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.stat-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Risk Metrics */
.risk-metrics {
    margin-top: 2rem;
}

.risk-metrics h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.risk-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 10px;
}

.risk-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.risk-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Performance Tab */
.performance-chart {
    margin-bottom: 3rem;
}

.performance-chart h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.chart-container {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    padding: 2rem;
}

.mini-chart-large {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 120px;
    padding: 1rem;
    background: rgba(13, 17, 23, 0.5);
    border-radius: 10px;
}

.chart-bar-large {
    flex: 1;
    min-height: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.monthly-performance h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.monthly-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.monthly-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 10px;
}

.month-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.month-pnl {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.month-pnl.positive {
    color: #10B981;
}

.month-pnl.negative {
    color: #EF4444;
}

.month-trades {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Trades Tab */
.trades-tab h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.trades-table {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr 1fr 0.8fr 0.8fr 1fr 1.5fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(13, 17, 23, 0.8);
    border-bottom: 1px solid rgba(48, 54, 61, 0.4);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr 1fr 0.8fr 0.8fr 1fr 1.5fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.2);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 107, 53, 0.05);
}

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

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

.type-cell {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price-cell {
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
}

.pnl-cell {
    font-weight: 600;
}

.pnl-cell.positive {
    color: #10B981;
}

.pnl-cell.negative {
    color: #EF4444;
}

.size-cell {
    color: var(--text-secondary);
}

.duration-cell {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.time-cell {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Portfolio Tab */
.portfolio-tab h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.allocation-chart {
    margin-bottom: 3rem;
}

.allocation-item {
    margin-bottom: 1.5rem;
}

.allocation-bar {
    height: 20px;
    background: rgba(22, 27, 34, 0.6);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.allocation-fill {
    height: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.allocation-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.coin-percentage {
    font-weight: 600;
    color: var(--primary-color);
}

.coin-value {
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

.coins-used h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.coins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.coin-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.coin-card:hover {
    background: rgba(22, 27, 34, 0.8);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.coin-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.2rem;
}

.coin-card .coin-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive Design for Profile */
@media (max-width: 1200px) {
    .trader-profile-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-main {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-stats {
        justify-content: center;
    }
    
    .profile-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .profile-tabs {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .table-header span,
    .table-row span {
        display: flex;
        justify-content: space-between;
    }
    
    .table-header span::before,
    .table-row span::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-secondary);
    }
    
    .coins-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

/* ========================================
   COPY TRADE MODAL STYLES
   ======================================== */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Copy Trade Modal */
.copy-trade-modal {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.98) 0%, rgba(33, 38, 45, 0.95) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
    position: relative;
}

.copy-trade-modal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 112, 67, 0.03) 100%);
    z-index: 1;
}

.copy-trade-modal > * {
    position: relative;
    z-index: 2;
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}

.modal-title-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-title-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.modal-close-btn {
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    color: #EF4444;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(48, 54, 61, 0.3);
    z-index: 1;
}

.step.active:not(:last-child)::after {
    background: var(--primary-color);
}

.step-number {
    width: 30px;
    height: 30px;
    background: rgba(48, 54, 61, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.step.active .step-number {
    background: var(--gradient-orange-black-yellow);
    color: var(--background-dark);
}

.step span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.step.active span {
    color: var(--primary-color);
}

/* Modal Step Content */
.modal-step {
    padding: 2rem;
}

/* Trader Info Card */
.trader-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.trader-info-card .trader-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

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

.trader-info-card .verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #10B981;
    border: 2px solid var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.trader-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.trader-metrics {
    display: flex;
    gap: 1rem;
}

.roi-metric {
    font-size: 1rem;
    font-weight: 600;
    color: #10B981;
}

.risk-metric {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Allocation Section */
.allocation-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.allocation-section p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.allocation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.allocation-option {
    position: relative;
}

.allocation-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.allocation-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(22, 27, 34, 0.6);
    border: 2px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.allocation-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.allocation-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.allocation-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.custom-allocation {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
}

.custom-allocation label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.custom-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.custom-input-group span {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Settings Section */
.settings-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.mode-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mode-option {
    position: relative;
}

.mode-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mode-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(22, 27, 34, 0.6);
    border: 2px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.mode-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.2rem;
}

.mode-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.mode-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Risk Settings */
.risk-settings h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.risk-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.risk-control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.risk-control label {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.risk-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.risk-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.risk-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.risk-input-group span {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Confirmation Section */
.confirmation-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.summary-card {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(48, 54, 61, 0.2);
}

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

.summary-item span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.summary-item span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

/* Terms Section */
.terms-section {
    margin-bottom: 2rem;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
    margin-top: 0.1rem;
}

.terms-checkbox label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.terms-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #EF4444;
}

.warning-box i {
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.warning-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.warning-box p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Modal Footer */
.modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(48, 54, 61, 0.3);
}

.footer-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-orange-black-yellow);
    color: var(--background-dark);
}

.btn-primary:hover:not(:disabled) {
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(48, 54, 61, 0.6);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: transparent;
    border-color: rgba(48, 54, 61, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }
    
    .copy-trade-modal {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-step {
        padding: 1.5rem;
    }
    
    .allocation-options {
        grid-template-columns: 1fr;
    }
    
    .risk-controls {
        grid-template-columns: 1fr;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   EDUCATION & COMMUNITY STYLES
   ======================================== */

/* Education Page */
.education-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.education-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.education-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Education Tabs */
.education-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(22, 27, 34, 0.5);
    border-radius: 12px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.education-tabs .tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.education-tabs .tab-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.education-tabs .tab-btn.active {
    background: var(--gradient-orange-black-yellow);
    color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

/* Category Filter */
.category-filter {
    margin-bottom: 2rem;
}

.category-filter h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.category-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: rgba(22, 27, 34, 0.8);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-btn.active {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

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

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

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

.course-level {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-completed {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 30px;
    height: 30px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.course-content {
    padding: 1.5rem;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.course-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #F59E0B;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.instructor-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.instructor-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.course-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.course-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.course-price .free {
    color: #10B981;
    font-weight: 600;
}

.course-price .price {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.course-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-orange-black-yellow);
    border: none;
    border-radius: 10px;
    color: var(--background-dark);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.course-btn.completed {
    background: linear-gradient(45deg, #10B981, #059669);
}

/* Quizzes Grid */
.quizzes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.quiz-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 112, 67, 0.1);
    transition: all 0.3s ease;
}

.quiz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 112, 67, 0.2);
}

.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.quiz-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.quiz-difficulty {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.quiz-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.quiz-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quiz-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.quiz-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(22, 27, 34, 0.6);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.score-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.score-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.quiz-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border: none;
    border-radius: 10px;
    color: var(--background-dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 112, 67, 0.4);
}

/* Certificates Grid */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.certificate-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.certificate-card.earned {
    border-color: rgba(16, 185, 129, 0.3);
}

.certificate-card.locked {
    opacity: 0.6;
    border-color: rgba(107, 114, 128, 0.3);
}

.certificate-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.certificate-card.locked .certificate-icon {
    background: rgba(107, 114, 128, 0.3);
    color: var(--text-muted);
}

.certificate-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.certificate-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.certificate-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.certificate-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.certificate-progress {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.certificate-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-orange-black-yellow);
    border: none;
    border-radius: 10px;
    color: var(--background-dark);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.certificate-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.certificate-btn.locked {
    background: rgba(107, 114, 128, 0.3);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* Community Page */
.community-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.community-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.new-post-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-orange-black-yellow);
    border: none;
    border-radius: 10px;
    color: var(--background-dark);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.new-post-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Community Content */
.community-content {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 2rem;
}

/* Community Sidebar */
.community-sidebar {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    height: fit-content;
}

.community-sidebar h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.category-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.category-item.active {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
}

.category-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(48, 54, 61, 0.6);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Posts Feed */
.posts-feed {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}

.feed-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.feed-filters {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Posts List */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.post-card {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.post-card:hover {
    background: rgba(22, 27, 34, 0.8);
    border-color: rgba(255, 107, 53, 0.3);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.post-timestamp {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.category-tag {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: capitalize;
}

.post-content {
    margin-bottom: 1.5rem;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.post-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 112, 67, 0.1);
    border: 1px solid rgba(255, 112, 67, 0.3);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-stats {
    display: flex;
    gap: 1rem;
}

.stat-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.stat-btn.liked {
    color: #EF4444;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 112, 67, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Community Rightbar */
.community-rightbar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rightbar-section {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
}

.rightbar-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.traders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trader-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(22, 27, 34, 0.6);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.trader-item:hover {
    background: rgba(22, 27, 34, 0.8);
}

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

.trader-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trader-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.trader-roi {
    font-size: 0.8rem;
    color: #10B981;
    font-weight: 500;
}

.follow-btn {
    width: 24px;
    height: 24px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.follow-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.topic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(22, 27, 34, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.topic-item:hover {
    background: rgba(22, 27, 34, 0.8);
}

.topic-name {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.topic-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stats-grid .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(22, 27, 34, 0.6);
    border-radius: 10px;
}

.stats-grid .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stats-grid .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .community-content {
        grid-template-columns: 200px 1fr 250px;
        gap: 1.5rem;
    }
    
    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .education-header,
    .community-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .education-title,
    .community-title {
        font-size: 2rem;
    }
    
    .education-tabs {
        flex-direction: column;
    }
    
    .category-buttons {
        flex-direction: column;
    }
    
    .courses-grid,
    .quizzes-grid,
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .community-content {
        grid-template-columns: 1fr;
    }
    
    .community-sidebar,
    .community-rightbar {
        order: 2;
    }
    
    .posts-feed {
        order: 1;
    }
    
    .post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .post-stats {
        width: 100%;
        justify-content: space-around;
    }
}

/* ========================================
   PROFILE PAGE STYLES
   ======================================== */

/* Profile Header */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.profile-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Profile Overview Card */
.profile-overview-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
    margin-bottom: 2rem;
    position: relative;
}

.profile-banner {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(255, 112, 67, 0.6) 100%);
}

.profile-avatar-large {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--background-dark);
    overflow: hidden;
    z-index: 2;
}

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

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: #10B981;
    border: 3px solid var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.profile-info {
    padding: 2rem;
    text-align: center;
}

.profile-main {
    margin-bottom: 1.5rem;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.profile-email {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
}

.profile-location,
.profile-join-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 0.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.profile-bio {
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.profile-bio p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(22, 27, 34, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(48, 54, 61, 0.4);
}

.profile-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.profile-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.profile-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.edit-profile-btn,
.share-profile-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.edit-profile-btn {
    background: var(--gradient-orange-black-yellow);
    color: var(--background-dark);
}

.edit-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.share-profile-btn {
    background: transparent;
    border: 1px solid rgba(48, 54, 61, 0.6);
    color: var(--text-primary);
}

.share-profile-btn:hover {
    background: rgba(255, 112, 67, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(22, 27, 34, 0.5);
    border-radius: 12px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.profile-tabs .tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-tabs .tab-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.profile-tabs .tab-btn.active {
    background: var(--gradient-orange-black-yellow);
    color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

/* Profile Content */
.profile-content {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1);
}

/* Overview Content */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
}

.overview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.performance-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.performance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}

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

.performance-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.performance-value {
    font-weight: 600;
    font-size: 1.1rem;
}

.performance-value.positive {
    color: #10B981;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(13, 17, 23, 0.6);
    border-radius: 10px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1rem;
}

.activity-content {
    flex: 1;
}

.activity-text {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.activity-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(13, 17, 23, 0.6);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(22, 27, 34, 0.8);
    color: var(--text-primary);
}

.social-link.twitter:hover {
    color: #1DA1F2;
}

.social-link.telegram:hover {
    color: #0088CC;
}

.social-link.discord:hover {
    color: #5865F2;
}

/* Portfolio Content */
.portfolio-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.summary-card h3 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.summary-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.summary-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.summary-change.positive {
    color: #10B981;
}

.summary-change.negative {
    color: #EF4444;
}

.portfolio-holdings h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.holdings-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.holding-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 12px;
}

.coin-info {
    display: flex;
    flex-direction: column;
}

.coin-symbol {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.coin-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.coin-amount,
.coin-value,
.coin-percentage {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: right;
}

/* Trading History */
.trades-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.trades-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.trades-filters {
    display: flex;
    gap: 0.5rem;
}

.trades-filters .filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trades-filters .filter-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.trades-filters .filter-btn.active {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.trades-table {
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 15px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(13, 17, 23, 0.8);
    border-bottom: 1px solid rgba(48, 54, 61, 0.4);
}

.table-header .table-cell {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.2);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(22, 27, 34, 0.8);
}

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

.table-cell {
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.trade-type {
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.trade-type.long {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.trade-type.short {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.pnl {
    font-weight: 600;
}

.pnl.positive {
    color: #10B981;
}

.pnl.negative {
    color: #EF4444;
}

.status {
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.open {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
}

.status.closed {
    background: rgba(107, 114, 128, 0.2);
    color: #6B7280;
}

/* Copy Trading */
.copytrading-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.copied-traders h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.traders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trader-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 12px;
}

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

.trader-info {
    flex: 1;
}

.trader-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.trader-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.allocation {
    color: var(--text-secondary);
}

.profit {
    font-weight: 600;
}

.profit.positive {
    color: #10B981;
}

.profit.negative {
    color: #EF4444;
}

.trader-status .status {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.trader-status .status.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

/* Settings */
.settings-section {
    margin-bottom: 2rem;
}

.settings-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.settings-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 12px;
}

.setting-item label {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.setting-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.settings-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(22, 27, 34, 0.6);
    border: 1px solid rgba(48, 54, 61, 0.4);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.settings-btn:hover {
    background: rgba(22, 27, 34, 0.8);
    border-color: var(--primary-color);
}

.settings-btn i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-summary,
    .copytrading-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .profile-title {
        font-size: 2rem;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
    }
    
    .profile-actions {
        flex-direction: column;
    }
    
    .profile-tabs {
        flex-direction: column;
    }
    
    .portfolio-summary,
    .copytrading-summary {
        grid-template-columns: 1fr;
    }
    
    .holding-item {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .coin-percentage {
        grid-column: 1 / -1;
        text-align: left !important;
        margin-top: 0.5rem;
    }
    
    .trades-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .table-header .table-cell:nth-child(n+3),
    .table-row .table-cell:nth-child(n+3) {
        display: none;
    }
}


/* Waitlist Page Styles */
.waitlist-page {
    min-height: 100vh;
    background: #000000;
    position: relative;
    overflow-x: hidden;
}

.waitlist-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.waitlist-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(255, 112, 67, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(255, 138, 101, 0.08) 0%, transparent 60%);
    opacity: 0.8;
}

.waitlist-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.waitlist-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.waitlist-particles .particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.waitlist-particles .particle-2 {
    top: 40%;
    left: 90%;
    animation-delay: 2s;
}

.waitlist-particles .particle-3 {
    top: 70%;
    left: 20%;
    animation-delay: 4s;
}

.waitlist-particles .particle-4 {
    top: 80%;
    left: 70%;
    animation-delay: 6s;
}

.waitlist-container {
    position: relative;
    z-index: 1;
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.waitlist-card {
    background: linear-gradient(145deg, rgba(22, 27, 34, 0.95) 0%, rgba(33, 38, 45, 0.9) 100%);
    border: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.waitlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 80px rgba(255, 107, 53, 0.2);
}

.waitlist-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.waitlist-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange-black-yellow);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--background-dark);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.waitlist-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.waitlist-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(48, 54, 61, 0.3);
    border-bottom: 1px solid rgba(48, 54, 61, 0.3);
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.waitlist-form {
    margin-bottom: 2rem;
}

.waitlist-benefits {
    margin-bottom: 2rem;
}

.waitlist-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.waitlist-footer {
    text-align: center;
}

.waitlist-footer-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.waitlist-footer-text i {
    color: var(--primary-color);
}

.waitlist-btn {
    background: var(--gradient-orange-black-yellow);
    border: none;
    color: var(--background-dark);
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.waitlist-btn .btn-icon {
    transition: transform 0.3s ease;
}

.waitlist-btn:hover .btn-icon {
    transform: translateX(5px);
}

.modern-brand .brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Responsive Design for Waitlist Page */
@media (max-width: 768px) {
    .waitlist-container {
        padding: 6rem 1rem 2rem;
    }
    
    .waitlist-card {
        padding: 2rem;
    }
    
    .waitlist-title {
        font-size: 2rem;
    }
    
    .waitlist-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .waitlist-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

