/* VettaFX Landing Page Styles */

/* CSS Variables */
:root {
    --primary-orange: #ff7900;
    --secondary-orange: #ff9533;
    --dark-bg: #0d0d0d;
    --darker-bg: #080808;
    --card-bg: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-light-gray: #888888;
    --border-color: rgba(255, 121, 0, 0.2);
    --gradient-main: linear-gradient(135deg, #ff7900 0%, #ff9533 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-green: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    --success-green: #00ff88;
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 30px rgba(255, 121, 0, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --border-radius-large: 20px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.menu-open {
    overflow: hidden;
}

body.loaded {
    opacity: 1;
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 121, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 149, 51, 0.08) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
}

.bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; }
.particle:nth-child(4) { left: 60%; animation-delay: 6s; }
.particle:nth-child(5) { left: 80%; animation-delay: 8s; }
.particle:nth-child(6) { left: 90%; animation-delay: 10s; }

@keyframes gradientShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

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

.nav-logo h2 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: var(--transition-fast);
    border-radius: 2px;
    transform-origin: center;
    display: block;
}

/* Hamburger to X Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    animation: hamburgerToX1 0.4s ease-in-out forwards;
}

.mobile-menu-toggle.active span:nth-child(2) {
    animation: hamburgerToX2 0.4s ease-in-out forwards;
}

.mobile-menu-toggle.active span:nth-child(3) {
    animation: hamburgerToX3 0.4s ease-in-out forwards;
}

.mobile-menu-toggle:not(.active) span:nth-child(1) {
    animation: xToHamburger1 0.4s ease-in-out forwards;
}

.mobile-menu-toggle:not(.active) span:nth-child(2) {
    animation: xToHamburger2 0.4s ease-in-out forwards;
}

.mobile-menu-toggle:not(.active) span:nth-child(3) {
    animation: xToHamburger3 0.4s ease-in-out forwards;
}

@keyframes hamburgerToX1 {
    0% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(0deg) translateY(7px); }
    100% { transform: rotate(45deg) translateY(7px); }
}

@keyframes hamburgerToX2 {
    0% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0; transform: scaleX(0.8); }
    100% { opacity: 0; transform: scaleX(0); }
}

@keyframes hamburgerToX3 {
    0% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(0deg) translateY(-7px); }
    100% { transform: rotate(-45deg) translateY(-7px); }
}

@keyframes xToHamburger1 {
    0% { transform: rotate(45deg) translateY(7px); }
    50% { transform: rotate(0deg) translateY(7px); }
    100% { transform: rotate(0deg) translateY(0); }
}

@keyframes xToHamburger2 {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 0; transform: scaleX(0.8); }
    100% { opacity: 1; transform: scaleX(1); }
}

@keyframes xToHamburger3 {
    0% { transform: rotate(-45deg) translateY(-7px); }
    50% { transform: rotate(0deg) translateY(-7px); }
    100% { transform: rotate(0deg) translateY(0); }
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 121, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.btn-premium {
    background: var(--gradient-main);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 121, 0, 0.5);
}

.btn-shine {
    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-premium:hover .btn-shine {
    left: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

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

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out 0.5s forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff7900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: slideLeft 1s ease-out 0.7s forwards;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: visible;
    box-shadow: var(--shadow-card);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-large);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

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

.floating-card.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    top: 60%;
    right: -5%;
    animation-delay: 4s;
}

.card-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.card-text {
    color: var(--text-white);
    font-weight: 600;
    white-space: nowrap;
}

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

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Perfect Square Tetris Features Section */
.square-features {
    padding: 120px 0;
    background: var(--darker-bg);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff7900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tetris-square {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 200px);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tetris-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.tetris-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-glow);
}

.tetris-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(255, 121, 0, 0.3));
    transition: var(--transition-fast);
}

.tetris-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.tetris-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 121, 0, 0.3);
}

