/* ============================================
   TRUE DOLLAR - Premium Crypto Token Website
   Modern, Professional & Beautiful Design
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --primary-glow: rgba(99, 102, 241, 0.5);

    /* Secondary Colors */
    --secondary: #0ea5e9;
    --secondary-light: #38bdf8;
    --secondary-dark: #0284c7;

    /* Accent Colors */
    --accent: #22d3ee;
    --accent-pink: #f472b6;
    --accent-purple: #a855f7;
    --accent-orange: #fb923c;

    /* Neutral Colors */
    --dark: #0f172a;
    --darker: #020617;
    --darkest: #000000;
    --light: #f8fafc;
    --light-dim: #e2e8f0;
    --gray: #94a3b8;
    --gray-dark: #64748b;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Tokenomics Colors */
    --liquidity: #22d3ee;
    --reserved: #a855f7;
    --future: #fb923c;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #0ea5e9 50%, #22d3ee 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-card: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    --gradient-mesh: radial-gradient(at 50% 20%, rgba(99, 102, 241, 0.2) 0px, transparent 50%),
                     radial-gradient(at 80% 10%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
                     radial-gradient(at 20% 50%, rgba(168, 85, 247, 0.1) 0px, transparent 40%),
                     radial-gradient(at 80% 50%, rgba(34, 211, 238, 0.1) 0px, transparent 50%),
                     radial-gradient(at 50% 90%, rgba(99, 102, 241, 0.15) 0px, transparent 50%);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px var(--primary-glow);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--darkest);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(2%, 2%) scale(1.02); }
    50% { transform: translate(-1%, 3%) scale(1.01); }
    75% { transform: translate(1%, -2%) scale(1.03); }
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    left: 5%;
    animation-delay: 0s;
    opacity: 0.3;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    top: 50%;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    bottom: -100px;
    left: 40%;
    animation-delay: -10s;
    opacity: 0.25;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(10px, 40px) rotate(3deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: var(--shadow-glow);
}

.logo {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.5px;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.brand-name {
    font-weight: 700;
    font-size: 1.35rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray);
    position: relative;
    padding: 8px 0;
}

.nav-links li:last-child {
    margin-left: 8px;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav-links a:not(.btn-nav):hover {
    color: var(--light);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-links a.btn-nav {
    background: var(--gradient-primary);
    padding: 10px 26px !important;
    border-radius: 10px;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.3px;
    margin-left: 10px;
}

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

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

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

.btn-nav.active {
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: var(--transition-normal);
    transform-origin: center;
}

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

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

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.4);
}

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

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

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

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

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
    border-radius: 16px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 10s ease-in-out infinite;
}

.particle:nth-child(odd) {
    background: var(--secondary);
}

.particle:nth-child(3n) {
    background: var(--accent);
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 0.3; }
}

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

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-content h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 .line {
    display: block;
}

.tagline {
    font-size: 1.5rem;
    color: var(--light-dim);
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.description {
    color: var(--gray);
    font-size: 1.15rem;
    margin-bottom: 36px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

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

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

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 1s ease 0.3s both;
}

.token-3d {
    position: relative;
    width: 420px;
    height: 420px;
}

.token-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    inset: 0;
    border-color: rgba(99, 102, 241, 0.3);
    animation-direction: normal;
}

.ring-2 {
    inset: 30px;
    border-color: rgba(14, 165, 233, 0.25);
    animation-direction: reverse;
    animation-duration: 15s;
}

.ring-3 {
    inset: 60px;
    border-color: rgba(34, 211, 238, 0.2);
    animation-duration: 25s;
}

.ring-1::before, .ring-2::before, .ring-3::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    box-shadow: 0 0 20px var(--primary);
}

.ring-2::before {
    background: var(--secondary);
    box-shadow: 0 0 20px var(--secondary);
}

.ring-3::before {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

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

.token-core {
    position: absolute;
    inset: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 60px rgba(99, 102, 241, 0.4),
        0 0 120px rgba(14, 165, 233, 0.2),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    animation: tokenPulse 4s ease-in-out infinite;
}

@keyframes tokenPulse {
    0%, 100% {
        box-shadow:
            0 0 60px rgba(99, 102, 241, 0.4),
            0 0 120px rgba(14, 165, 233, 0.2),
            inset 0 0 60px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 80px rgba(99, 102, 241, 0.5),
            0 0 160px rgba(14, 165, 233, 0.3),
            inset 0 0 80px rgba(255, 255, 255, 0.15);
    }
}

.token-inner {
    width: 75%;
    height: 75%;
    background: var(--darker);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.token-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(99, 102, 241, 0.1) 60deg, transparent 120deg);
    animation: tokenSpin 10s linear infinite;
}

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

