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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f1f1f;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #00ff88;
}

.cta-button {
    background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
    color: #0a0a0a;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.02) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 0, 255, 0.02) 50%, transparent 100%);
    animation: backgroundShift 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes backgroundShift {
    0% { opacity: 0.3; transform: translateX(-10px); }
    100% { opacity: 0.7; transform: translateX(10px); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 32px;
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-5px); }
}

.badge-icon {
    font-size: 16px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

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

.highlight {
    background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

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

.hero-description {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.description-highlight {
    color: #00ff88;
    font-weight: 600;
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.btn-animated {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
    color: #0a0a0a;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.4);
}

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

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

.btn-secondary {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 2px solid #00ff88;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #00ff88;
    color: #0a0a0a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.btn-icon {
    transition: transform 0.3s;
}

.btn-animated:hover .btn-icon {
    transform: translateX(3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0 40px;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.stat-animated {
    text-align: center;
    position: relative;
    padding: 24px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    animation: statFloat 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.stat-animated:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-unit {
    font-size: 20px;
    font-weight: 600;
    color: #00ff88;
}

.stat-label {
    font-size: 12px;
    color: #cccccc;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.stat-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #00ff88;
    border-radius: 16px;
    opacity: 0;
    animation: statPulse 3s ease-in-out infinite;
}

@keyframes statPulse {
    0% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.1); }
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 1.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #00ff88;
    transition: all 0.3s;
}

.feature-pill:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.2);
}

.pill-icon {
    font-size: 16px;
}

/* Trading Interface Mockup */
.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-background {
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    max-width: 350px;
    opacity: 0;
    animation: backgroundFade 2s ease-out 1s forwards;
    overflow: hidden;
}

.mobile-background {
    width: 100%;
    height: auto;
    opacity: 0.45;
    filter: blur(1.5px) brightness(1.4);
    transform: rotate(-3deg) scale(1.05);
    transition: all 0.6s ease;
    position: relative;
    left: -10px;
}

@keyframes backgroundFade {
    to {
        opacity: 1;
    }
}

@keyframes interfaceFloat {
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0);
    }
}

.interface-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    border-radius: 40px;
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

.telegram-mockup {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 24px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}

.telegram-mockup:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-5px);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.telegram-header {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bot-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #0a0a0a;
    font-size: 18px;
}

.avatar-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    animation: avatarSpin 3s linear infinite;
    opacity: 0.7;
}

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

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

.bot-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 2px;
}