.card-highlight {
    background: var(--gradient-main);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Tetris Grid Layout */
.card-1x1 { grid-column: span 1; grid-row: span 1; }
.card-1x2 { grid-column: span 1; grid-row: span 2; }
.card-2x1 { grid-column: span 2; grid-row: span 1; }
.card-2x2 { grid-column: span 2; grid-row: span 2; }
.card-3x1 { grid-column: span 3; grid-row: span 1; }
.card-4x1 { grid-column: span 4; grid-row: span 1; }

.card-cta {
    background: var(--gradient-main);
    color: white;
    justify-content: space-between;
    flex-direction: row;
    text-align: left;
    padding: 2rem 3rem;
}

.card-cta .card-icon {
    color: white;
    font-size: 3rem;
}

.card-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Revolutionary CopyTrader Section */
.copytrader-revolution {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.copytrader-header {
    text-align: center;
    margin-bottom: 5rem;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-main);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.copytrader-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff7900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copytrader-main-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.copytrader-content {
    opacity: 0;
    transform: translateX(-30px);
}

.copytrader-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.copytrader-intro p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.benefit-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.copytrader-cta-btn {
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cta-feature i {
    color: var(--success-green);
}

.copytrader-visual {
    opacity: 0;
    transform: translateX(30px);
    position: relative;
}

.dashboard-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    position: relative;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-green);
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

.traders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trader-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 121, 0, 0.05);
    border: 1px solid rgba(255, 121, 0, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateX(20px);
}

.trader-card:hover {
    background: rgba(255, 121, 0, 0.1);
    border-color: rgba(255, 121, 0, 0.4);
}

.trader-avatar {
    position: relative;
    flex-shrink: 0;
}

.trader-avatar img {
    width: 50px;
    height: 50px;
    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(--card-bg);
}

.trader-status.online {
    background: var(--success-green);
}

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

.trader-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.trader-level {
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.trader-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
}

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

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

.copy-btn {
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 121, 0, 0.3);
}

.dashboard-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.global-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

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

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

.stat-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
}

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

.floating-performance {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.performance-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 8s ease-in-out infinite;
}

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

.performance-card.card-2 {
    bottom: 20%;
    left: -25%;
    animation-delay: 4s;
}

.performance-icon {
    color: var(--success-green);
    font-size: 1.2rem;
}

.performance-content {
    display: flex;
    flex-direction: column;
}

.performance-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.performance-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Minimalist Assets Ticker Section */
.minimalist-assets {
    padding: 120px 0;
    background: var(--darker-bg);
    position: relative;
}

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

.assets-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-normal {
    color: var(--text-white);
}

.title-highlight {
    color: var(--primary-orange);
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.assets-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.assets-ticker {
    margin: 4rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 121, 0, 0.05);
    border: 1px solid rgba(255, 121, 0, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
    min-width: 140px;
    justify-content: center;
}

.ticker-item:hover {
    background: rgba(255, 121, 0, 0.1);
    border-color: rgba(255, 121, 0, 0.4);
    transform: translateY(-3px);
}

.asset-icon {
    font-size: 1.5rem;
    font-weight: 600;
}

.crypto-icon {
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(255, 121, 0, 0.3);
}

.asset-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.trend-arrow {
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.trend-arrow.up {
    color: var(--success-green);
}

.trend-arrow.down {
    color: #ff4757;
}

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

.cta-note {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Clean Three Steps Section */
.clean-three-steps {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.steps-header {
    text-align: center;
    margin-bottom: 5rem;
}

.steps-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.steps-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange) 0%, rgba(255, 121, 0, 0.3) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-line.animate {
    transform: scaleY(1);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-main);
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 2;
    transition: var(--transition-fast);
}

.step-number:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 121, 0, 0.4);
}

.step-content {
    flex: 1;
    padding-top: 1rem;
}

