.watch-notice {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    margin: 0 auto;
    margin-top: -10px;
    margin-bottom: 20px;
    max-width: 220px;
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #1e293b 0%, #0f172a 50%);
    z-index: -2;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.video-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 30px;
    padding: 0;
    margin-bottom: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000000;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    margin-bottom: 0;
}

.video-wrapper mux-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

mux-player {
    width: 100%;
    height: 100%;
    display: block;
}

/* Ensure poster covers full video area */
mux-player::part(poster) {
    object-fit: cover;
}

/* Show/hide videos based on device */
.mobile-video {
    display: none;
}

@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }
    .mobile-video {
        display: block;
    }
    .video-wrapper {
        padding-bottom: 134.26%;
    }
}

/* Hide Mux controls completely */
mux-player::part(seek-backward-button),
mux-player::part(seek-forward-button),
mux-player::part(time-range),
mux-player::part(seek-to-live-button),
mux-player::part(time-display),
mux-player::part(duration-display),
mux-player::part(bottom-controls),
mux-player::part(center-controls) {
    display: none !important;
    pointer-events: none !important;
}

/* Modern video overlay controls */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    pointer-events: none;
}

.video-overlay.active {
    pointer-events: auto;
}

/* Custom controls container */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 30%, transparent 100%);
    padding: 20px;
    padding-bottom: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.video-overlay.show-controls .custom-controls {
    opacity: 1;
}

/* Progress bar integrated in video - ALWAYS VISIBLE */
.video-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    cursor: pointer;
    z-index: 101; /* Always on top */
    pointer-events: auto;
}

.video-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
    width: 0%;
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.video-progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #06b6d4;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.8);
}

/* Control buttons row */
.controls-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
}

.control-btn {
    background: transparent;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0.9;
    transition: all 0.2s;
    padding: 0;
}

.control-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.control-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.time-display {
    flex: 1;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

/* Center play button */
.center-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: auto;
}

.video-overlay.show-center-play .center-play {
    opacity: 1;
}

.center-play svg {
    width: 30px;
    height: 30px;
    fill: white;
    margin-left: 3px;
}

.video-header {
    text-align: center;
    padding: 30px 40px;
    margin: 0;
}

