/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0c0e16;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0c0e16 0%, #1a1d29 100%);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(247, 147, 26, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #2a2d3a;
}

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

.logo-icon {
    font-size: 2.2rem;
    color: #F7931A;
    animation: rotate 4s linear infinite;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #F7931A 0%, #FFB84D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0c0e16 0%, #1a1d29 50%, #2a2d3a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 147, 26, 0.05) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

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

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #F7931A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #9ca3af;
}

.hero-image {
    margin: 50px 0;
}

.profit-chart {
    background: linear-gradient(135deg, #1a1d29 0%, #2a2d3a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #3a3d4a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.profit-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #F7931A 0%, #FFB84D 100%);
}

.chart-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #F7931A;
    font-weight: 600;
}

.chart-visual {
    position: relative;
    height: 120px;
    margin: 30px 0;
}

.profit-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F7931A 0%, #4ade80 50%, #06d6a0 100%);
    border-radius: 2px;
    animation: grow 2s ease-out;
}

@keyframes grow {
    0% { width: 0; }
    100% { width: 100%; }
}

.profit-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.point {
    background: #F7931A;
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
    animation: bounce 1s ease-out;
    animation-delay: var(--delay);
}

.point-1 { --delay: 0.5s; }
.point-2 { --delay: 1s; }
.point-3 { --delay: 1.5s; }

@keyframes bounce {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.chart-period {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 20px;
}

/* Earnings Section */
.earnings-section {
    background: #1a1d29;
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #F7931A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

.earning-card {
    background: linear-gradient(135deg, #2a2d3a 0%, #3a3d4a 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #4a4d5a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.earning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F7931A 0%, #FFB84D 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.earning-card:hover::before {
    transform: scaleX(1);
}

.earning-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(247, 147, 26, 0.2);
    border-color: #F7931A;
}

.earning-card.featured {
    border: 2px solid #F7931A;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #F7931A;
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.earning-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #F7931A;
}

.earning-amount {
    font-size: 2.2rem;
    font-weight: bold;
    color: #4ade80;
    margin-bottom: 10px;
}

.earning-period {
    color: #9ca3af;
    margin-bottom: 30px;
}

.earning-features {
    list-style: none;
    text-align: left;
}

.earning-features li {
    padding: 8px 0;
    color: #d1d5db;
    position: relative;
    padding-left: 25px;
}

.earning-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

/* Success Section */
.success-section {
    background: #0c0e16;
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 60px;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, #1a1d29 0%, #2a2d3a 100%);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #3a3d4a;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(247, 147, 26, 0.1);
}

.stat-visual {
    margin-bottom: 25px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #F7931A;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-detail {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Performance Chart */
.performance-chart {
    background: linear-gradient(135deg, #1a1d29 0%, #2a2d3a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #3a3d4a;
}

.chart-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #F7931A;
    text-align: center;
}

.chart-container {
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 200px;
    gap: 15px;
}

.month-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bar {
    width: 100%;
    background: linear-gradient(180deg, #F7931A 0%, #FFB84D 100%);
    border-radius: 8px 8px 0 0;
    transition: height 1s ease;
    animation: growBar 2s ease-out;
}

@keyframes growBar {
    0% { height: 0 !important; }
}

.month {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #9ca3af;
}

.profit {
    position: absolute;
    top: -30px;
    font-size: 0.7rem;
    color: #4ade80;
    font-weight: bold;
}

/* Method Section */
.method-section {
    background: #1a1d29;
    padding: 80px 0;
}

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

.method-card {
    background: linear-gradient(135deg, #2a2d3a 0%, #3a3d4a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #4a4d5a;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(247, 147, 26, 0.1);
    border-color: #F7931A;
}

.method-number {
    width: 40px;
    height: 40px;
    background: #F7931A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #F7931A;
}

.method-card p {
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
}

.method-visual {
    height: 60px;
    position: relative;
}

/* Trading Chart Visual */
.trading-chart {
    position: relative;
    height: 100%;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4ade80 0%, #F7931A 50%, #ef4444 100%);
    border-radius: 1px;
}

.buy-signal, .sell-signal {
    position: absolute;
    top: 0;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

.buy-signal {
    left: 20%;
    background: #4ade80;
    color: white;
}

.sell-signal {
    right: 20%;
    background: #ef4444;
    color: white;
}

/* Sentiment Meter */
.sentiment-meter {
    position: relative;
    background: #4a4d5a;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, #4ade80 0%, #F7931A 100%);
    border-radius: 10px;
    animation: fillMeter 2s ease-out;
}

@keyframes fillMeter {
    0% { width: 0; }
    100% { width: 85%; }
}

.meter-label {
    position: absolute;
    top: 25px;
    left: 0;
    font-size: 0.8rem;
    color: #4ade80;
    font-weight: bold;
}

/* Risk Indicator */
.risk-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.risk-low {
    font-size: 0.8rem;
    color: #4ade80;
    font-weight: bold;
}

.risk-bar {
    width: 60px;
    height: 8px;
    background: #4a4d5a;
    border-radius: 4px;
    position: relative;
}

.risk-bar.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background: #4ade80;
    border-radius: 4px;
    animation: fillRisk 1.5s ease-out;
}

@keyframes fillRisk {
    0% { width: 0; }
    100% { width: 30%; }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0c0e16 0%, #F7931A 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0 60px 0;
}

.benefit {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin: 30px 0;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.whatsapp-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    border-color: white;
}

.whatsapp-icon {
    font-size: 1.6rem;
    animation: bounce 2s infinite;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.urgency-text {
    font-size: 1.1rem;
    margin-top: 30px;
    color: white;
    font-weight: 600;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

/* Footer */
.footer {
    background: #0c0e16;
    color: white;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #2a2d3a;
}

.disclaimer {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #9ca3af;
    line-height: 1.6;
}

.copyright {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .earnings-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        gap: 8px;
    }
    
    .profit {
        font-size: 0.6rem;
        top: -25px;
    }
}

/* Loading States */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
}

.spinner {
    border: 4px solid #2a2d3a;
    border-top: 4px solid #F7931A;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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