.step-label {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Mobile Advantage Section */
.mobile-advantage {
    padding: 120px 0;
    background: var(--darker-bg);
    position: relative;
}

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

.mobile-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff7900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.mobile-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.feature-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mobile-feature span {
    color: var(--text-white);
    font-size: 1rem;
}

.os-compatibility {
    display: flex;
    gap: 2rem;
}

.os-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.os-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.mobile-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mobile-phone {
    position: relative;
    max-width: 300px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.mobile-image {
    width: 100%;
    height: auto;
    display: block;
}

.phone-notifications {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.notification {
    position: absolute;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 4s ease-in-out infinite;
}

.notification-1 {
    top: 20%;
    right: -30%;
    animation-delay: 0s;
}

.notification-2 {
    bottom: 30%;
    left: -40%;
    animation-delay: 2s;
}

.notification-icon {
    color: var(--success-green);
    font-size: 1rem;
}

.notification-text {
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-avatar {
    margin-bottom: 2rem;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.testimonial-content cite {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
    font-style: normal;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

.testimonial-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-btn:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* Modern FAQ Section */
.modern-faq {
    padding: 120px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

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

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.faq-title-accent {
    width: 100px;
    height: 4px;
    background: var(--gradient-main);
    margin: 0 auto;
    border-radius: 2px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.active {
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 121, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    background: transparent;
}

.faq-question:hover {
    background: rgba(255, 121, 0, 0.05);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    flex: 1;
    text-align: left;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 121, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-icon i {
    color: var(--primary-orange);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    background: var(--primary-orange);
    transform: rotate(45deg);
}

.faq-item.active .faq-icon i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
}

.faq-answer-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Background Question Mark Icons */
.faq-bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-question-mark {
    position: absolute;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 121, 0, 0.03);
    user-select: none;
    animation: questionFloat 20s ease-in-out infinite;
}

.bg-q-1 { top: 10%; left: 10%; animation-delay: 0s; }
.bg-q-2 { top: 20%; right: 15%; animation-delay: 3s; }
.bg-q-3 { top: 50%; left: 5%; animation-delay: 6s; }
.bg-q-4 { top: 70%; right: 10%; animation-delay: 9s; }
.bg-q-5 { bottom: 20%; left: 20%; animation-delay: 12s; }
.bg-q-6 { bottom: 10%; right: 25%; animation-delay: 15s; }

@keyframes questionFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.03; }
    50% { transform: translateY(-30px) rotate(5deg); opacity: 0.06; }
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    color: var(--primary-orange);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.footer-disclaimer {
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.footer-copyright p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .copytrader-main-title {
        font-size: 3rem;
    }
    
    .assets-title {
        font-size: 2.5rem;
    }
    
    .steps-title {
        font-size: 2.5rem;
    }
    
    .mobile-text h2 {
        font-size: 2.5rem;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-container {
        padding: 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        gap: 0.15rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 121, 0, 0.1);
        animation: mobileMenuSlideIn 0.4s ease-out forwards;
        animation-delay: calc(var(--item-index, 0) * 0.1s);
        opacity: 0;
        transform: translateY(-20px);
    }
    
    .nav-menu.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Tetris Features */
    .square-features {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .tetris-square {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        max-width: none;
    }
    
    .tetris-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .tetris-card .card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .tetris-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .tetris-card p {
        font-size: 0.9rem;
    }
    
    .card-value {
        font-size: 1.8rem;
    }
    
    .card-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .card-cta .card-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .card-cta h3 {
        font-size: 1.4rem;
    }
    
    /* CopyTrader Section */
    .copytrader-revolution {
        padding: 80px 0;
    }
    
    .copytrader-main-title {
        font-size: 2.2rem;
    }
    
    .copytrader-main-subtitle {
        font-size: 1rem;
    }
    
    .copytrader-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .copytrader-intro h3 {
        font-size: 1.5rem;
    }
    
    .copytrader-intro p {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dashboard-container {
        padding: 1.5rem;
    }
    
    .trader-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .trader-stats {
        justify-content: center;
    }
    
    .dashboard-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .performance-card {
        display: none;
    }
    
    /* Assets Section */
    .minimalist-assets {
        padding: 80px 0;
    }
    
    .assets-title {
        font-size: 2rem;
    }
    
    .assets-subtitle {
        font-size: 1rem;
    }
    
    .ticker-item {
        min-width: 120px;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .asset-icon {
        font-size: 1.2rem;
    }
    
    .asset-name {
        font-size: 0.9rem;
    }
    
    /* Three Steps Section */
    .clean-three-steps {
        padding: 80px 0;
    }
    
    .steps-title {
        font-size: 2rem;
    }
    
    .steps-subtitle {
        font-size: 1rem;
    }
    
    .timeline-line {
        left: 40px;
    }
    
    .step-item {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    /* Mobile Section */
    .mobile-advantage {
        padding: 80px 0;
    }
    
    .mobile-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .mobile-text h2 {
        font-size: 2rem;
    }
    
    .mobile-text p {
        font-size: 1rem;
    }
    
    .mobile-features {
        gap: 1rem;
    }
    
    .mobile-feature {
        justify-content: center;
    }
    
    .os-compatibility {
        justify-content: center;
    }
    
    .mobile-phone {
        max-width: 250px;
    }
    
    .notification {
        display: none;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .testimonial-controls {
        gap: 1rem;
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* FAQ Section */
    .modern-faq {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        align-self: flex-end;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .bg-question-mark {
        font-size: 4rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-section h4 {
        margin-bottom: 1rem;
    }
    
    .footer-section a {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-disclaimer {
        margin-bottom: 1rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.8rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .copytrader-main-title {
        font-size: 1.8rem;
    }
    
    .assets-title {
        font-size: 1.8rem;
    }
    
    .steps-title {
        font-size: 1.8rem;
    }
    
    .mobile-text h2 {
        font-size: 1.8rem;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-premium {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .tetris-card {
        padding: 1rem;
        min-height: 120px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .ticker-item {
        min-width: 100px;
        padding: 0.5rem 0.75rem;
    }
}

/* Animation Classes */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(30px);
    animation: slideLeft 1s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideRight 1s ease-out forwards;
}

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

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-gray: #cccccc;
        --border-color: rgba(255, 121, 0, 0.5);
    }
}

/* Dark mode support (already implemented) */
@media (prefers-color-scheme: dark) {
    /* Already using dark theme by default */
}

/* Print styles */
@media print {
    .animated-bg,
    .floating-card,
    .performance-card,
    .notification,
    .bg-question-mark {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}