:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(20, 20, 20, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent-red: #e82127;
    --accent-red-dark: #b81a1f;
    --accent-cyan: #00d4ff;
    --accent-gold: #ffd700;
    --accent-green: #00ff88;
    --accent-purple: #a855f7;
    --accent-orange: #ff9500;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    --gradient-red: linear-gradient(135deg, #e82127 0%, #ff4757 100%);
    --gradient-cyan: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    --gradient-mixed: linear-gradient(135deg, #e82127 0%, #ff4757 50%, #ffd700 100%);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-car {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 20px;
    animation: pulse 1s ease infinite;
}

.loader-track {
    width: 200px;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--gradient-red);
    border-radius: 2px;
    animation: loading 1.5s ease infinite;
}

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

/* Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.gradient-text {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-green { color: var(--accent-green); }
.text-cyan { color: var(--accent-cyan); }
.text-gold { color: var(--accent-gold); }

/* Buttons */
.btn-primary {
    background: var(--gradient-red);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary::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: var(--transition);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 33, 39, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(232, 33, 39, 0.05);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 6, 11, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 6, 11, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-display);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6,6,11,0.95) 0%, rgba(6,6,11,0.7) 50%, rgba(6,6,11,0.85) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 2rem 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 33, 39, 0.1);
    border: 1px solid rgba(232, 33, 39, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.elon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 8px 16px 8px 8px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease 0.3s backwards;
}

.elon-badge-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-red);
}

.elon-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

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

.elon-badge-role {
    font-size: 0.7rem;
    color: var(--accent-red);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title .line {
    display: block;
}

.hero-title .line-1 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

.hero-title .line-2 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero-title .line-3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-red);
    font-family: var(--font-display);
}

.stat-suffix {
    font-size: 1.2rem;
    color: var(--accent-red);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInLeft 1s ease 0.4s backwards;
}

