/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 162, 255, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.shield {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid #00a2ff;
}

.wizard-figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hood {
    width: 20px;
    height: 15px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    border-radius: 10px 10px 0 0;
    position: relative;
}

.eyes {
    width: 8px;
    height: 3px;
    background: #00a2ff;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 6px;
    box-shadow: 4px 0 0 #00a2ff;
}

.body {
    width: 16px;
    height: 12px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-radius: 0 0 8px 8px;
    margin-top: 2px;
    margin-left: 2px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #00a2ff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00a2ff;
}

.cta-btn {
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 162, 255, 0.3);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: relative;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 162, 255, 0.2);
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: right 0.3s ease;
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #00a2ff;
}

.mobile-cta-btn {
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 162, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 162, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #00a2ff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a2ff;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 162, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 162, 255, 0.4);
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.trading-dashboard {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 162, 255, 0.3);
    border-radius: 20px;
    padding: 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 162, 255, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.chart-container {
    background: rgba(255, 255, 255, 0.02);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 162, 255, 0.2);
    background: rgba(0, 162, 255, 0.05);
}

.chart-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pair {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00a2ff;
}

.timeframe {
    background: rgba(0, 162, 255, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    transition: transform 0.2s ease, color 0.3s ease;
}

.change {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.change.positive {
    color: #00ff88;
}

.change.negative {
    color: #ff4757;
}

.change.negative {
    color: #ff4757;
}

.chart-controls {
    display: flex;
    gap: 8px;
}

.timeframe-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 162, 255, 0.3);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeframe-btn.active,
.timeframe-btn:hover {
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    border-color: #00a2ff;
}

.chart-body {
    height: 280px;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 162, 255, 0.05) 0%, rgba(0, 255, 136, 0.05) 100%);
}

#tradingChart {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
}

/* TradingView Chart Styling */
.chart-body {
    position: relative;
    background: rgba(20, 25, 40, 0.95);
    border-radius: 8px;
    overflow: hidden;
}

/* Ensure chart container has proper dimensions */
.chart-container {
    background: rgba(20, 25, 40, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

/* Mobile optimization for TradingView chart */
@media (max-width: 768px) {
    #tradingChart {
        height: 250px;
        min-height: 250px;
    }
    
    .chart-body {
        height: 250px;
        min-height: 250px;
    }
}

.chart-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    pointer-events: none;
}

.signal-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    animation: pulse 2s infinite;
}

.signal-marker.buy {
    background: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.signal-marker.sell {
    background: #ff4757;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.6);
}

.signal-tooltip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 162, 255, 0.3);
    border-radius: 8px;
    padding: 10px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.signal-marker:hover .signal-tooltip {
    opacity: 1;
}

.chart-footer {
    display: flex;
    justify-content: space-around;
    padding: 15px 20px;
    background: rgba(0, 162, 255, 0.05);
    border-top: 1px solid rgba(0, 162, 255, 0.2);
}

.indicator {
    text-align: center;
}

.indicator-name {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 4px;
}

.indicator-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.indicator-value.positive {
    color: #00ff88;
}

.indicator-value.negative {
    color: #ff4757;
}

.performance-panel {
    padding: 20px;
    background: rgba(0, 162, 255, 0.05);
    border-top: 1px solid rgba(0, 162, 255, 0.2);
}

.performance-panel h4 {
    margin-bottom: 15px;
    color: #00a2ff;
    font-size: 1.1rem;
}

.performance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 4px;
}

.stat-value {
    font-weight: 700;
    font-size: 1rem;
}

