﻿: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;
    }
}

/* 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);
}

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

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

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

.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);
}

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

.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;
}

.hero-section .highlight {
    color: var(--primary-color);
}

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

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

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

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

/* Marketing Plan Section */
.marketing-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.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);
}

.marketing-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.marketing-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

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

.commission-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;
}

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

.commission-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;
}

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

.commission-rate {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

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

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

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

.calculator-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(173, 246, 141, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.calculator-box h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.form-label {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(173, 246, 141, 0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(173, 246, 141, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select option {
    background: var(--dark-bg);
    color: white;
}

.btn-calculate {
    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;
    margin-top: 20px;
}

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

.result-box {
    background: rgba(173, 246, 141, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    display: none;
}

.result-box.show {
    display: block;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.result-item:last-child {
    border-bottom: none;
}

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

.result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.step-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--purple-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

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

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

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

.robot-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;
}

.robot-content {
    color: white;
}

.robot-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.robot-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.trader-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%;
}

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

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

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

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

/* 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;
    left: 50px;
    animation: float 8s ease-in-out infinite;
}

.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: '';
    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);
}

/* Payment Systems */
.payment-section {
    padding: 80px 0;
    background: white;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.payment-item:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.payment-name {
    font-weight: 600;
    color: var(--dark-bg);
}

.payment-note {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 90px;
    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;
}

.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;
    }

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

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

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

    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

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