.stock-card {
    padding: 1.75rem;
    position: relative;
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.company-logo {
    width: 55px;
    height: 55px;
    background: var(--gradient-red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(232, 33, 39, 0.4);
}

.company-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.ticker {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    background: rgba(232, 33, 39, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.stock-price {
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    font-family: var(--font-display);
    transition: var(--transition-fast);
}

.price-change {
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.price-change.positive { color: var(--accent-green); }
.price-change.negative { color: var(--accent-red); }

.stock-chart {
    height: 140px;
    margin-bottom: 1.5rem;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.card-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
}

.metric {
    text-align: center;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.metric-value {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 30px;
    right: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 60px;
    left: -50px;
    animation-delay: 1.5s;
}

.card-3 {
    top: 50%;
    right: -60px;
    animation-delay: 3s;
}

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

.floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.floating-icon.green {
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent-green);
}

.floating-icon.gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
}

.floating-icon.cyan {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-cyan);
}

.floating-info {
    display: flex;
    flex-direction: column;
}

.floating-value {
    font-weight: 700;
    font-size: 0.95rem;
}

.floating-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeInUp 1s ease 1.2s backwards;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.5; top: 18px; }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* Marquee */
.marquee-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    padding-right: 4rem;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

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

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 33, 39, 0.1);
    border: 1px solid rgba(232, 33, 39, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.section-header h2 {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Dashboard */
.dashboard-section {
    padding: 120px 2rem;
    background: var(--bg-secondary);
    position: relative;
}

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

.main-chart {
    padding: 1.75rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-title h4 {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.chart-update {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.chart-tabs {
    display: flex;
    gap: 0.5rem;
}

.chart-tab {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.85rem;
}

.chart-tab.active,
.chart-tab:hover {
    background: var(--accent-red);
    color: #ffffff;
    border-color: var(--accent-red);
}

.chart-container {
    height: 380px;
    position: relative;
}

.chart-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

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

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

.legend-color.cyan { background: var(--accent-cyan); }
.legend-color.gold { background: var(--accent-gold); }
.legend-color.green { background: var(--accent-green); }

.sidebar-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-stats,
.trade-panel {
    padding: 1.5rem;
}

.quick-stats h4,
.trade-panel h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
}

.quick-stats h4 i { color: var(--accent-cyan); }
.trade-panel h4 i { color: var(--accent-gold); }

.portfolio-value {
    margin-bottom: 1.5rem;
}

.portfolio-value .value {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    font-family: var(--font-display);
}

.portfolio-value .change {
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

.allocation-chart {
    height: 120px;
    margin-bottom: 1rem;
}

.allocation-legend {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.legend-dot.cyan { background: var(--accent-cyan); }
.legend-dot.gold { background: var(--accent-gold); }
.legend-dot.purple { background: var(--accent-purple); }

.trade-type-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.trade-type {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trade-type.active {
    background: var(--accent-green);
    color: var(--bg-primary);
    border-color: var(--accent-green);
}

.trade-type[data-type="sell"].active {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.trade-input {
    margin-bottom: 1rem;
}

.trade-input label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
}

.trade-input input {
    width: 100%;
    padding: 14px 16px 14px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-display);
    transition: var(--transition);
}

.trade-input input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(232, 33, 39, 0.1);
}

.trade-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trade-info strong {
    color: var(--text-primary);
}

/* Bottom Grid */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-feed,
.ai-insights {
    padding: 1.75rem;
}

.news-feed h4,
.ai-insights h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.news-feed h4 i { color: var(--accent-orange); }
.ai-insights h4 i { color: var(--accent-purple); }

.news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 10px;
}

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

.news-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.news-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.news-meta i {
    margin-right: 4px;
}

.news-source {
    color: var(--accent-red);
}

.insight-item {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    margin-bottom: 1rem;
    border-left: 4px solid;
    transition: var(--transition);
}

.insight-item:hover {
    transform: translateX(5px);
}

.insight-item.bullish {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.03);
}

.insight-item.neutral {
    border-color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.03);
}

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

.insight-signal {
    font-weight: 800;
    font-size: 0.85rem;
    padding: 5px 14px;
    border-radius: 6px;
    font-family: var(--font-display);
}

.insight-signal.buy {
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent-green);
}

.insight-signal.hold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
}

.insight-confidence {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.insight-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.insight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insight-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.insight-time i {
    margin-right: 4px;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 2rem;
    background: var(--bg-primary);
}

.gallery-slider {
    margin-bottom: 2rem;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slide {
    min-width: 400px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.slide:hover img {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.slide:hover .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-tag {
    display: inline-block;
    background: var(--accent-red);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.slide-overlay h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.slide-overlay p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.slider-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #ffffff;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent-red);
    width: 30px;
    border-radius: 5px;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumb {
    width: 100px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.thumb.active,
.thumb:hover {
    border-color: var(--accent-red);
    opacity: 1;
}

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

/* Features Section */
.features-section {
    padding: 120px 2rem;
    background: var(--bg-secondary);
}

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

.feature-card {
    padding: 2.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

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

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon.cyan {
    background: rgba(232, 33, 39, 0.12);
    color: var(--accent-red);
}

.feature-icon.gold {
    background: rgba(255, 215, 0, 0.12);
    color: var(--accent-gold);
}

.feature-icon.green {
    background: rgba(0, 255, 136, 0.12);
    color: var(--accent-green);
}

.feature-icon.purple {
    background: rgba(168, 85, 247, 0.12);
    color: var(--accent-purple);
}

.feature-icon.orange {
    background: rgba(255, 149, 0, 0.12);
    color: var(--accent-orange);
}

.feature-icon.red {
    background: rgba(255, 71, 87, 0.12);
    color: var(--accent-red);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.feature-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.feature-stats strong {
    color: var(--accent-cyan);
}

.feature-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

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

/* Stats Banner */
.stats-banner {
    position: relative;
    padding: 100px 2rem;
    overflow: hidden;
}

.stats-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stats-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 11, 0.88);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

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

.stat-box i {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    display: block;
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    display: inline;
}

.stat-box .stat-suffix {
    font-size: 1.5rem;
}

.stat-box .stat-desc {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 120px 2rem;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content .section-badge {
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.about-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.about-tab {
    padding: 10px 20px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.about-tab.active {
    background: var(--accent-red);
    color: #ffffff;
    border-color: var(--accent-red);
}

.about-tab-content {
    display: none;
    padding: 1.5rem;
    background: rgba(232, 33, 39, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(232, 33, 39, 0.1);
    margin-bottom: 1.5rem;
}

.about-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.about-tab-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.team-avatars {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    margin-left: -12px;
    overflow: hidden;
}

.avatar:first-child {
    margin-left: 0;
}

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

.avatar-more {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-cyan);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: -12px;
}

.team-text {
    font-weight: 600;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.value-item i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.about-cta {
    margin-top: 0.5rem;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    position: relative;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.main-img {
    grid-column: 1 / -1;
    height: 300px;
}

.secondary-img,
.tertiary-img {
    height: 150px;
}

.img-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Contact Section */
.contact-section {
    padding: 120px 2rem;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact-form {
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label i {
    color: var(--accent-cyan);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(232, 33, 39, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239898b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(8px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 33, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-red);
    flex-shrink: 0;
}

.info-icon.cyan { background: rgba(232, 33, 39, 0.1); color: var(--accent-red); }
.info-icon.gold { background: rgba(255, 215, 0, 0.1); color: var(--accent-gold); }

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

.info-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.social-card {
    padding: 1.5rem;
}

.social-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-red);
    color: #ffffff;
    border-color: var(--accent-red);
    transform: translateY(-4px);
}

/* Elon Section */
.elon-section {
    padding: 120px 2rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.elon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.elon-image {
    position: relative;
}

.elon-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.elon-quote-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 1.5rem;
    max-width: 320px;
    background: rgba(232, 33, 39, 0.15);
    border-color: rgba(232, 33, 39, 0.3);
}

.elon-quote-card i {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 10px;
    display: block;
}

.elon-quote-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--accent-red);
    font-weight: 600;
}

.elon-content .section-badge {
    margin-bottom: 1rem;
}

.elon-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
}

.elon-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.elon-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.elon-stat:hover {
    border-color: var(--accent-red);
    transform: translateY(-3px);
}

.elon-stat i {
    width: 44px;
    height: 44px;
    background: rgba(232, 33, 39, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-red);
    flex-shrink: 0;
}

.elon-stat-value {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.elon-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.elon-gallery {
    display: flex;
    gap: 0.75rem;
}

.elon-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
}

.elon-thumb.active,
.elon-thumb:hover {
    border-color: var(--accent-red);
    opacity: 1;
    transform: scale(1.05);
}

/* Team Feature in About */
.team-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem;
    background: rgba(232, 33, 39, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(232, 33, 39, 0.2);
    margin-bottom: 1rem;
}

.team-leader-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-red);
}

.team-leader-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.team-leader-role {
    font-size: 0.8rem;
    color: var(--accent-red);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 2rem;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 11, 0.9);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 70px 2rem 30px;
}

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

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

.footer-brand .logo {
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 600px;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-badges i {
    color: var(--accent-green);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(232, 33, 39, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    animation: fadeInUp 0.8s ease forwards;
}

[data-animate="fade-left"].animated {
    animation: fadeInLeft 0.8s ease forwards;
}

[data-animate="fade-right"].animated {
    animation: fadeInRight 0.8s ease forwards;
}

/* Responsive Design */

/* Large Screens */
@media (max-width: 1400px) {
    .section-container {
        padding: 0 1.5rem;
    }
}

/* Medium-Large Screens */
@media (max-width: 1200px) {
    .hero-title .line-1 { font-size: 1.5rem; }
    .hero-title .line-2 { font-size: 4rem; }
    .hero-title .line-3 { font-size: 3rem; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    
    .slide { min-width: 350px; }
    
    .about-grid { gap: 3rem; }
    .about-content h2 { font-size: 2.25rem; }
    
    .elon-grid { gap: 3rem; }
    .elon-content h2 { font-size: 2.25rem; }
    .elon-image img { height: 450px; }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-container,
    .dashboard-grid,
    .about-grid,
    .contact-grid,
    .bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge { margin: 0 auto 1.5rem; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    
    .floating-card { display: none; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-links.active { display: flex; }
    .nav-buttons { display: none; }
    .hamburger { display: flex; }
    
    .section-header h2 { font-size: 2.5rem; }
    .section-header p { font-size: 1rem; }
    
    .slide { min-width: 300px; height: 250px; }
    
    .main-chart { padding: 1.25rem; }
    .chart-container { height: 300px; }
    
    .quick-stats, .trade-panel { padding: 1.25rem; }
    
    .portfolio-value .value { font-size: 1.75rem; }
    
    .about-content > p { font-size: 1rem; }
    .about-tabs { flex-wrap: wrap; }
    
    .elon-grid { grid-template-columns: 1fr; gap: 3rem; }
    .elon-image img { height: 400px; }
    .elon-quote-card { right: 20px; bottom: -20px; max-width: 280px; padding: 1.25rem; }
    .elon-content h2 { font-size: 2rem; }
    .elon-stats { grid-template-columns: 1fr 1fr; }
    
    .contact-form { padding: 2rem; }
    
    .cta-content h2 { font-size: 2.5rem; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-container {
        padding: 100px 1.25rem 60px;
        gap: 2.5rem;
    }
    
    .hero-title .line-1 { font-size: 1rem; letter-spacing: 0.15em; }
    .hero-title .line-2 { font-size: 2.5rem; }
    .hero-title .line-3 { font-size: 1.75rem; }
    
    .hero-subtitle { font-size: 1rem; }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item { align-items: center; }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg { width: 100%; justify-content: center; }
    
    .stock-card { padding: 1.25rem; }
    .current-price { font-size: 2.25rem; }
    .price-change { font-size: 0.95rem; }
    .card-footer { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .metric-value { font-size: 0.85rem; }
    
    .section-header { margin-bottom: 3rem; }
    .section-header h2 { font-size: 2rem; }
    .section-badge { font-size: 0.7rem; padding: 6px 14px; }
    
    .dashboard-section,
    .gallery-section,
    .features-section,
    .about-section,
    .contact-section { padding: 80px 1.25rem; }
    
    .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .feature-card { padding: 1.5rem; }
    .feature-icon { width: 55px; height: 55px; font-size: 1.3rem; }
    .feature-card h3 { font-size: 1.15rem; }
    
    .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .stat-box i { font-size: 2rem; }
    .stat-box .stat-number { font-size: 2.5rem; }
    
    .about-grid { gap: 3rem; }
    .about-content h2 { font-size: 1.85rem; }
    .about-content > p { font-size: 0.95rem; }
    .about-tab { padding: 8px 14px; font-size: 0.85rem; }
    .about-tab-content { padding: 1.25rem; }
    
    .about-img.main-img { height: 220px; }
    .about-img.secondary-img,
    .about-img.tertiary-img { height: 120px; }
    
    .elon-section { padding: 80px 1.25rem; }
    .elon-image img { height: 350px; }
    .elon-quote-card { position: relative; bottom: auto; right: auto; max-width: 100%; margin-top: 1rem; }
    .elon-content h2 { font-size: 1.75rem; }
    .elon-content > p { font-size: 0.95rem; }
    .elon-stats { grid-template-columns: 1fr; }
    .elon-stat { padding: 0.85rem; }
    .elon-gallery { flex-wrap: wrap; justify-content: center; }
    .elon-thumb { width: 60px; height: 60px; }
    
    .slide { min-width: 280px; height: 200px; }
    .slide-overlay { padding: 1.25rem; }
    .slide-tag { font-size: 0.7rem; padding: 3px 10px; }
    .slide-overlay h4 { font-size: 1.1rem; }
    
    .gallery-thumbnails { gap: 0.75rem; }
    .thumb { width: 70px; height: 50px; }
    
    .slider-controls { gap: 1rem; margin-top: 1.5rem; }
    .slider-btn { width: 40px; height: 40px; font-size: 0.9rem; }
    
    .contact-grid { gap: 2rem; }
    .contact-form { padding: 1.5rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { padding: 12px 14px; font-size: 0.95rem; }
    
    .info-card { padding: 1.25rem; }
    .info-icon { width: 44px; height: 44px; font-size: 1rem; }
    
    .cta-section { padding: 80px 1.25rem; }
    .cta-content h2 { font-size: 1.85rem; }
    .cta-content p { font-size: 1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    
    .footer { padding: 50px 1.25rem 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand .logo { justify-content: center; }
    .footer-brand p { font-size: 0.9rem; }
    .social-links { justify-content: center; }
    .footer-links { text-align: center; }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-bottom p { font-size: 0.8rem; }
    .footer-badges { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .footer-badges span { font-size: 0.75rem; }
    
    .back-to-top { width: 44px; height: 44px; bottom: 20px; right: 20px; }
    
    .scroll-indicator { bottom: 20px; }
    .scroll-indicator span { font-size: 0.7rem; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-container { padding: 80px 1rem 40px; }
    
    .hero-title .line-1 { font-size: 0.85rem; }
    .hero-title .line-2 { font-size: 2rem; }
    .hero-title .line-3 { font-size: 1.5rem; }
    
    .hero-subtitle { font-size: 0.9rem; }
    
    .btn-primary, .btn-glass, .btn-outline {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .stock-card { padding: 1rem; }
    .company-logo { width: 45px; height: 45px; font-size: 1.3rem; }
    .company-info h3 { font-size: 1rem; }
    .current-price { font-size: 1.85rem; }
    
    .chart-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .chart-tabs { width: 100%; overflow-x: auto; padding-bottom: 5px; }
    .chart-tab { padding: 6px 12px; font-size: 0.8rem; white-space: nowrap; }
    
    .news-item { flex-direction: column; }
    .news-img { width: 100%; height: 150px; }
    
    .insight-item { padding: 1rem; }
    .insight-header { flex-direction: column; gap: 8px; align-items: flex-start; }
    .insight-footer { flex-direction: column; gap: 8px; align-items: flex-start; }
    
    .trade-type { padding: 10px; font-size: 0.85rem; }
    .trade-input input { padding: 12px 12px 12px 28px; font-size: 1.1rem; }
    
    .about-tabs { justify-content: center; }
    .team-avatars { flex-direction: column; text-align: center; }
    
    .gallery-thumbnails { justify-content: center; flex-wrap: wrap; }
    .thumb { width: 60px; height: 42px; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .info-card { flex-direction: column; text-align: center; }
    .info-card:hover { transform: none; }
    
    .modal-content { width: 95%; }
    .modal-close { top: -40px; right: 0; width: 36px; height: 36px; }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-container {
        padding: 80px 1.5rem 40px;
    }
    
    .scroll-indicator { display: none; }
}

/* Print Styles */
@media print {
    .navbar, .hero-visual, .floating-card, .scroll-indicator,
    .back-to-top, .video-modal, #particles, #preloader {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-bg { display: none; }
    
    .glass-card {
        background: #f5f5f5;
        border: 1px solid #ddd;
        box-shadow: none;
    }
}