.stat-value.positive {
    color: #00ff88;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Results Section */
.results {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.performance-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    min-width: 180px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.result-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.result-card.premium {
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.result-card.premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    pointer-events: none;
}

.hidden-result {
    display: none;
    animation: fadeInUp 0.6s ease forwards;
}

.hidden-result.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.result-card:hover::before {
    left: 100%;
}

.result-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pair {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.detail {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.detail:hover {
    border-bottom-color: rgba(255, 215, 0, 0.3);
    padding-left: 5px;
}

.detail span:first-child {
    color: #d4d4d4;
    font-size: 0.95rem;
    font-weight: 500;
}

.detail span:last-child {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.2);
}

.profit {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 15px rgba(0, 255, 136, 0.4);
}

.show-more-container {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.show-more-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.show-more-btn::before {
    content: '';
    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 ease;
}

.show-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.show-more-btn:hover::before {
    left: 100%;
}

.show-more-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 162, 255, 0.2);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-name {
    font-weight: 600;
    display: block;
}

.author-title {
    color: #888;
    font-size: 0.9rem;
}



/* FAQ Section */
.faq {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 162, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 162, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.faq-question i {
    color: #00a2ff;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 162, 255, 0.03);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 162, 255, 0.1);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 162, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 162, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 162, 255, 0.4);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #00ff88;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(0, 162, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 162, 255, 0.1);
    border: 1px solid rgba(0, 162, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a2ff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 162, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
     /* Prevent horizontal scroll */
     html, body {
         overflow-x: hidden !important;
         width: 100% !important;
         max-width: 100vw !important;
     }
     
     * {
         max-width: 100% !important;
         box-sizing: border-box !important;
     }
     
     /* Navigation */
     .navbar {
         padding: 15px 0;
         width: 100%;
         max-width: 100vw;
     }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .cta-btn {
        display: none;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat {
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Trading Dashboard */
    .trading-dashboard {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .chart-container {
        min-height: 300px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .chart-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .chart-info {
         flex-wrap: wrap;
         gap: 10px;
         width: 100%;
         max-width: 100%;
         overflow: hidden;
         box-sizing: border-box;
     }
     
     .chart-controls {
         width: 100%;
         max-width: 100%;
         justify-content: center;
         box-sizing: border-box;
         overflow: hidden;
     }
    
    .timeframe-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .chart-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .indicator {
        width: 100%;
        justify-content: space-between;
    }
    
    .performance-panel {
        padding: 20px;
    }
    
    .performance-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    /* Signal markers */
    .signal-marker {
        width: 12px;
        height: 12px;
    }
    
    .signal-tooltip {
        font-size: 0.8rem;
        padding: 8px;
        min-width: 120px;
    }
    
    /* Sections */
    .results,
    .testimonials,
    .faq,
    .final-cta {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    /* Results Section */
    .results {
        padding: 60px 0;
    }
    
    .results-header {
        margin-bottom: 40px;
    }
    
    .performance-stats {
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat {
        min-width: 140px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Results Grid */
     .results-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         margin-top: 30px;
         width: 100%;
         max-width: 100%;
         box-sizing: border-box;
     }
     
     .result-card {
         padding: 20px;
         width: 100%;
         max-width: 100%;
         box-sizing: border-box;
         word-wrap: break-word;
         overflow-wrap: break-word;
     }
     
     .result-badge {
         right: 15px;
         padding: 4px 12px;
         font-size: 0.7rem;
     }
     
     .result-header {
         margin-top: 10px;
         margin-bottom: 20px;
     }
     
     .pair {
         font-size: 1.1rem;
     }
     
     .profit {
         font-size: 1.3rem;
     }
     
     .result-details {
         grid-template-columns: 1fr;
         gap: 12px;
     }
     
     .detail {
         padding: 10px 0;
     }
     
     .detail span:first-child {
         font-size: 0.9rem;
     }
     
     .show-more-btn {
         padding: 15px 30px;
         font-size: 1rem;
     }
     
     /* Testimonials */
     .testimonials-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         width: 100%;
         max-width: 100%;
         box-sizing: border-box;
     }
    
    .testimonial-card {
         padding: 25px 20px;
         width: 100%;
         max-width: 100%;
         box-sizing: border-box;
         word-wrap: break-word;
         overflow-wrap: break-word;
     }
     
     .testimonial-content p {
         font-size: 0.95rem;
         word-wrap: break-word;
         overflow-wrap: break-word;
         hyphens: auto;
     }
     
     /* FAQ Section */
     .faq-container {
         padding: 0;
         width: 100%;
         max-width: 100%;
         box-sizing: border-box;
     }
    
    .faq-question {
        padding: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        padding-top: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Final CTA */
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .guarantee {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        font-size: 0.9rem;
        padding-top: 15px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .chart-info {
        justify-content: center;
        text-align: center;
    }
    
    .chart-controls {
        gap: 8px;
    }
    
    .timeframe-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .performance-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.result-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
}