/* Enhanced Hero Section Styles */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(247, 167, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(247, 167, 7, 0.05) 0%, 
        rgba(255, 140, 0, 0.05) 50%, 
        rgba(255, 107, 0, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
    padding: 2rem 0;
}

/* Hero logo styles removed */

/* Hero logo responsive styles removed */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-accent);
    border-radius: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: fadeIn 0.8s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    animation: fadeIn 1s ease-out 0.2s both;
    letter-spacing: 1px;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.4s both;
    color: var(--text-secondary);
    font-weight: 400;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.6s both;
    justify-content: center;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.trading-chart {
    position: relative;
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--primary-gradient);
    transform: translateY(-50%);
    animation: drawLine 2s ease-out 1s both;
}

.chart-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--text-accent);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 2s infinite;
    animation-delay: 0.1s;
}

.point:nth-child(1) { left: 15%; }
.point:nth-child(2) { left: 30%; }
.point:nth-child(3) { left: 50%; }
.point:nth-child(4) { left: 70%; }
.point:nth-child(5) { left: 85%; }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes drawLine {
    0% { width: 0; }
    100% { width: 80%; }
}

@keyframes glow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* New Hero Elements */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.badge-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-success);
}

.badge-status i {
    animation: pulse 2s infinite;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 0.25rem;
}

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

.hero-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

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

.trust-item i {
    color: var(--text-success);
}

.section-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(247, 167, 7, 0.1);
    border: 1px solid rgba(247, 167, 7, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-accent);
}

/* Enhanced Bot Cards */
.bot-card {
    position: relative;
    transition: all 0.3s ease;
}

.bot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(247, 167, 7, 0.2);
}

.bot-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bot-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bot-badge.popular {
    background: rgba(247, 167, 7, 0.2);
    color: var(--text-accent);
    border: 1px solid rgba(247, 167, 7, 0.3);
}

.bot-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-accent);
}

.price-period {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.bot-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

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

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

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

.bot-roi {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.roi-item:last-child {
    margin-bottom: 0;
}

.roi-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.roi-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-success);
}

.bot-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.bot-actions .btn {
    flex: 1;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

