* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0077b6;
            --accent-gold: #f9a825;
            --accent-coral: #ff6b6b;
            --text-dark: #1a1a2e;
            --text-medium: #4a4a6a;
            --text-light: #ffffff;
            --bg-overlay: rgba(255, 255, 255, 0.92);
            --success: #2ecc71;
            --error: #e74c3c;
        }

        body {
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Tropical Background */
        .page-wrapper {
            min-height: 100vh;
            background: linear-gradient(180deg, rgba(0, 20, 60, 0.55) 0%, rgba(0, 0, 0, 0.15) 100%),
                        url('/snapcap3/images/sunset-tropical-beach-stockcake.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .page-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg,
                rgba(255,255,255,0.15) 0%,
                rgba(255,255,255,0.25) 50%,
                rgba(255,255,255,0.2) 100%);
            pointer-events: none;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        header {
            padding: 20px 0;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 32px;
            letter-spacing: -1px;
            color: #77aaff;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }

        .logo span {
            color: var(--accent-gold);
        }

        /* Main Content */
        .main-content {
            padding: 60px 0;
            min-height: calc(100vh - 160px);
            display: flex;
            align-items: center;
        }

        .split-layout {
            display: grid;
            grid-template-columns: 1fr 520px;
            gap: 60px;
            align-items: start;
            width: 100%;
        }

/* Left Side - Content */
.content-section {
    animation: fadeInUp 1s ease-out;
    align-self: start;
    width: 100%;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        .script-headline {
            font-family: 'Great Vibes', cursive;
            font-size: 56px;
            color: #ffffff;
            text-shadow: 3px 3px 12px rgba(0,0,0,0.4);
            margin-bottom: 8px;
            animation: fadeInUp 1s ease-out 0.2s both, shimmerText 3s ease-in-out infinite;
        }

        @keyframes shimmerText {
            0%, 100% { text-shadow: 3px 3px 12px rgba(0,0,0,0.4), 0 0 20px rgba(255,200,100,0.3); }
            50% { text-shadow: 3px 3px 12px rgba(0,0,0,0.4), 0 0 40px rgba(255,200,100,0.6); }
        }

        .main-headline {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 800;
            line-height: 1.15;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            margin-bottom: 24px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .main-headline .highlight {
            color: #face75;
            position: relative;
            animation: glowPulse 2s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { filter: drop-shadow(0 0 5px rgba(249,168,37,0.5)); }
            50% { filter: drop-shadow(0 0 15px rgba(249,168,37,0.9)); }
        }

        .main-headline .highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(255,255,255,0.5);
            border-radius: 2px;
            animation: shimmer 2s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.5; width: 100%; }
            50% { opacity: 1; width: 120%; }
        }

        .subheadline {
            font-size: 22px;
            color: #ffffff;
            margin-bottom: 36px;
            line-height: 1.7;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .subheadline strong {
            font-weight: 900;
            color: #face75;
            animation: fadeInOut 2s ease-in-out infinite;
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Video */

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    padding-top: 0;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
    margin-left: 0;
    margin-right: auto;
}
.content-section > div[style] {
        margin-left: auto !important;
        margin-right: auto !important;
    }
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('https://myautobuilder.com/posters/free-capture-beach-nexus2.png') center center / cover no-repeat;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-placeholder:hover {
    background: url('https://myautobuilder.com/posters/free-capture-beach-nexus2.png') center center / cover no-repeat;
}

        .video-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 8px;
        }

        .video-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            max-width: 85%;
            line-height: 1.4;
        }
.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: rgba(255,255,255,0.4);
    margin-left: 5px;
}

.inviterdetails {
    width: 100%;
    max-width: 400px;
    margin: 0 0 16px 0;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 16px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.inviterdetails h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}

.inviter-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.inviter-info {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.inviter-info img {
    width: 70px;
    height: auto;
    border-radius: 12px;
    display: block;
    border: 2px solid rgba(255,255,255,0.2);
}

.inviter-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}
        /* Right Side - Form */
        .form-section {
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .form-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.25);
            position: relative;
            overflow: hidden;
        }

        .form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-coral), var(--accent-gold));
        }

        .form-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .form-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-coral));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .form-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .form-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-subtitle {
            font-size: 16px;
            color: var(--text-medium);
            line-height: 1.5;
        }

        .form-subtitle .urgent {
            color: var(--accent-coral);
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-medium);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 16px 18px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-blue);
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(0,119,182,0.1);
        }

        .form-input::placeholder {
            color: #adb5bd;
        }

        .form-input.error {
            border-color: var(--error);
            animation: shake 0.5s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .error-message {
            font-size: 13px;
            color: var(--error);
            margin-top: 6px;
            display: none;
        }

        .error-message.show {
            display: block;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .cta-button {
            width: 100%;
            padding: 20px 24px;
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--accent-coral) 0%, #ff8e53 100%);
            border: none;
            border-radius: 14px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255,107,107,0.4);
            margin-top: 8px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,107,107,0.5);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        .cta-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .trust-badges {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-medium);
        }

        .trust-badge svg {
            width: 16px;
            height: 16px;
            fill: var(--success);
        }

        /* Success State */
        .success-state {
            display: none;
            text-align: center;
            padding: 20px 0;
        }

        .success-state.show {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--success) 0%, #27ae60 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            0% { transform: scale(0); }
            60% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .success-icon svg {
            width: 50px;
            height: 50px;
            fill: white;
        }

        .success-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--success), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .success-message {
            font-size: 18px;
            color: var(--text-medium);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, rgba(0,30,60,0.97) 0%, rgba(0,20,40,0.98) 100%);
            backdrop-filter: blur(10px);
            padding: 30px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0,180,216,0.5), transparent);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: #0050cb;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        
        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-link {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-gold);
            text-shadow: 0 0 10px rgba(249,168,37,0.5);
        }

        .footer-copyright {
            width: 100%;
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .split-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .main-headline {
                font-size: 40px;
            }

            .content-section {
                text-align: center;
            }

            .video-wrapper {
                max-width: 600px;
                margin: 0 auto;
            }

            .form-section {
                max-width: 500px;
                margin: 0 auto;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .main-content {
                padding: 40px 0;
            }

            .script-headline {
                font-size: 40px;
            }

            .main-headline {
                font-size: 28px;
            }

            .subheadline {
                font-size: 18px;
            }

            .form-card {
                padding: 28px;
            }

            .form-title {
                font-size: 22px;
            }

            .cta-button {
                font-size: 18px;
                padding: 18px 20px;
            }

            .trust-badges {
                flex-direction: column;
                gap: 12px;
            }
        }