/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #667eea;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { left: 30%; animation-delay: 4s; }
.floating-element:nth-child(3) { left: 50%; animation-delay: 8s; }
.floating-element:nth-child(4) { left: 70%; animation-delay: 12s; }
.floating-element:nth-child(5) { left: 90%; animation-delay: 16s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-disclaimer {
    margin-top: 1rem;
    text-align: center;
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-disclaimer small {
    color: #ffffff;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-disclaimer a {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-disclaimer a:hover {
    color: #ffed4e;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.hero-indicators {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.success-rate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.success-rate i {
    color: #FFD700;
}

/* Video Placeholder */
.hero-video {
    position: relative;
}

.video-placeholder {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    text-align: center;
    width: 100%;
}

/* Real Video Styling */
.promotional-video {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: #000;
    margin-bottom: 1rem;
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.promotional-video:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

/* Responsive video sizing */
@media (max-width: 768px) {
    .promotional-video {
        min-height: 250px;
        height: auto;
        max-height: 50vh;
    }
    
    .video-container {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .promotional-video {
        min-height: 200px;
        height: auto;
        border-radius: 10px;
        max-height: 40vh;
    }
    
    .video-container {
        width: 100%;
        height: auto;
    }
}

.video-fallback {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.video-fallback a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

.video-fallback a:hover {
    text-decoration: underline;
}

.video-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.video-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Image Styling and Fallbacks */
img {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

.card-image img,
.tool-image img,
.education-image img,
.testimonial-image img,
.video-thumbnail {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* Fallback for broken images */
img[src*="unsplash"]:before,
img[src*="flagcdn"]:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: -1;
}

/* Flag specific styling */
.flag {
    width: 32px !important;
    height: 24px !important;
    border-radius: 4px;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
}

/* Ensure video thumbnail is always visible */
.video-thumbnail {
    opacity: 1 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Loading state for images */
.card-image,
.tool-image,
.education-image {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Market Situation */
.market-situation {
    padding: 80px 0;
    background: #f8fafc;
}

.market-situation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.situation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.situation-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.situation-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.situation-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.situation-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.card-stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-item i {
    color: #10b981;
}

/* Opportunities */
.opportunities {
    padding: 80px 0;
    background: white;
}

.opportunities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.opportunities-content {
    max-width: 800px;
    margin: 0 auto;
}

.opportunity-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.opportunity-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.opportunity-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

/* Popular Pairs */
.popular-pairs {
    padding: 80px 0;
    background: white;
}

.popular-pairs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.pairs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pair-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.pair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pair-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pair-flags {
    display: flex;
    gap: 0.5rem;
}

.flag {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.pair-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.pair-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
}

.pair-price {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    display: block;
}

.price-change {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.25rem;
    display: block;
}

.price-change.positive {
    color: #10b981;
}

.price-change.negative {
    color: #ef4444;
}

.pair-chart {
    height: 60px;
    margin: 1rem 0;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 8px;
    position: relative;
}

.mini-chart {
    width: 100%;
    height: 100%;
}

.pair-desc {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Trading Tools */
.trading-tools {
    padding: 80px 0;
    background: #f8fafc;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-10px);
}

.tool-image {
    height: 200px;
    overflow: hidden;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-image img {
    transform: scale(1.05);
}

.tool-content {
    padding: 2rem;
}

.tool-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.tool-features {
    list-style: none;
    margin-top: 1.5rem;
}

.tool-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.tool-features i {
    color: #10b981;
}

/* Education Section */
.education-section {
    padding: 80px 0;
    background: white;
}

.education-content {
    max-width: 1000px;
    margin: 0 auto;
}

.education-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.education-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.education-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.education-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.education-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.education-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.education-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.module {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    text-align: center;
}

.module-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.module h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.module-duration {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial-image {
    position: relative;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-top: 0.5rem;
    color: #FFD700;
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1a202c;
    font-weight: 600;
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.testimonial-stats .stat-item {
    text-align: center;
    flex: 1;
}

.testimonial-stats .stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
}

.testimonial-stats .stat-label {
    font-size: 0.8rem;
    color: #666;
}

/* CTA */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.floating-money {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.money-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.05;
    animation: floatMoney 25s infinite linear;
}

.money-icon:nth-child(1) { left: 20%; animation-delay: 0s; }
.money-icon:nth-child(2) { left: 40%; animation-delay: 5s; }
.money-icon:nth-child(3) { left: 60%; animation-delay: 10s; }
.money-icon:nth-child(4) { left: 80%; animation-delay: 15s; }
.money-icon:nth-child(5) { left: 10%; animation-delay: 20s; }

@keyframes floatMoney {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: #00ff00;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: column;
}

.btn-primary.large, .btn-secondary.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.btn-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-primary {
    background: #FFD700;
    color: #1a202c;
}

.btn-primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.cta-guarantee {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-urgency {
    font-size: 0.8rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    display: inline-flex;
}

/* Registration Section */
.registration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.registration-info .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.registration-benefits {
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.benefit-text p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.registration-testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote i {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: #1a202c;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Registration Form */
.registration-form-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a202c;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:invalid {
    border-color: #ef4444;
}

.form-error {
    display: block;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 400;
    color: #4a5568;
    margin-bottom: 1rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: white;
    display: block;
    cursor: pointer;
}

.checkmark:hover {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    display: block;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.form-security i {
    color: #10b981;
}

.registration-guarantee {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.guarantee-item i {
    color: #10b981;
}

/* Responsive Design for Registration */
@media (max-width: 768px) {
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration-form-container {
        position: static;
        order: -1;
    }
    
    .registration-guarantee {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-video {
        margin-top: 2rem;
    }
    
    .opportunity-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-video {
        margin-top: 1.5rem;
    }
    
    .video-container {
        width: 100%;
        padding: 0;
    }
    
    .market-situation h2,
    .opportunities h2,
    .how-it-works h2,
    .popular-pairs h2,
    .testimonials h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.situation-card,
.step,
.pair-card,
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation for video placeholder */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.video-placeholder {
    animation: pulse 2s infinite;
}

/* Notification system styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
    font-size: 14px;
    line-height: 1.4;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #10b981;
    border-left-color: #059669;
}

.notification.error {
    background: #ef4444;
    border-left-color: #dc2626;
}

.notification.warning {
    background: #f59e0b;
    border-left-color: #d97706;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    opacity: 1;
}

/* Form error message styles */
.form-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    min-height: 16px;
}

/* Form group enhanced styles */
.form-group input:focus,
.form-group select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-group input.valid {
    border-color: #10b981;
}

.form-group input.error {
    border-color: #ef4444;
}

/* Phone input with country code */
.phone-input-container {
    display: flex;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.phone-input-container:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-right: 1px solid #e2e8f0;
    font-weight: 600;
    color: #4a5568;
    min-width: 80px;
}

.flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.phone-input-container input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    background: white;
}

.phone-input-container input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

/* Submit button loading state */
.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-submit .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile notification adjustments */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
        top: 20px;
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Hero Background Effects */
.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
    will-change: transform;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Hero overlay animation */
.hero-overlay {
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.85;
    }
    50% {
        opacity: 0.75;
    }
}

/* Pulse animation for live indicator */
.pulse-dot,
.live-indicator::before {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 8px;
}

.pulse-dot.pulse-active,
.live-indicator.active::before {
    animation: pulse 2s infinite;
}

.pulse-dot.pulse-active::before,
.live-indicator.active::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* CTA Money floating animation */
.floating-money {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.money-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatMoney 10s linear infinite;
}

.money-icon:nth-child(1) { animation-delay: 0s; color: #ffd700; }
.money-icon:nth-child(2) { animation-delay: 2s; color: #00ff88; }
.money-icon:nth-child(3) { animation-delay: 4s; color: #667eea; }
.money-icon:nth-child(4) { animation-delay: 6s; color: #ff6b6b; }
.money-icon:nth-child(5) { animation-delay: 8s; color: #4ecdc4; }

@keyframes floatMoney {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced hero stats animation */
.hero-stats .stat {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.hero-stats .stat:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-stats .stat:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success rate badge animation */
.success-rate {
    animation: slideInRight 1s ease-out 1.2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Live indicator animation */
.live-indicator {
    animation: slideInLeft 1s ease-out 1s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero background parallax effect */
.hero-background {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Smooth animations for mobile */
@media (max-width: 768px) {
    .floating-element {
        font-size: 1.5rem;
        opacity: 0.1;
    }
    
    .money-icon {
        font-size: 1.5rem;
    }
    
    /* Reduce animation intensity on mobile for performance */
    .hero-background {
        transform: none !important;
    }
}

/* Mobile responsive adjustments for registration form */
@media (max-width: 768px) {
    .registration-form {
        padding: 2rem 1.5rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark:after {
        font-size: 12px;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 1rem;
}

.last-updated {
    text-align: center;
    color: #718096;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #667eea;
}

.legal-section h3 {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #4a5568;
    line-height: 1.7;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section li strong {
    color: #2d3748;
}

.risk-warning {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 2px solid #fc8181;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.risk-warning h3 {
    color: #c53030;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.risk-warning p {
    color: #742a2a;
    font-weight: 500;
}

.risk-warning ul {
    color: #742a2a;
}

.risk-warning li strong {
    color: #c53030;
}

.back-to-site {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.back-to-site .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-to-site .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Legal Pages Mobile Responsiveness */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .risk-warning {
        padding: 1rem;
    }
}