.video-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-title .highlight-amount {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.cta-section {
    text-align: center;
    padding: 0 40px 40px 40px;
}

.cta-button {
    width: 100%;
    padding: 24px 40px;
    font-size: 22px;
    font-weight: 800;
    border: none;
    border-radius: 60px;
    cursor: not-allowed;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button.enabled {
    cursor: pointer;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.6);
}

.cta-button.enabled:hover {
    transform: translateY(-3px);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.button-icon {
    font-size: 28px;
}

.button-text-wrapper {
    display: flex;
    flex-direction: column;
}

.countdown-text {
    font-size: 14px;
    margin-top: 5px;
}

.loading-section {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 30px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #3b82f6;
    border-right-color: #06b6d4;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    animation-direction: reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.loading-subtext {
    font-size: 16px;
    color: #9ca3af;
}

.widgets-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.countdown-widget {
    text-align: center;
}

.countdown-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.countdown-title .highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-subtitle {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 15px;
}

.countdown-timer {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
    margin-bottom: 20px;
    font-family: monospace;
}

.watch-full-text {
    font-size: 16px;
    color: #d1d5db;
    font-weight: 600;
    margin-bottom: 30px;
}

.stats-widgets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.stat-widget {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
    min-width: 60px;
}

.stat-content {
    flex: 1;
    text-align: left;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 5px;
    font-weight: 600;
}

.stat-value {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-value.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hidden {
    display: none !important;
}

/* OTP Modal */
.otp-modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10002;
    backdrop-filter: blur(8px);
}

.otp-modal:not(.hidden) {
    display: grid;
}

.otp-modal-card {
    width: min(450px, 92vw);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 30px 25px;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.otp-modal-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 10px;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.otp-modal-subtitle {
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 20px;
}

.otp-input-container {
    margin: 20px 0;
}

.otp-input-label {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.otp-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 8px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    outline: none;
    transition: all 0.3s;
    box-sizing: border-box;
}

.otp-input:focus {
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.otp-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
    display: none;
}

.otp-button-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.otp-verify-btn {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.otp-verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.otp-verify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* intl-tel-input integration */
.intl-tel-input, .iti {
    width: 100% !important;
    display: block;
}

.iti input {
    width: 100% !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #ffffff;
}

.iti__country-list {
    background: #1e293b;
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.iti__country-list .iti__divider {
    border-color: rgba(255, 255, 255, 0.12);
}

.iti__country {
    padding: 8px 10px;
}

.iti__country:hover {
    background: rgba(59, 130, 246, 0.2);
}

.iti__selected-flag {
    padding: 0 8px;
}

.alert {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 15px;
    padding: 16px 20px;
    margin: 20px 40px 40px 40px;
    text-align: center;
    color: #fca5a5;
    font-size: 14px;
    font-weight: 600;
}

.lead-form-section {
    padding: 40px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    color: #9ca3af;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input {
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: #6b7280;
}

.phone-group {
    flex-direction: row;
    gap: 10px;
}

.country-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    min-width: 90px;
}

.flag {
    font-size: 20px;
}

.phone-group input {
    flex: 1;
}

.signup-button {
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    transition: all 0.3s;
    margin-top: 10px;
}

.signup-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.6);
}

.signup-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer Styles */
.footer {
    margin-top: 60px;
    padding: 40px 20px 20px 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.legal-links {
    text-align: center;
    margin-bottom: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    margin: 0 15px;
    transition: color 0.3s;
    cursor: pointer;
}

.legal-links a:hover {
    color: #3b82f6;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-bottom: 30px;
}

.disclaimer {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Legal Modal */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow-y: auto;
}

.legal-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-content {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.legal-content h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-content h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 20px 0 10px 0;
}

.legal-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: rotate(90deg);
}

.close-modal::before,
.close-modal::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
}

.close-modal::before {
    transform: rotate(45deg);
}

.close-modal::after {
    transform: rotate(-45deg);
}

/* Resume Progress Modal */
.resume-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.resume-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.resume-modal-content {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    padding: 50px 40px 40px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
    overflow: hidden;
}

.resume-modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.resume-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.resume-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.resume-subtitle {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.progress-indicator {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0 30px 0;
    position: relative;
    z-index: 1;
}

.progress-label {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.progress-value {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.resume-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.resume-btn {
    padding: 18px 35px;
    font-size: 17px;
    font-weight: 800;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.resume-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.resume-btn:hover::before {
    width: 300px;
    height: 300px;
}

.resume-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.resume-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

.resume-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.resume-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.resume-btn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .video-overlay.show-controls .custom-controls {
        opacity: 1;
    }
    
    .video-progress-container {
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
    }
    
    .custom-controls {
        padding: 15px;
        padding-bottom: 12px;
    }
    
    .watch-notice {
        font-size: 10px;
        padding: 6px 12px;
        margin-top: -8px;
        margin-bottom: 15px;
        max-width: 180px;
    }
    
    .footer {
        margin-top: 40px;
        padding: 30px 15px 15px 15px;
    }
    
    .legal-links {
        margin-bottom: 15px;
    }
    
    .legal-links a {
        font-size: 12px;
        margin: 0 10px;
    }
    
    .copyright {
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .disclaimer {
        padding: 15px;
    }
    
    .disclaimer-text {
        font-size: 9px;
        line-height: 1.5;
    }
    
    .legal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
    
    .legal-content h3 {
        font-size: 16px;
    }
    
    .legal-content p {
        font-size: 14px;
    }
    
    .close-modal {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
    }
    
    .control-btn {
        width: 32px;
        height: 32px;
    }
    
    .control-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .time-display {
        font-size: 12px;
    }
    
    .center-play {
        width: 60px;
        height: 60px;
    }
    
    .center-play svg {
        width: 24px;
        height: 24px;
    }
    
    .container {
        padding: 15px 12px;
    }
    
    .header {
        margin-bottom: 25px;
    }
    
    .badge {
        font-size: 10px;
        padding: 5px 16px;
    }
    
    .video-card {
        border-radius: 18px;
        margin-bottom: 18px;
    }
    
    .video-wrapper {
        border-radius: 18px 18px 0 0;
    }
    
    .video-header {
        padding: 18px 18px;
    }
    
    .video-title {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .cta-section {
        padding: 0 18px 25px 18px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 16px 20px;
    }
    
    .button-icon {
        font-size: 20px;
    }
    
    .countdown-text {
        font-size: 11px;
    }
    
    /* Resume Modal Mobile */
    .resume-modal-content {
        padding: 35px 25px 30px 25px;
        max-width: 92%;
        border-radius: 20px;
    }
    
    .resume-icon {
        width: 65px;
        height: 65px;
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .resume-title {
        font-size: 26px;
    }
    
    .resume-subtitle {
        font-size: 14px;
    }
    
    .progress-indicator {
        padding: 12px;
        margin: 15px 0 25px 0;
    }
    
    .progress-value {
        font-size: 20px;
    }
    
    .resume-btn {
        padding: 15px 30px;
        font-size: 15px;
    }
    
    /* Stats Widgets Mobile */
    .stats-widgets {
        max-width: 100%;
        gap: 15px;
    }
    
    .stat-widget {
        padding: 15px 18px;
        gap: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 24px;
        border-radius: 12px;
    }
    
    .stat-content {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .stat-label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .stat-value {
        font-size: 22px;
        line-height: 1.2;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .countdown-widget {
        padding: 20px 15px;
    }
    
    .countdown-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .countdown-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .countdown-timer {
        padding: 12px 35px;
        font-size: 28px;
    }
    
    /* Form Mobile - Fix overflow */
    .form-container {
        padding: 25px 15px;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .form-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group input {
        padding: 14px 16px;
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .phone-group {
        display: flex;
        gap: 8px;
        width: 100%;
    }
    
    .country-prefix {
        padding: 14px 10px;
        font-size: 13px;
        min-width: 80px;
        max-width: 80px;
        flex-shrink: 0;
        box-sizing: border-box;
        gap: 6px;
        justify-content: center;
    }
    
    .flag {
        font-size: 18px;
        line-height: 1;
    }
    
    .phone-group input {
        flex: 1;
        min-width: 0;
        width: auto;
    }
    
    .signup-button {
        padding: 15px 35px;
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .lead-form-section {
        padding: 25px 15px;
    }
    
    .signup-form {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .widgets-section {
        padding: 25px 15px;
        gap: 20px;
    }
}
