.step-videos {
    display: none;
    margin-top: 20px;
}

.step-videos.active {
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF0080;
    --primary-light: #FF4D9A;
    --secondary: #7C3AED;
    --accent: #FDB813;
    --success: #10B981;
    --dark: #0A0A0B;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #FF0080 0%, #FF4D9A 100%);
    --gradient-secondary: linear-gradient(135deg, #7C3AED 0%, #9F5AE5 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gray-700);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.hero .subtext {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.earnings-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: white;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.earnings-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
}

/* Container */
.journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.progress-bar::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 2px;
    background: var(--gray-200);
    transform: translateY(-50%);
    z-index: 0;
}

.progress-line {
    position: absolute;
    left: 10%;
    top: 50%;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
    transition: width 0.5s ease;
    z-index: 1;
}

.progress-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.progress-circle {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 10px;
    transition: all 0.3s;
    color: var(--gray-500);
}

.progress-step.active .progress-circle {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 8px rgba(255, 0, 128, 0.1);
}

.progress-step.completed .progress-circle {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.progress-step.completed .progress-circle::after {
    content: '✓';
    position: absolute;
    font-size: 1.25rem;
}

.progress-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
    font-weight: 500;
}

.progress-step.active .progress-label,
.progress-step.completed .progress-label {
    color: var(--gray-900);
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    display: none;
    animation: slideIn 0.5s ease;
    position: relative;
}

.step-card.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 50px;
}

.step-header h2 {
    font-size: 2.25rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 800;
}

.step-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* Pink Tag */
.pink-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Understanding Grid */
.understanding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.understanding-card {
    background: var(--gray-50);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--gray-200);
}

.understanding-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: white;
}

.understanding-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
}

.understanding-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Key Messaging */
.messaging-points {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
}

.messaging-points h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.messaging-points p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 2;
}

/* Niche Cards */
.niche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.niche-card {
    background: white;
    border: 3px solid var(--gray-200);
    border-radius: 20px;
    padding: 35px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.niche-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.niche-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.niche-card:hover::before,
.niche-card.selected::before {
    transform: scaleX(1);
}

.niche-card.selected {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05), rgba(124, 58, 237, 0.05));
    border-color: var(--primary);
}

.niche-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.niche-accounts {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.niche-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hashtag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.niche-card:hover .hashtag {
    background: var(--primary);
    color: white;
}

/* Video Placeholder */
.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    /* 9:16 aspect ratio */
    background: var(--gray-900);
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: var(--shadow-xl);
}

.video-placeholder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
}

.video-user {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 100px;
}

.video-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.video-user span {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.video-stats {
    display: flex;
    gap: 15px;
}

.video-stat {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Caption Builder */
.caption-builder {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
}

.caption-section {
    margin-bottom: 30px;
}

.caption-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--gray-700);
}

.caption-dropdown {
    width: 100%;
    background: white;
    border: 2px solid var(--gray-200);
    color: var(--gray-900);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23FF0080' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.caption-dropdown:hover {
    border-color: var(--primary);
}

.caption-dropdown:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.1);
}

/* Caption Preview */
.caption-preview {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    min-height: 200px;
    white-space: pre-wrap;
    line-height: 1.8;
    color: var(--gray-900);
    font-size: 1rem;
}

.caption-preview.empty {
    color: var(--gray-400);
    font-style: italic;
}

/* Buttons */
.btn {
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--dark);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--dark);
    background: var(--gray-50);
}

.copy-btn {
    background: var(--success);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 20px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Content Checklist */
.content-checklist {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.content-checklist h3 {
    color: var(--dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.content-checklist label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 10px 0;
    color: var(--gray-700);
}

.content-checklist input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary);
}

/* Timeline */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.timeline-card {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
}

.timeline-card:nth-child(2) {
    border-color: var(--secondary);
}

.timeline-card:nth-child(3) {
    border-color: var(--success);
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Video Carousel Section */
.carousel-section {
    background: var(--gray-100);
    padding: 80px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    animation: rotate 40s linear infinite reverse;
}

.carousel-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.carousel-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 800;
}

.carousel-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.carousel-wrapper {
    overflow: hidden;
    margin: 0 -10px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 0 10px;
}

.carousel-slide {
    flex: 0 0 300px;
    position: relative;
}

.carousel-video {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    /* 9:16 aspect ratio */
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-video:hover {
    transform: scale(1.02);
}

.carousel-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.carousel-video-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 5px;
}

.carousel-video-stats {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-arrow {
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.carousel-arrow:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-left: 4px solid var(--primary);
    color: var(--gray-900);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-2xl);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.notification-message {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Assets Section */
.assets-download {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #E0F2FE, #DBEAFE);
    border-radius: 24px;
    margin-bottom: 40px;
}

.assets-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.asset-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.asset-card h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.asset-card ul {
    list-style: none;
    color: var(--gray-600);
}

.asset-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.asset-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Congratulations */
.congratulations {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    margin-top: 50px;
}

.congratulations h2 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.congratulations p {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .step-card {
        padding: 30px 20px;
    }

    .understanding-grid,
    .niche-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .progress-label {
        display: none;
    }

    .carousel-slide {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 200px;
    }
}

/* Divider */
.divider {
    height: 1px;
    background: var(--gray-200);
    margin: 40px 0;
}

/* Hidden Video Container for Steps */
.step-videos {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .step-videos.active {
    display: block;
    opacity: 1;
  }


.step-video-card {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    background: var(--dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.step-video-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-overlay:hover {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 3px;
}

