﻿:root {
    --primary-color: #adf68d;
    --secondary-color: #283739;
    --dark-bg: #0f172a;
    --text-light: #94a3b8;
    --purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --green-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 2rem;
}

.nav-link {
    color: white !important;
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

.btn-register, .btn-login {
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 10px;
}

.btn-register {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
}

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

.btn-register:hover, .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(173, 246, 141, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '₿';
    position: absolute;
    font-size: 20rem;
    color: rgba(173, 246, 141, 0.05);
    top: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-section .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(173, 246, 141, 0.3);
    z-index: -1;
}

.hero-section p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    margin: 0 auto;
}

.breadcrumb-item {
    color: var(--text-light);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.content-box {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s;
}

.content-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-box h3 {
    color: var(--dark-bg);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.content-box p {
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.stats-section::before {
    content: 'Ξ';
    position: absolute;
    font-size: 15rem;
    color: rgba(173, 246, 141, 0.03);
    bottom: 50px;
    left: 50px;
    animation: float 6s ease-in-out infinite;
}

.stats-section h2 {
    color: white;
}

.stats-section p {
    color: var(--text-light);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(173, 246, 141, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(173, 246, 141, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(173, 246, 141, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: white;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    border-top: 5px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--purple-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: white;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-content {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    width: 45%;
    position: relative;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content h4 {
    color: var(--dark-bg);
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    color: #333;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--purple-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-cta {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 18px 60px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s;
}

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

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--purple-gradient);
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
}

/* Earning Popup */
.earning-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateX(400px);
    transition: all 0.5s;
    border-left: 5px solid #28a745;
}

.earning-popup.show {
    transform: translateX(0);
}

.earning-popup .title {
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.earning-popup .flag {
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

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

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }

    .timeline-icon {
        left: 30px;
    }

    .earning-popup {
        right: 15px;
        left: 15px;
        bottom: 15px;
    }
}


:root {
    --primary-color: #adf68d;
    --secondary-color: #283739;
    --dark-bg: #0f172a;
    --text-light: #94a3b8;
    --purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --green-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

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

@keyframes pulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Ticker Bar */
.ticker-bar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    color: var(--primary-color);
    font-weight: bold;
    z-index: 999;
    height: 30px;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 30px;
    white-space: nowrap;
}

.ticker-bar.bottom {
    top: auto;
    bottom: 0;
}

.ticker-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
    padding-left: 100%;
}

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

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 2rem;
}

.nav-link {
    color: white !important;
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

.btn-register,
.btn-login {
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 10px;
}

.btn-register {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
}

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

.btn-register:hover,
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(173, 246, 141, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 30px; /* Adjust for ticker */
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(173, 246, 141, 0.15) 0%,
        transparent 70%
    );
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

.hero-section::after {
    content: "₿";
    position: absolute;
    font-size: 15rem;
    color: rgba(173, 246, 141, 0.05);
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(173, 246, 141, 0.3);
    z-index: -1;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.btn-open-deposit {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 18px 60px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(173, 246, 141, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-open-deposit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s;
}

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

.btn-open-deposit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(173, 246, 141, 0.5);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.hero-feature:hover {
    background: rgba(173, 246, 141, 0.1);
    transform: translateX(10px);
}

.hero-feature i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.robot-container {
    position: relative;
    text-align: center;
}

.robot-image {
    width: 100%;
    max-width: 500px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(173, 246, 141, 0.3));
}

.robot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(173, 246, 141, 0.3) 0%,
        transparent 70%
    );
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--purple-gradient);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

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

/* TradingView Section */
.tradingview-section {
    padding: 80px 0;
    background: white;
}

.tradingview-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

/* Investment Plans */
.plans-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.plans-section::before {
    content: "Ξ";
    position: absolute;
    font-size: 20rem;
    color: rgba(173, 246, 141, 0.03);
    top: 50px;
    right: 50px;
    animation: float 8s ease-in-out infinite;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(173, 246, 141, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(173, 246, 141, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s;
}

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

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(173, 246, 141, 0.3);
}

.plan-card.featured {
    background: var(--purple-gradient);
    border-color: transparent;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.plan-profit {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.plan-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.plan-details {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.plan-details li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-details li i {
    color: var(--primary-color);
}

.btn-invest {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 700;
    border: none;
    width: 100%;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-invest:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(173, 246, 141, 0.5);
}

/* Crypto Prices */
.crypto-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.crypto-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 5px solid transparent;
}

.crypto-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color);
}

.crypto-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.crypto-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--purple-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.crypto-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.crypto-symbol {
    color: var(--text-light);
    font-size: 0.9rem;
}

.crypto-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.crypto-change {
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.crypto-change.positive {
    background: #d4edda;
    color: #155724;
}

.crypto-change.negative {
    background: #f8d7da;
    color: #721c24;
}

.chart-container {
    height: 60px;
    margin-top: 15px;
    position: relative;
}

.chart-container canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background: #f8f9fa;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--purple-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.about-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.about-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.about-section p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: white;
    font-weight: 600;
    color: var(--dark-bg);
}

.accordion-button:not(.collapsed) {
    background: var(--purple-gradient);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--green-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 60px; /* Extra padding for bottom ticker */
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--purple-gradient);
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
}

/* Earning Popup */
.earning-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateX(400px);
    transition: all 0.5s;
    border-left: 5px solid #28a745;
}

.earning-popup.show {
    transform: translateX(0);
}

.earning-popup .title {
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.earning-popup .flag {
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .robot-image {
        max-width: 300px;
    }

    .earning-popup {
        right: 15px;
        left: 15px;
        bottom: 100px;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .ticker-bar {
        top: 60px;
        font-size: 0.8rem;
    }
}
