* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to right, #e3f2fd 0%, #ffffff 100%);
    min-height: 100vh;
}

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

/* Intro Section */
.intro-section {
    text-align: center;
    padding: 30px 20px 10px;
    max-width: 600px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.watch-video-prompt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 0;
}

.prompt-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.arrow-down {
    font-size: 24px;
    color: #999;
    flex-shrink: 0;
}

/* Video Section */
.video-section {
    position: relative;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
    padding: 0 20px;
    padding-top: 20px;
}

.business-insider-banner {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
    text-align: center;
    width: fit-content;
    margin: 0;
    max-width: calc(100% - 40px);
}

.business-insider-banner strong {
    font-size: 16px;
    font-weight: bold;
}

vturb-smartplayer {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.video-player {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-content {
    text-align: center;
}

.video-instruction {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.video-headline {
    color: white;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
}

.youtube-logo {
    color: #FF0000;
    font-weight: bold;
}

.video-subtitle {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}

.video-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.5);
    z-index: 5;
}

.play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.freedom-text {
    color: white;
    font-size: 18px;
    margin: 30px 0 20px;
}

.red-cta-button {
    background: #e53935;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 20px;
}

.red-cta-button:hover {
    background: #c62828;
}

/* Access Section */
.access-section {
    margin-top: 40px;
    text-align: center;
    padding: 0 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-bar {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
}

.countdown-text {
    color: #555;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.timer-box {
    background: #2196F3;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    flex-shrink: 0;
}

/* Animação de brilho para os botões */
@keyframes buttonShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.main-cta-button {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, #42A5F5 0%, #1976D2 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 auto 25px;
    display: block;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    position: relative;
    overflow: hidden;
}

.main-cta-button > * {
    position: relative;
    z-index: 2;
}

.main-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: buttonShine 2.5s infinite;
    z-index: 1;
    pointer-events: none;
}

.main-cta-button:hover {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

/* Unificar todos os botões CTA com o mesmo estilo */
.fast-start-button,
.final-cta-button {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, #42A5F5 0%, #1976D2 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 auto 25px;
    display: block;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    position: relative;
    overflow: hidden;
}

.fast-start-button > *,
.final-cta-button > * {
    position: relative;
    z-index: 2;
}

.fast-start-button::before,
.final-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: buttonShine 2.5s infinite;
    z-index: 1;
    pointer-events: none;
}

.fast-start-button:hover,
.final-cta-button:hover {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

/* Unificar todos os estilos de preço */
.pricing,
.fast-start-pricing,
.final-cta-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 20px;
    white-space: nowrap;
}

.pricing-text,
.fast-start-pricing .pricing-text,
.final-cta-pricing .pricing-text {
    color: #555;
    font-size: 18px;
}

.price-highlight,
.fast-start-pricing .price-highlight,
.final-cta-pricing .price-highlight {
    background: #FFD700;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 28px;
    font-weight: bold;
}

.price-old,
.fast-start-pricing .price-old,
.final-cta-pricing .price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 20px;
}

.pricing-date,
.fast-start-pricing .pricing-date,
.final-cta-pricing .pricing-date {
    color: #555;
    font-size: 14px;
}

