:root {
    --primary-purple: #8b5cf6;
    --primary-pink: #ec4899;
    --primary-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --bg-dark: #0d1117;
    --bg-darker: #010409;
    --bg-card: rgba(139, 92, 246, 0.08);
    --bg-secondary: rgba(139, 92, 246, 0.12);
    --text-primary: #f0f6fc;
    --text-secondary: #7d8590;
    --text-muted: #656d76;
    --border-color: rgba(139, 92, 246, 0.2);
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-hero: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}



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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-circle.small {
    width: 40px;
    height: 40px;
}

.logo-segments {
    width: 75px;
    height: 75px;
    position: relative;
}

.small .logo-segments {
    width: 24px;
    height: 24px;
}

.segment {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.small .segment {
    width: 8px;
    height: 8px;
}

.segment-1 {
    top: 12px;
    left: 12px;
    background: var(--primary-purple);
}

.segment-2 {
    top: 12px;
    right: 12px;
    background: var(--primary-pink);
}

.segment-3 {
    bottom: 12px;
    left: 12px;
    background: var(--accent-green);
}

.segment-4 {
    bottom: 12px;
    right: 12px;
    background: var(--accent-red);
}

.small .segment-1 {
    top: 4px;
    left: 4px;
}

.small .segment-2 {
    top: 4px;
    right: 4px;
}

.small .segment-3 {
    bottom: 4px;
    left: 4px;
}

.small .segment-4 {
    bottom: 4px;
    right: 4px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899, #6366f1);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    animation: titleGlow 8s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.2));
}

@keyframes titleGlow {
    0% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.4));
    }
    33% { 
        background-position: 50% 50%;
        filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.4));
    }
    66% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 18px rgba(236, 72, 153, 0.5));
    }
    100% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.4));
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-btn:hover {
    transform: translateY(-2px);
    color: var(--text-primary);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.social-btn.telegram:hover {
    border-color: #0088cc;
    color: #0088cc;
}

.social-btn.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.social-btn.discord:hover {
    border-color: #5865f2;
    color: #5865f2;
}

.social-btn.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.hero-cta {
    position: relative;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid #6366f1;
    padding: 1.2rem 3rem;
    border-radius: 2rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heartbeat 2s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(99, 102, 241, 0.3),
        0 0 40px rgba(99, 102, 241, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

.hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #6366f1, #ec4899, #10b981, #6366f1);
    background-size: 400% 400%;
    opacity: 0;
    z-index: -1;
    border-radius: inherit;
    animation: gradientShift 3s ease infinite;
    transition: opacity 0.4s ease;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: #ec4899;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 0 30px rgba(99, 102, 241, 0.6),
        0 0 60px rgba(236, 72, 153, 0.3),
        0 0 90px rgba(16, 185, 129, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover::after {
    opacity: 0.3;
}

.hero-cta:active {
    transform: translateY(-1px) scale(1.02);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Heartbeat animation - integrated into main button styles */

@keyframes heartbeat {
    0% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(99, 102, 241, 0.3),
            0 0 40px rgba(99, 102, 241, 0.1);
    }
    14% {
        transform: scale(1.02);
        box-shadow: 
            0 0 25px rgba(99, 102, 241, 0.4),
            0 0 50px rgba(99, 102, 241, 0.2);
    }
    28% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(99, 102, 241, 0.3),
            0 0 40px rgba(99, 102, 241, 0.1);
    }
    42% {
        transform: scale(1.02);
        box-shadow: 
            0 0 25px rgba(99, 102, 241, 0.4),
            0 0 50px rgba(99, 102, 241, 0.2);
    }
    70% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(99, 102, 241, 0.3),
            0 0 40px rgba(99, 102, 241, 0.1);
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-darker);
}

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

.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.content-left h2, .content-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-left p, .content-right p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Telegram Section */
.telegram-section {
    position: relative;
    overflow: hidden;
}

.telegram-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.02) 0%, transparent 60%);
    animation: rotateBackground 30s linear infinite;
    pointer-events: none;
}

.telegram-section::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatUpDown 7s ease-in-out infinite;
    pointer-events: none;
}

.telegram-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.telegram-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.trading-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trading-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trading-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.section-title i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 1rem;
}

.feature-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.feature-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    background: rgba(139, 92, 246, 0.05);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

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

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

.action-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.buy-btn:hover {
    border-color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

.sell-btn:hover {
    border-color: var(--accent-red);
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
}

.limit-btn:hover, .dca-btn:hover {
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
}

.stop-btn:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.profit-btn:hover {
    border-color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-purple);
}

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