.bot-status {
    font-size: 12px;
    color: #00ff88;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 20px;
    padding: 6px 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.online-status {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

.messages {
    padding: 24px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: messageSlide 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

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

.message-enter {
    animation: messageEnter 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

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

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.signal-alert,
.profit-alert {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    flex: 1;
    transition: all 0.3s;
}

.signal-alert:hover,
.profit-alert:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: space-between;
}

.alert-icon {
    font-size: 16px;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 5px currentColor); }
    50% { filter: drop-shadow(0 0 10px currentColor); }
}

.alert-header strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.alert-time {
    font-size: 12px;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 600;
}

.profit-badge {
    font-size: 12px;
    color: #0a0a0a;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
}

.trade-details,
.profit-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trade-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.trade-row .label {
    color: #999999;
    font-weight: 500;
}

.trade-row .value {
    color: #ffffff;
    font-weight: 600;
}

.token-name {
    color: #00ff88 !important;
    font-weight: 700;
}

.status-filled {
    color: #10b981 !important;
}

.profit-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.profit-amount {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profit-time {
    color: #cccccc;
    font-size: 14px;
}

.profit-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.exit-label {
    color: #999999;
}

.exit-value {
    color: #00ff88;
    font-weight: 600;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 16px;
    margin-top: 8px;
    animation: messageEnter 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
    30% { transform: translateY(-10px); opacity: 1; }
}

.typing-text {
    font-size: 12px;
    color: #999999;
    font-style: italic;
}

.telegram-footer {
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.speed-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.speed-pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: speedPulse 1s ease-in-out infinite;
}

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

.speed-text {
    font-size: 12px;
    color: #00ff88;
    font-weight: 600;
}

.profit-counter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.counter-label {
    font-size: 10px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-value {
    font-size: 14px;
    color: #10b981;
    font-weight: 700;
}

.animated-counter {
    animation: counterGlow 2s ease-in-out infinite alternate;
}

@keyframes counterGlow {
    0% { text-shadow: 0 0 5px rgba(16, 185, 129, 0.5); }
    100% { text-shadow: 0 0 15px rgba(16, 185, 129, 0.8); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: floatAround 6s ease-in-out infinite;
}

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

.floating-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

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

.floating-4 {
    top: 40%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.4; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 0.3; }
    75% { transform: translateY(-30px) rotate(270deg); opacity: 0.5; }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Performance Section */
.performance {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.performance-metrics {
    text-align: center;
}

.metric-large {
    margin-bottom: 40px;
}

.metric-large .metric-number {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.metric-large .metric-label {
    font-size: 16px;
    color: #cccccc;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.metrics-row {
    display: flex;
    justify-content: space-around;
}

.metric .metric-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.metric .metric-label {
    font-size: 12px;
    color: #cccccc;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.performance-chart {
    text-align: center;
}

.chart-placeholder {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.1);
}

.chart-line {
    height: 200px;
    background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.chart-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 15 Q 25 5 50 8 T 100 12" stroke="white" stroke-width="2" fill="none"/></svg>') no-repeat center;
    background-size: 80% 60%;
}

/* Comparison Section - Original Table */
.comparison {
    padding: 100px 0;
    background: #0a0a0a;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #333333;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 200px repeat(5, 1fr);
    background: #0a0a0a;
    border-bottom: 2px solid #333333;
}

.feature-col {
    padding: 24px 16px;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-right: 1px solid #333333;
}

.bot-col {
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bot-col:last-child {
    border-right: none;
}

.up-col {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border-left: 3px solid #00ff88;
    border-right: 3px solid #00ff88;
}

.bot-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background: #1a1a1a;
}

.logo-img-competitor {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.up-logo {
    background: #1a1a1a;
    border: 2px solid #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.up-logo .logo-img-competitor {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 50%;
    margin: 5%;
}

.bot-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.bot-price {
    font-size: 16px;
    font-weight: 700;
    color: #00ff88;
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px repeat(5, 1fr);
    border-bottom: 1px solid #333333;
}

.comparison-row:last-child {
    border-bottom: none;
}

.highlight-row {
    background: rgba(0, 255, 136, 0.05);
    border-top: 2px solid #00ff88;
    border-bottom: 2px solid #00ff88;
}

.feature-name {
    padding: 16px;
    font-weight: 600;
    color: #ffffff;
    border-right: 1px solid #333333;
    display: flex;
    align-items: center;
}

.feature-value {
    padding: 16px;
    text-align: center;
    color: #cccccc;
    border-right: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.feature-value:last-child {
    border-right: none;
}

.up-value {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    color: #00ff88;
    font-weight: 700;
    border-left: 3px solid #00ff88;
    border-right: 3px solid #00ff88;
}

.cost {
    color: #ff6b6b;
    font-weight: 600;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid #00ff88;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-large {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 16px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand img {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    border-radius: 8px;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.link-column ul {
    list-style: none;
}

.link-column li {
    margin-bottom: 8px;
}

.link-column a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.link-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .bot-col {
        border-right: none;
        border-bottom: 1px solid #333333;
    }

    .feature-name,
    .feature-value {
        border-right: none;
        border-bottom: 1px solid #333333;
    }

    .up-value {
        border-left: none;
        border-right: none;
        border-top: 2px solid #00ff88;
        border-bottom: 2px solid #00ff88;
    }

    .up-col {
        border-left: none;
        border-right: none;
        border-top: 2px solid #00ff88;
        border-bottom: 2px solid #00ff88;
    }

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

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

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

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .feature-card {
        padding: 24px;
    }
}