/* 5-Day Plan Section */
.plan-section {
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.plan-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.day-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-thumbnail-container {
    width: 100%;
    position: relative;
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.day1-thumbnail {
    background-image: url('images/day1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.day2-thumbnail {
    background-image: url('images/day2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.day3-thumbnail {
    background-image: url('images/day3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.day4-thumbnail {
    background-image: url('images/day4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.day5-thumbnail {
    background-image: url('images/day5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.day-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2196F3;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    z-index: 2;
}

.day-description {
    padding: 25px;
}

.day-description p {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.day-description p:last-child {
    margin-bottom: 0;
}

/* Results Section */
.results-section {
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.results-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.results-image-container {
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    overflow: visible;
}

.results-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    max-width: 100%;
}

/* YouTube Income Section */
.income-section {
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.income-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.main-income-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 50px 30px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}

.dollar-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-income-text {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.main-income-subtext {
    font-size: 18px;
    color: #666;
}

.youtubers-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.youtuber-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 20px;
}

.youtuber-visual {
    position: relative;
    margin-bottom: 15px;
}

.youtuber-banner {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mrbeast-banner {
    background-image: url('images/mr.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.youtuber-name-large {
    font-size: 32px;
    font-weight: bold;
    color: white;
    letter-spacing: 3px;
    z-index: 1;
    position: relative;
}

.dudeperfect-banner {
    background-image: url('images/dude.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 150px;
}

.ryansworld-banner {
    background-image: url('images/ryan.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 150px;
}

.youtuber-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 2;
}

.mrbeast-logo {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border: 3px solid white;
}

.dudeperfect-logo {
    background: #4CAF50;
    color: #333;
    border: 3px solid white;
}

.ryansworld-logo {
    background: #FF9800;
    border: 3px solid white;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23FF9800"/></svg>');
}

.youtuber-amount {
    background: #FFD700;
    color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.youtuber-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: right;
}

.youtuber-text-left {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 10px;
}

.youtuber-text-right {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: right;
    margin-bottom: 10px;
}

.youtuber-text-below {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.play-icon {
    color: #2196F3;
    font-weight: bold;
}

/* Growth Section */
.growth-section {
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.growth-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.growth-text-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.growth-text {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.percentage-highlight {
    color: #2196F3;
    font-weight: bold;
    font-size: 20px;
}

.graph-container {
    max-width: 900px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 30px 20px;
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.graph-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.graph-unit {
    font-size: 14px;
    color: #666;
}

.growth-graph {
    width: 100%;
    height: auto;
    max-height: 400px;
}

/* Channel Cards */
.channels-container {
    max-width: 600px;
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.channels-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.channel-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 0;
}

.channel-banner {
    width: 100%;
    height: 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 15px;
}

.premium-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    justify-content: space-between;
}

.banner-text {
    font-size: 14px;
    font-weight: bold;
    color: white;
    z-index: 2;
    flex: 1;
    line-height: 1.3;
}

.premium-person {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.premium-person::before {
    content: '👤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.evil-banner {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    justify-content: space-between;
}

.banner-images {
    display: flex;
    gap: 10px;
    align-items: center;
}

.banner-baby {
    width: 50px;
    height: 50px;
    background: #FFB6C1;
    border-radius: 50%;
    position: relative;
}

.banner-baby::before {
    content: '👶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
}

.banner-spoon {
    width: 40px;
    height: 40px;
    background: #90EE90;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 10px rgba(144, 238, 144, 0.8);
}

.banner-spoon::before {
    content: '🥄';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
}

.millionaire-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    justify-content: center;
    align-items: center;
}

.banner-collage {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(2px);
    opacity: 0.5;
}

.channel-profile-container {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.channel-profile {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ddd;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.premium-profile {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
}

.premium-profile::before {
    content: '👤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.evil-profile {
    background: #fff;
    border: 3px solid #ddd;
}

.evil-profile::before {
    content: '👩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.millionaire-profile {
    background: #2c3e50;
    border: 3px solid #ddd;
}

.millionaire-profile::before {
    content: '👤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    filter: grayscale(100%);
}

.subscriber-badge {
    background: #FFD700;
    padding: 12px 20px;
    border-radius: 8px;
    flex: 1;
}

.subscriber-label {
    font-size: 12px;
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}

.subscriber-count {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.channel-connector {
    width: 2px;
    height: 30px;
    border-left: 2px dotted #999;
    margin: 0 auto;
    position: relative;
}

.channel-connector::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -4px;
    width: 0;
    height: 0;
    border-left: 6px solid #999;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Beginners Section */
.beginners-section {
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.beginners-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.devil-section {
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.devil-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 40px 30px;
}

.content-text {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-text:last-child {
    margin-bottom: 0;
}

.content-text strong {
    font-weight: bold;
}

.youtube-thumbnail-container {
    margin: 30px 0;
}

.thumbnail-info {
    margin-bottom: 10px;
}

.thumbnail-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 2px;
}

.thumbnail-channel {
    font-size: 12px;
    color: #666;
}

.youtube-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.thumbnail-1,
.thumbnail-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Fast-Start CTA Section */
.fast-start-cta-section {
    margin: 60px 0;
    padding: 0 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}



.everything-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.fast-start-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 30px;
    overflow: hidden;
}

.video-player-area {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.main-video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    z-index: 2;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder::before {
    content: '👤';
    position: absolute;
    font-size: 120px;
    opacity: 0.3;
}

.play-button-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.play-button-large svg {
    margin-left: 5px;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    width: 100%;
}

.video-thumbnails-collage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    pointer-events: none;
    z-index: 1;
    padding: 10px;
}

.thumbnail-faded {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    opacity: 0.5;
    filter: grayscale(100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.thumbnail-faded:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    transform: translate(-15px, -15px) rotate(-5deg);
}

.thumbnail-faded:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
    transform: translate(15px, -15px) rotate(5deg);
}

.thumbnail-faded:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    transform: translate(-15px, 15px) rotate(5deg);
}

.thumbnail-faded:nth-child(4) {
    grid-column: 3;
    grid-row: 3;
    transform: translate(15px, 15px) rotate(-5deg);
}

.thumbnail-faded:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
    opacity: 0.3;
}

.fast-start-content {
    padding: 0 10px;
}

.fast-start-card-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.fast-start-description {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    text-align: center;
}

/* Features Section */
.features-section {
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 40px 30px;
    margin-bottom: 30px;
}

.feature-card:last-child {
    margin-bottom: 0;
}

.feature-icon-container {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.feature-icon-container .block-image {
    max-width: 100%;
    height: auto;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #42A5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(66, 165, 245, 0.3);
}

.feature-document {
    position: absolute;
    width: 200px;
    height: 150px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: flex-start;
    padding: 15px;
    z-index: 1;
    transform: translateX(40px) rotate(5deg);
}

.document-text {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.feature-laptop {
    position: absolute;
    width: 220px;
    height: 160px;
    background: #e0e0e0;
    border-radius: 8px 8px 2px 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1;
    transform: translateX(40px) rotate(5deg);
    padding: 8px;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    padding: 15px;
}

.feature-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.feature-description {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    text-align: center;
}

/* Final CTA Section */
.final-cta-section {
    margin: 60px 0;
    padding: 0 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}



/* Responsive */
@media (max-width: 768px) {
    .video-headline {
        font-size: 24px;
    }
    
    .business-insider-banner {
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 40px);
        font-size: 12px;
        padding: 10px 15px;
    }
    
    .watch-video-prompt {
        flex-direction: column;
    }
    
    .countdown-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing {
        flex-direction: column;
    }
    
    .plan-title {
        font-size: 22px;
        padding: 0 10px;
    }
    
    .day-description {
        padding: 20px;
    }
    
    .day-description p {
        font-size: 15px;
    }
    
    .results-title {
        font-size: 26px;
        padding: 0 10px;
    }
    
    .results-image-container {
        padding: 15px;
    }
    
    .income-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .main-income-card {
        padding: 40px 20px 30px;
    }
    
    .main-income-text {
        font-size: 22px;
    }
    
    .main-income-subtext {
        font-size: 16px;
    }
    
    .youtuber-banner {
        height: 120px;
    }
    
    .youtuber-name-large {
        font-size: 24px;
    }
    
    .youtuber-amount {
        font-size: 20px;
    }
    
    .growth-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .growth-text {
        font-size: 16px;
    }
    
    .percentage-highlight {
        font-size: 18px;
    }
    
    .graph-container {
        padding: 20px 10px;
    }
    
    .graph-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .channel-banner {
        height: 100px;
        flex-direction: column;
        padding: 10px;
    }
    
    .banner-text {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .premium-person,
    .banner-baby,
    .banner-spoon {
        width: 50px;
        height: 50px;
    }
    
    .channel-profile-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .channel-profile {
        width: 60px;
        height: 60px;
    }
    
    .subscriber-badge {
        width: 100%;
    }
    
    .paid-for-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .photos-collage {
        padding: 20px;
    }
    
    .paid-for-text {
        font-size: 16px;
    }
    
    .platform-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .platform-text {
        font-size: 16px;
    }
    
    .data-table-container {
        padding: 15px;
    }
    
    .beginners-title,
    .devil-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .content-card {
        padding: 25px 20px;
    }
    
    .content-text {
        font-size: 16px;
    }
    
    .main-cta-button,
    .fast-start-button,
    .final-cta-button {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .pricing .price-highlight,
    .fast-start-pricing .price-highlight,
    .final-cta-pricing .price-highlight {
        font-size: 24px;
    }
    
    .everything-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .fast-start-card {
        padding: 20px;
    }
    
    .fast-start-card-title {
        font-size: 22px;
    }
    
    .fast-start-description {
        font-size: 16px;
    }
    
    .play-button-large {
        width: 80px;
        height: 80px;
    }
    
    .play-button-large svg {
        width: 40px;
        height: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon-container {
        min-height: 80px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .final-cta-button {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .final-cta-pricing .price-highlight {
        font-size: 24px;
    }
}

/* My Channels Paid For Section */
.paid-for-section {
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.paid-for-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.photos-collage {
    max-width: 800px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dad-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.paid-for-text-container {
    max-width: 800px;
    margin: 0 auto;
}

.paid-for-text {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.highlight-yellow {
    background: #FFD700;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
}

/* Platform Section */
.platform-section {
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.platform-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.platform-text-container {
    max-width: 800px;
    margin: 0 auto 30px;
}

.platform-text {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.platform-text strong {
    font-weight: bold;
}

.data-table-container {
    max-width: 700px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yout-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive */
