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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section - Professional Landing */
.hero-section {
    background: linear-gradient(180deg, #667eea 0%, #704ba5 100%);
    color: white;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 800px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    margin: 20px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -2px;
    background: linear-gradient(45deg, #fff, #4ECDC4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.25);
    padding: 20px 24px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-stat.main-stat {
    transform: scale(1.1);
    background: rgba(78, 205, 196, 0.3);
    border: 3px solid rgba(78, 205, 196, 0.7);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
}

.main-mc {
    font-size: 40px !important;
    background: linear-gradient(45deg, #4ECDC4, #2196F3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #4ECDC4;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
}

.cta-primary {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    font-size: 48px;
    color: #4ECDC4;
}

.float-item:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    font-size: 36px;
}

.float-item:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    font-size: 28px;
}

.float-item:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
    font-size: 32px;
}

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

/* Contract Address Section */
.contract-section {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contract-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #4ECDC4;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    word-break: break-all;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.copy-button {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.copy-button:active {
    transform: translateY(0);
}

/* Story Introduction Section */
.story-intro-section {
    background: linear-gradient(180deg, #704ba5 0%, #6a7edc 100%);
    padding: 60px 20px 60px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Phenomenon Section */
.phenomenon-section {
    background: linear-gradient(180deg, #6a7edc 0%, #667eea 100%);
    padding: 60px 20px 60px;
    text-align: center;
    color: white;
}

.phenomenon-section h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.phenomenon-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
}

.price-widget {
    background: white;
    border-radius: 24px;
    padding: 32px;
    margin: 0 auto 40px;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.live-indicator {
    background: #4ECDC4;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

.price-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.price-main {
    margin-bottom: 24px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    color: #2196F3;
    margin-right: 12px;
    transition: transform 0.2s ease;
}

.price-change {
    background: #4CAF50;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.price-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.detail-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-headline {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
    letter-spacing: -1px;
}

.story-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-video {
    margin: 50px 0;
}

.video-wrapper {
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.video-caption {
    margin-top: 20px;
}

.caption-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.highlight {
    color: #4ECDC4;
    font-weight: bold;
}

/* Social Proof Section */
.social-proof-section {
    background: linear-gradient(180deg, #704ba5 0%, #6a7edc 100%);
    padding: 80px 20px;
}

.proof-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
}

.proof-subtitle {
    font-size: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brand-highlight {
    color: #2196F3;
    font-weight: 700;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.proof-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, #f8f9ff, #ffffff);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.proof-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.proof-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.proof-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.proof-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.evidence-section {
    text-align: center;
    margin-top: 60px;
}

.evidence-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.evidence-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.evidence-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.evidence-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.evidence-item:hover {
    transform: translateY(-5px);
}

.evidence-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-height: 500px;
}

.evidence-item:hover .evidence-image {
    transform: scale(1.05);
}

.evidence-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    font-weight: 600;
    font-size: 16px;
}

/* Professional CTA Section */
.cta-section {
    background: linear-gradient(180deg, #667eea 0%, #704ba5 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.6);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.professional-ticker {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 16px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.ticker-scroll {
    white-space: nowrap;
    animation: tickerMove 30s linear infinite;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes tickerMove {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Removed fade-in animations to prevent white background flashes */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 64px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stat {
        padding: 16px 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .story-headline {
        font-size: 28px;
    }
    
    .proof-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .evidence-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .price-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .video-wrapper iframe {
        width: 300px;
        height: 500px;
    }
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(180deg, #667eea 0%, #704ba5 100%);
    padding: 60px 20px 40px;
    color: white;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    text-align: left;
}

.disclaimer-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.disclaimer-footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Social Section - Blue */
.social-section {
    background: linear-gradient(180deg, #704ba5 0%, #6a7edc 100%);
    padding: 30px 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon img {
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Ticker */
.ticker-container {
    width: 100%;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}

.ticker {
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    color: white;
    font-weight: bold;
    display: inline-block;
    will-change: transform;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Content Section - White */
.content-section {
    background: linear-gradient(180deg, #6a7edc 0%, #667eea 100%);
    padding: 60px 20px;
    text-align: center;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Main Gallery - 4 Images Like B.O.B */
.main-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    overflow-x: auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    min-width: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: none;
}

.emoji-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.explanation-text {
    margin: 40px 0;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.example-header {
    margin: 40px 0 20px;
}

.example-header h3 {
    color: #4ECDC4;
    font-size: 24px;
}

/* Large Example */
.large-example {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    overflow-x: auto;
}

.example-large-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    min-width: 600px;
}

/* Why 67 Dominates Section */
.engagement-section {
    background: linear-gradient(180deg, #667eea 0%, #704ba5 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.engagement-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 25px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Slideshow Section */
.slideshow-section {
    background: linear-gradient(180deg, #704ba5 0%, #6a7edc 100%);
    padding: 60px 20px;
    text-align: center;
}

.slideshow-section h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 40px;
}

.tiktok-slideshow {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    background: #2C3E50;
}

.slide.active {
    display: block;
}

.slide iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.slide-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(33, 150, 243, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 18px;
    z-index: 10;
}

/* Navigation Buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(33, 150, 243, 0.8);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 20;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(33, 150, 243, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Slide Indicators */
.slide-indicators {
    text-align: center;
    margin-top: 20px;
}

.indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(33, 150, 243, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2196F3;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(33, 150, 243, 0.7);
}

/* Roadmap Section */
.roadmap-section {
    background: linear-gradient(180deg, #6a7edc 0%, #667eea 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    pointer-events: none;
}

.roadmap-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.roadmap-section > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.roadmap-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 968px) {
    .roadmap-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
    
    .roadmap-path {
        display: none;
    }
}

.roadmap-path {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    z-index: 1;
}

.roadmap-path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4ECDC4 0%, #FFD700 50%, #8E44AD 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.milestone:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -40%;
    width: 80%;
    height: 3px;
    background: rgba(255,255,255,0.3);
    z-index: 1;
}

.milestone.completed:not(:last-child)::after {
    background: linear-gradient(90deg, #4ECDC4 0%, #44A08D 100%);
}

.milestone:first-child::after {
    right: -45%;
    width: 85%;
}

.milestone-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 3px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.milestone.completed .milestone-circle {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    border-color: #4ECDC4;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.4);
}

.milestone.active .milestone-circle {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.milestone-number {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.milestone-content h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.milestone-content p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.milestone-status {
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 15px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.milestone.completed .milestone-status {
    background: rgba(78, 205, 196, 0.3);
}

.milestone.active .milestone-status {
    background: rgba(255, 215, 0, 0.3);
}

.progress-bar {
    max-width: 600px;
    margin: 30px auto 20px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ECDC4 0%, #FFD700 50%, #8E44AD 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

/* Final CTA */
.final-cta-section {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.final-cta-section .join-banner {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }
    
    .perfect-meme h2 {
        font-size: 24px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .video-container iframe {
        width: 300px;
        height: 450px;
    }
    
    .main-gallery {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 0 10px;
        scroll-snap-type: x mandatory;
    }
    
    .gallery-item {
        flex: 0 0 200px;
        scroll-snap-align: start;
    }
    
    .gallery-image {
        height: auto;
        max-width: none;
    }
    
    .price-display {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .price-value {
        font-size: 20px;
    }
    
    .large-example {
        margin: 0 10px;
        overflow-x: auto;
    }
    
    .example-large-image {
        min-width: 400px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .engagement-section h2 {
        font-size: 24px;
    }
    
    .roadmap-container {
        flex-direction: column;
        gap: 40px;
        max-width: 300px;
    }
    
    .roadmap-path {
        display: none;
    }
    
    .milestone-circle {
        width: 50px;
        height: 50px;
    }
    
    .milestone-number {
        font-size: 20px;
    }
    
    .milestone-content h3 {
        font-size: 24px;
    }
    
    .roadmap-section h2 {
        font-size: 28px;
    }
    
    .roadmap-section > p {
        font-size: 16px;
    }
    
    .tiktok-slideshow {
        max-width: 320px;
    }
    
    .slideshow-container {
        height: 500px;
    }
    
    .prev-btn, .next-btn {
        font-size: 18px;
        padding: 10px 15px;
    }
    
    .engagement-section h2 {
        font-size: 28px;
    }
    
    .engagement-section p {
        font-size: 16px;
    }
    
    .movement-section h2 {
        font-size: 28px;
    }
}