.token-symbol {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.token-name {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.token-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.section-subtitle {
    color: var(--gray);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--gradient-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: var(--transition-normal);
}

.about-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.about-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   TOKEN DETAILS BAR
   ============================================ */

.token-details {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1) 0%, rgba(14, 165, 233, 0.1) 50%, rgba(34, 211, 238, 0.1) 100%);
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.details-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.detail-item {
    text-align: center;
    position: relative;
}

.detail-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

.detail-item .label {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.detail-item .value {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TOKENOMICS SECTION
   ============================================ */

.tokenomics {
    background: var(--darkest);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.chart-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.donut-chart {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: conic-gradient(
        var(--liquidity) 0deg 120deg,
        var(--reserved) 120deg 240deg,
        var(--future) 240deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 0 60px rgba(34, 211, 238, 0.2),
        0 0 100px rgba(168, 85, 247, 0.15),
        0 0 140px rgba(251, 146, 60, 0.1);
    animation: chartRotate 30s linear infinite;
}

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

.chart-inner {
    width: 220px;
    height: 220px;
    background: var(--darkest);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: chartRotate 30s linear infinite reverse;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.chart-total {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.chart-label {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 8px;
}

.tokenomics-breakdown {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.allocation-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 32px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.allocation-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
}

.allocation-card.liquidity::before { background: var(--liquidity); }
.allocation-card.reserved::before { background: var(--reserved); }
.allocation-card.future::before { background: var(--future); }

.allocation-card:hover {
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
}

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

.allocation-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 15px currentColor;
}

.allocation-card.liquidity .allocation-dot {
    background: var(--liquidity);
    color: var(--liquidity);
}
.allocation-card.reserved .allocation-dot {
    background: var(--reserved);
    color: var(--reserved);
}
.allocation-card.future .allocation-dot {
    background: var(--future);
    color: var(--future);
}

.allocation-name {
    font-weight: 700;
    font-size: 1.15rem;
    flex: 1;
}

.allocation-percent {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.allocation-amount {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--light-dim);
}

.allocation-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    background: var(--gradient-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    group: true;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: transparent;
}

.feature-card:hover::after {
    opacity: 0.1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.35);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   ROADMAP SECTION
   ============================================ */

.roadmap {
    background: var(--darkest);
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.timeline-item {
    padding: 30px 0;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    padding-left: 60px;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 40px;
    z-index: 2;
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
    animation: markerPulse 2s ease-in-out infinite;
}

.timeline-item.left .timeline-marker {
    right: -12px;
}

.timeline-item.right .timeline-marker {
    left: -12px;
}

@keyframes markerPulse {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow), 0 0 40px transparent; }
    50% { box-shadow: 0 0 30px var(--primary-glow), 0 0 60px var(--primary-glow); }
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-normal);
    position: relative;
}

.timeline-content:hover {
    transform: scale(1.03);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.timeline-date {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.timeline-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-status.upcoming {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.timeline-status.completed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.timeline-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(14, 165, 233, 0.15) 50%, rgba(168, 85, 247, 0.1) 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.cta p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--glass-border);
}

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

.footer-brand .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-brand .logo {
    width: 50px;
    height: 50px;
}

.footer-brand .brand-name {
    font-size: 1.4rem;
}

.footer-brand p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 350px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

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

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

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray);
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

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

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

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    max-width: 500px;
    text-align: right;
}

/* ============================================
   WHITEPAPER PAGE
   ============================================ */

.whitepaper-page {
    background: var(--darkest);
}

.whitepaper-page .navbar {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
}

.whitepaper {
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Whitepaper Header */
.wp-header {
    text-align: center;
    padding: 80px 0;
    margin-bottom: 60px;
    position: relative;
}

.wp-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.wp-logo {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 32px;
    margin: 0 auto 32px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.wp-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    margin: 0 auto 32px;
    display: block;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.wp-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wp-header .version {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Table of Contents */
.toc {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 48px;
    margin-bottom: 80px;
}

.toc h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.toc ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    counter-reset: toc;
}

.toc li {
    counter-increment: toc;
}

.toc a {
    color: var(--gray);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: var(--transition-normal);
}

.toc a::before {
    content: counter(toc, decimal-leading-zero);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.toc a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--light);
}

/* Whitepaper Sections */
.wp-section {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--glass-border);
}

.wp-section:last-of-type {
    border-bottom: none;
}

.wp-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--light);
    position: relative;
    padding-left: 24px;
}

.wp-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.wp-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--light);
}

