* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    min-height: 100vh;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 28px;
    color: #e50914;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

nav a:hover {
    color: #e50914;
}

/* In-content ad wrapper */
.in-content-ad {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px auto 18px auto;
    max-width: 100%;
}
.in-content-ad iframe {
    max-width: 100%;
}

/* Left Side Ad */
.left-ad-container {
    position: fixed;
    left: 20px;
    top: 100px;
    width: 160px;
    z-index: 999;
}

/* Right Side Ad */
.right-ad-container {
    position: fixed;
    right: 20px;
    top: 100px;
    width: 160px;
    z-index: 999;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 20px 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.hero-content h3 {
    font-size: 32px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.free-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white !important;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.platform-badge {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 150px;
    text-align: center;
}

.platform-badge.netflix {
    background-color: #e50914;
}

.platform-badge.prime {
    background-color: #00a8e1;
}

.platform-badge.hbo {
    background-color: #5133ea;
}

.cta-button {
    background-color: #e50914;
    color: white;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    display: inline-block;
    margin-bottom: 0;
}

.cta-button:hover {
    background-color: #c40812;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
}

.cta-button.pulse {
    animation: buttonPulse 2s infinite;
}

.verification-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-indicator {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 20px 30px;
    margin: 30px auto;
    max-width: 400px;
    text-align: center;
}

.step-text {
    margin: 20px 0 5px 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.step-highlight {
    color: #e50914;
    font-weight: 700;
    font-size: 18px;
}

.step-wait {
    margin: 5px 0 25px 0;
    color: #666;
    font-size: 14px;
    text-align: center;
}

.continue-button {
    background: #2196f3;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.continue-button:hover {
    background: #1976d2;
    transform: translateY(-1px);
}

.notice-icon {
    font-size: 32px;
}

.verification-notice p {
    margin: 0;
    color: #856404;
    font-size: 16px;
}

.user-count {
    margin-top: 20px;
    color: #22c55e;
    font-weight: 600;
    font-size: 16px;
}

/* Benefits Section */
.benefits {
    padding: 80px 50px;
    background-color: #ffffff;
}

.benefits h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #222;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e50914;
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.benefit-card p {
    color: #666;
    font-size: 16px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #222;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e50914;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.step p {
    color: #666;
    font-size: 15px;
}

.step-arrow {
    font-size: 36px;
    color: #e50914;
    font-weight: 700;
}

/* Verification Section */
.verification-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.verification-container {
    max-width: 600px;
    margin: 0 auto;
}

.verification-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 10px;
    color: #222;
}

.verification-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.verification-alert {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-icon {
    font-size: 28px;
}

.verification-alert p {
    margin: 0;
    color: #0d47a1;
    font-size: 15px;
    line-height: 1.6;
}

.verification-alert strong {
    color: #e50914;
    font-size: 18px;
}

.verification-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.verification-step {
    animation: fadeIn 0.5s ease-in;
}

.step-header {
    text-align: center;
    margin-bottom: 20px;
}

.step-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.step-badge.success-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.verification-step h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #222;
    text-align: center;
    font-weight: 700;
}

.verification-step p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.input-field {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.input-field:focus {
    outline: none;
    border-color: #e50914;
}

.verify-button {
    width: 100%;
    background-color: #e50914;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.verify-button:hover {
    background-color: #c40812;
    transform: translateY(-2px);
}

.verify-button.success-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.verify-button.success-button:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.captcha-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #e50914;
}

.captcha-question {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: #222;
}

.error-message {
    color: #e50914;
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
}

.platform-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.platform-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.platform-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.platform-label {
    padding: 20px 25px;
    border-radius: 12px;
    flex: 1;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.platform-name {
    font-size: 18px;
    font-weight: 700;
}

.platform-desc {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
}

.netflix-label {
    background-color: #e50914;
}

.prime-label {
    background-color: #00a8e1;
}

.hbo-label {
    background-color: #5133ea;
}

.platform-option input[type="radio"]:checked + .platform-label {
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.3);
    transform: scale(1.02);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease-out;
}

.loading-bar {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px 0;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #e50914, #ff4444);
    animation: loading 2s ease-in-out infinite;
}

.success-message {
    font-size: 18px;
    color: #16a34a;
    font-weight: 600;
}

.success-details {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid #22c55e;
}

.success-details p {
    margin: 10px 0;
}

.processing-text {
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.success-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f0fdf4;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #22c55e;
}

.info-icon {
    font-size: 28px;
}

.info-item p {
    margin: 0;
    color: #166534;
    font-weight: 500;
}

.success-note {
    text-align: center;
    color: #22c55e;
    font-weight: 700;
    margin-top: 20px;
    font-size: 16px;
    background: #f0fdf4;
    padding: 15px;
    border-radius: 10px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 10px 20px;
    background: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 40px 50px;
    text-align: center;
}

.footer-content p {
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e50914;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.warning-message {
    margin-top: 16px;
    font-size: 13px;
    color: #1e40af;
    font-weight: 700;
    animation: slideAndPulse 2s ease-in-out infinite;
    padding: 10px 18px;
    border-radius: 8px;
    background-color: #dbeafe;
    border: 2px solid #60a5fa;
    display: block;
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.2);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes loading {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(229, 9, 20, 0.6);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

@keyframes slideAndPulse {
    0% {
        transform: translateY(0) scale(1);
        background-color: #dbeafe;
        border-color: #60a5fa;
    }
    25% {
        transform: translateY(-3px) scale(1.01);
        background-color: #bfdbfe;
        border-color: #3b82f6;
    }
    50% {
        transform: translateY(0) scale(1.02);
        background-color: #93c5fd;
        border-color: #2563eb;
    }
    75% {
        transform: translateY(-3px) scale(1.01);
        background-color: #bfdbfe;
        border-color: #3b82f6;
    }
    100% {
        transform: translateY(0) scale(1);
        background-color: #dbeafe;
        border-color: #60a5fa;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide left and right ads on mobile */
    .left-ad-container,
    .right-ad-container {
        display: none;
    }
    
    /* Header - Mobile Optimized */
    header {
        padding: 15px 20px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .logo h1 {
        font-size: 22px;
    }

    nav {
        gap: 15px;
    }

    nav a {
        font-size: 14px;
    }

    /* Hero Section - Mobile */
    .hero {
        padding: 50px 15px;
    }

    .hero-content h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content h3 {
        font-size: 20px;
    }

    .free-badge {
        font-size: 18px !important;
        padding: 10px 25px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .platforms {
        flex-direction: row;
        gap: 12px;
        padding: 0 20px;
        justify-content: center;
    }

    .platform-badge {
        max-width: 150px;
        padding: 12px 20px;
        font-size: 15px;
    }

    .verification-notice {
        margin: 20px 10px;
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .step-indicator {
        margin: 20px 10px;
        padding: 15px 20px;
        max-width: 90%;
    }

    .step-text {
        font-size: 14px;
        margin: 15px 0 5px 0;
    }

    .step-highlight {
        font-size: 16px;
    }

    .step-wait {
        font-size: 13px;
        margin: 5px 0 20px 0;
    }

    .notice-icon {
        font-size: 28px;
    }

    .verification-notice p {
        font-size: 14px;
    }

    .cta-button {
        width: 90%;
        padding: 16px 30px;
        font-size: 16px;
    }

    .cta-button span {
        display: block;
    }

    .warning-message {
        max-width: 90%;
        font-size: 12px;
        padding: 8px 14px;
    }

    .user-count {
        font-size: 14px;
    }

    /* Benefits Section - Mobile */
    .benefits,
    .how-it-works,
    .verification-section {
        padding: 50px 15px;
    }

    .benefits h2,
    .how-it-works h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        font-size: 40px;
    }

    .benefit-card h3 {
        font-size: 20px;
    }

    .benefit-card p {
        font-size: 15px;
    }

    /* How It Works - Mobile */
    .steps {
        flex-direction: column;
        gap: 15px;
    }

    .step {
        width: 100%;
        padding: 30px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step h3 {
        font-size: 20px;
    }

    .step p {
        font-size: 14px;
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 28px;
    }

    /* Verification Section - Mobile */
    .verification-container {
        padding: 0 10px;
    }

    .verification-container h2 {
        font-size: 26px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .verification-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .verification-alert {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .alert-icon {
        font-size: 24px;
    }

    .verification-alert p {
        font-size: 14px;
    }

    .verification-box {
        padding: 20px 15px;
    }

    .verification-step h3 {
        font-size: 22px;
    }

    .verification-step p {
        font-size: 15px;
    }

    .step-badge {
        font-size: 13px;
        padding: 6px 16px;
    }

    .input-field {
        padding: 12px 15px;
        font-size: 15px;
    }

    .verify-button {
        padding: 14px;
        font-size: 16px;
    }

    .captcha-box {
        padding: 15px;
    }

    .captcha-question {
        font-size: 18px;
    }

    /* Platform Selection - Mobile */
    .platform-selection {
        gap: 12px;
    }

    .platform-option {
        flex-direction: column;
        align-items: stretch;
    }

    .platform-option input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

    .platform-label {
        padding: 15px 20px;
        text-align: center;
        border: 3px solid transparent;
    }

    .platform-option input[type="radio"]:checked + .platform-label {
        border: 3px solid #ffffff;
        box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.5);
    }

    .platform-name {
        font-size: 16px;
    }

    .platform-desc {
        font-size: 12px;
    }

    /* Success Page - Mobile */
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 40px;
        margin-bottom: 20px;
    }

    .success-message {
        font-size: 16px;
    }

    .success-details {
        padding: 20px 15px;
    }

    .success-details p {
        font-size: 14px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 12px;
        gap: 10px;
    }

    .info-icon {
        font-size: 24px;
    }

    .info-item p {
        font-size: 14px;
    }

    .success-note {
        font-size: 14px;
        padding: 12px;
    }

    /* Trust Badges - Mobile */
    .trust-badges {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }

    .trust-badge {
        width: 100%;
        text-align: center;
    }

    /* Footer - Mobile */
    footer {
        padding: 30px 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        font-size: 14px;
    }
}

/* Extra Small Devices (phones in portrait, less than 576px) */
@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    .free-badge {
        font-size: 16px !important;
        padding: 8px 20px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .cta-button {
        font-size: 15px;
        padding: 14px 25px;
    }

    .verification-container h2 {
        font-size: 22px;
    }

    .verification-step h3 {
        font-size: 20px;
    }

    .benefits h2,
    .how-it-works h2 {
        font-size: 24px;
    }
}

/* Landscape Mode Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 15px;
    }

    .verification-notice {
        margin: 15px 10px;
    }

    .benefits,
    .how-it-works,
    .verification-section {
        padding: 40px 15px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets for mobile */
    nav a {
        padding: 10px 15px;
    }

    .cta-button,
    .verify-button {
        min-height: 48px;
    }

    input[type="radio"] {
        min-width: 24px;
        min-height: 24px;
    }

    .platform-label {
        min-height: 60px;
    }
}