.stat-item {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

/* Launch Section */
.launch-section {
    position: relative;
    overflow: hidden;
}

.launch-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatLeftRight 8s ease-in-out infinite;
    pointer-events: none;
}

.launch-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatUpDown 10s ease-in-out infinite reverse;
    pointer-events: none;
}

.launch-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    margin: 0;
}

.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
}

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

.chart-title h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.chart-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.chart-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

.chart-change.positive {
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
}

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

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

.timeframe {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    background: rgba(139, 92, 246, 0.05);
}

.timeframe:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
}

.timeframe.active {
    background: var(--primary-purple);
    color: white;
}

.chart-body {
    position: relative;
    height: 250px;
    padding: 1rem 2rem 2rem 2rem;
}

.chart-grid {
    position: absolute;
    top: 1rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(139, 92, 246, 0.1);
}

.price-label {
    position: absolute;
    right: 0;
    top: -0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    padding: 0 0.5rem;
}

.chart-line {
    position: absolute;
    top: 1rem;
    left: 2rem;
    right: 2rem;
    bottom: 3rem;
}

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

.chart-path {
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.4));
}

.altcoin-path {
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawPath 3s ease-in-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.altcoin-point {
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8));
}

.chart-area {
    opacity: 0.6;
}

.chart-indicators {
    position: absolute;
    bottom: 0.5rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.indicator-dot.green {
    background: var(--accent-green);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.indicator-dot.yellow {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.indicator-dot.blue {
    background: var(--primary-blue);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.indicator-dot.purple {
    background: var(--primary-purple);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.indicator-dot.orange {
    background: #f97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.indicator-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    transform: translate(-50%, -50%);
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* AI Section */
.ai-section {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.04) 0%, transparent 60%);
    animation: rotateBackground 25s linear infinite reverse;
    pointer-events: none;
}

.ai-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ai-brain-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Neural Network Animation */
.ai-neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #6366f1, #ec4899);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    animation: nodesPulse 2s ease-in-out infinite;
}

.neural-node.node-1 { top: 20%; left: 10%; animation-delay: 0s; }
.neural-node.node-2 { top: 10%; right: 20%; animation-delay: 0.3s; }
.neural-node.node-3 { top: 40%; left: 5%; animation-delay: 0.6s; }
.neural-node.node-4 { top: 60%; right: 15%; animation-delay: 0.9s; }
.neural-node.node-5 { bottom: 20%; left: 25%; animation-delay: 1.2s; }
.neural-node.node-6 { bottom: 15%; right: 10%; animation-delay: 1.5s; }

.neural-connection {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
    height: 2px;
    animation: connectionFlow 3s ease-in-out infinite;
}

.connection-1 {
    top: 22%;
    left: 15%;
    width: 60px;
    transform: rotate(25deg);
    animation-delay: 0.2s;
}

.connection-2 {
    top: 15%;
    right: 25%;
    width: 80px;
    transform: rotate(-30deg);
    animation-delay: 0.5s;
}

.connection-3 {
    top: 45%;
    left: 10%;
    width: 70px;
    transform: rotate(45deg);
    animation-delay: 0.8s;
}

.connection-4 {
    bottom: 25%;
    left: 30%;
    width: 90px;
    transform: rotate(-15deg);
    animation-delay: 1.1s;
}

.connection-5 {
    bottom: 20%;
    right: 15%;
    width: 60px;
    transform: rotate(60deg);
    animation-delay: 1.4s;
}

/* Central AI Brain */
.ai-brain-core {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #ec4899, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 2;
    animation: brainPulse 2s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(99, 102, 241, 0.4),
        0 0 60px rgba(236, 72, 153, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.brain-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: pulseBorder 2s ease-in-out infinite;
}

/* Floating Particles */
.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(99, 102, 241, 0.8);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

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

.particle:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 4s;
}

.particle:nth-child(3) {
    bottom: 40%;
    left: 60%;
    animation-delay: 2s;
    animation-duration: 3.5s;
}

.particle:nth-child(4) {
    top: 20%;
    right: 20%;
    animation-delay: 1.5s;
    animation-duration: 4.5s;
}

.particle:nth-child(5) {
    bottom: 30%;
    left: 30%;
    animation-delay: 0.5s;
    animation-duration: 3.2s;
}

/* Animations */
@keyframes nodesPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    }
    50% { 
        transform: scale(1.3);
        box-shadow: 0 0 25px rgba(236, 72, 153, 0.8);
    }
}

@keyframes connectionFlow {
    0% { opacity: 0.2; }
    50% { opacity: 0.8; }
    100% { opacity: 0.2; }
}

@keyframes brainPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: hue-rotate(0deg);
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        filter: hue-rotate(45deg);
    }
}

@keyframes pulseBorder {
    0% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% { 
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}

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

@keyframes floatUpDown {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-30px);
        opacity: 1;
    }
}

@keyframes floatLeftRight {
    0%, 100% { 
        transform: translateX(0px);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(40px);
        opacity: 1;
    }
}

@keyframes floatDiagonal {
    0%, 100% { 
        transform: translate(0px, 0px);
        opacity: 0.5;
    }
    25% { 
        transform: translate(20px, -15px);
        opacity: 0.8;
    }
    50% { 
        transform: translate(0px, -30px);
        opacity: 1;
    }
    75% { 
        transform: translate(-20px, -15px);
        opacity: 0.8;
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% { 
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }
}

/* Solana Icon Effects */
.solana-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #14f195, #9945ff, #14f195);
    background-size: 200% 200%;
    border-radius: 50%;
    opacity: 0.7;
    animation: solanaFloat 8s ease-in-out infinite, solanaGradient 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.solana-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #14f195 0%, #9945ff 50%, #14f195 100%);
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: solanaRotate 6s linear infinite;
}

.solana-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 2px;
    background: #14f195;
    border-radius: 1px;
    transform: translate(-50%, -50%);
    box-shadow: 0 -4px 0 #9945ff, 0 4px 0 #14f195;
    animation: solanaPulse 3s ease-in-out infinite;
}

.solana-icon.sol1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.solana-icon.sol2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.solana-icon.sol3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.solana-icon.sol4 {
    top: 40%;
    right: 40%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.solana-icon.sol5 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 9s;
}

@keyframes solanaFloat {
    0%, 100% { 
        transform: translate(0px, 0px) scale(1);
        opacity: 0.4;
    }
    25% { 
        transform: translate(15px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-10px, -35px) scale(0.9);
        opacity: 1;
    }
    75% { 
        transform: translate(-20px, -15px) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes solanaGradient {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(90deg);
    }
}

@keyframes solanaRotate {
    0% { transform: translate(-50%, -50%) rotate(45deg); }
    100% { transform: translate(-50%, -50%) rotate(405deg); }
}

@keyframes solanaPulse {
    0%, 100% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.ai-features {
    margin-top: 2rem;
}

.ai-feature {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

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

.ai-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-pink);
}

.ai-feature p {
    color: var(--text-secondary);
    margin: 0;
}

.section-cta {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.section-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Paper Trading Section */
.paper-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.paper-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDiagonal 12s ease-in-out infinite;
    pointer-events: none;
}

.paper-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.paper-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.paper-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.portfolio-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

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

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

.paper-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.paper-feature:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-purple);
}

.paper-feature i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.feature-category ul {
    list-style: none;
}

.feature-category li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-category li i {
    color: var(--accent-green);
    font-size: 0.875rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.cta-container {
    margin-top: 4rem;
}

.final-cta {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 4rem 2rem;
}

.final-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

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

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-purple);
}

/* Small Telegram Button */
.btn-telegram-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: rgba(139, 92, 246, 0.08);
    transition: all 0.25s ease;
}

.btn-telegram-small i {
    color: #0088cc;
}

.btn-telegram-small:hover {
    transform: translateY(-1px);
    border-color: #0088cc;
    box-shadow: 0 6px 18px rgba(0, 136, 204, 0.15);
}

.section-header .btn-telegram-small {
    margin-top: 1rem;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom p {
    margin: 0;
}

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

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

@keyframes aiPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-social {
        gap: 0.75rem;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .telegram-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .trading-section {
        padding: 1.5rem;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
    }
    
    .section-title h3 {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-info h4 {
        font-size: 0.9rem;
    }
    
    .feature-info p {
        font-size: 0.75rem;
    }
    
    .action-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .action-btn i {
        font-size: 1rem;
    }
    
    .telegram-stats {
        grid-template-columns: 1fr;
    }
    
    .portfolio-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .paper-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-left h2, .content-right h2 {
        font-size: 2rem;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-segments {
        width: 50px;
        height: 50px;
    }
    
    .segment {
        width: 16px;
        height: 16px;
    }
    
    .portfolio-stats {
        grid-template-columns: 1fr;
    }
}