.wp-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 28px 0 16px;
    color: var(--light-dim);
}

.wp-section p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.wp-section ul {
    margin: 20px 0 28px 0;
}

.wp-section ul li {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
}

.wp-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.wp-section ul li strong {
    color: var(--light);
    font-weight: 600;
}

/* Token Info Box */
.token-info-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 36px;
    margin: 36px 0;
}

.token-info-box h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.token-info-box table {
    width: 100%;
    border-collapse: collapse;
}

.token-info-box td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.token-info-box tr:last-child td {
    border-bottom: none;
}

.token-info-box td:first-child {
    color: var(--gray);
    width: 40%;
}

.token-info-box td:last-child {
    font-weight: 700;
    color: var(--light);
}

/* Distribution Box */
.distribution-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 36px 0;
}

.dist-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
}

.dist-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.dist-card.liquidity::before { background: var(--liquidity); }
.dist-card.reserved::before { background: var(--reserved); }
.dist-card.future::before { background: var(--future); }

.dist-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.dist-color {
    width: 18px;
    height: 18px;
    border-radius: 6px;
}

.dist-color.liquidity { background: var(--liquidity); box-shadow: 0 0 15px var(--liquidity); }
.dist-color.reserved { background: var(--reserved); box-shadow: 0 0 15px var(--reserved); }
.dist-color.future { background: var(--future); box-shadow: 0 0 15px var(--future); }

.dist-header h4 {
    flex: 1;
    margin: 0;
    font-size: 1.2rem;
}

.dist-percent {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dist-amount {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--light-dim);
}

.dist-card p {
    margin: 0;
}

/* Code Box */
.code-box {
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    overflow-x: auto;
}

.code-box code {
    display: block;
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 10px;
    white-space: nowrap;
}

.code-box code:last-child {
    margin-bottom: 0;
}

/* Roles Table */
.roles-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: var(--glass-bg);
    border-radius: 16px;
    overflow: hidden;
}

.roles-table th,
.roles-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.roles-table th {
    background: rgba(99, 102, 241, 0.1);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roles-table tr:last-child td {
    border-bottom: none;
}

.roles-table td:first-child {
    font-weight: 700;
    color: var(--primary-light);
}

.roles-table td:last-child {
    color: var(--gray);
}

/* Roadmap Timeline (Whitepaper) */
.roadmap-timeline {
    position: relative;
    padding-left: 40px;
    margin: 40px 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.rm-item {
    position: relative;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
}

.rm-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid var(--darkest);
    box-shadow: 0 0 20px var(--primary-glow);
}

.rm-date {
    font-weight: 700;
    color: var(--primary-light);
    font-size: 1rem;
}

.rm-content h4 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.rm-content p {
    margin: 0;
    font-size: 1rem;
}

/* Disclaimer Box */
.disclaimer-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 20px;
    padding: 32px;
    margin-top: 50px;
}

.disclaimer-box h4 {
    color: var(--warning);
    margin: 0 0 14px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-box h4::before {
    content: '⚠️';
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* WP Footer */
.wp-footer {
    text-align: center;
    padding: 60px 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero .container {
        gap: 50px;
    }

    .token-3d {
        width: 350px;
        height: 350px;
    }
}

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

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

    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .token-3d {
        width: 280px;
        height: 280px;
    }

    .token-symbol {
        font-size: 3rem;
    }

    .token-inner {
        width: 70%;
        height: 70%;
    }

    .about-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 20px !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 8px !important;
        right: auto !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .disclaimer {
        text-align: center;
    }

    .toc ol {
        grid-template-columns: 1fr;
    }

    .wp-header h1 {
        font-size: 2.5rem;
    }

    .details-grid {
        gap: 30px;
    }

    .detail-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 16px 32px;
    }

    .donut-chart {
        width: 280px;
        height: 280px;
    }

    .chart-inner {
        width: 160px;
        height: 160px;
    }

    .chart-total {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

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

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.7s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.8s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}
