* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.5;
}

.container {
    max-width: 600px;
    /* Mobile focused typically, but responsive */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.header p {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.red-text {
    color: #ff0000;
    font-weight: 900;
}

.underline {
    text-decoration: underline;
}

.video-container {
    width: 100%;
    max-width: 400px;
    /* Constrain width to look like mobile view on desktop */
    margin: 0 auto 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: #000;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    /* Reduced specific font size slightly */
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.1s ease, filter 0.1s ease;
    text-decoration: none;
    /* For anchor tags */
    text-align: center;
    /* For anchor tags */
    display: block;
    /* For anchor tags to behave like block buttons */
}

.btn:active {
    transform: scale(0.98);
}

.btn-green {
    background-color: #4CAF50;
    /* A vivid green */
    background: linear-gradient(to bottom, #5cb860 0%, #449d48 100%);
    color: white;
    box-shadow: 0 4px 0 #2e6e32;
    margin-bottom: 10px;
    /* Space for shadow */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 0 #2e6e32;
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 0 #2e6e32, 0 0 20px rgba(76, 175, 80, 0.7);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 0 #2e6e32;
    }
}

.btn-green:hover {
    filter: brightness(1.1);
}

.btn-red {
    background-color: #d32f2f;
    background: linear-gradient(to bottom, #e53935 0%, #c62828 100%);
    color: white;
    box-shadow: 0 4px 0 #8e1c1c;
    margin-bottom: 10px;
}

.btn-red:hover {
    filter: brightness(1.1);
}

/* Downsell Page Styles */
.top-banner-red {
    background-color: #d32f2f;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 900;
    font-size: 18px;
    width: 100%;
}

.downsell-body {
    background-color: #fff;
}

.downsell-container {
    padding-top: 20px;
}

.stop-sign-container {
    text-align: center;
    margin-bottom: 20px;
}

.stop-img {
    width: 120px;
    height: auto;
}

.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.bold {
    font-weight: 700;
}

.product-image-container {
    text-align: center;
    margin: 20px 0;
}

.product-img {
    max-width: 100%;
    height: auto;
}

.copy-text {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}

.copy-text p {
    margin-bottom: 15px;
}

.blue-link {
    color: #0000EE;
    text-decoration: underline;
    font-weight: bold;
}

.warning-small {
    font-size: 13px;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 10px;
    border-radius: 5px;
}

.strike {
    text-decoration: line-through;
}

.price-box {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.price-large {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.x-mark {
    color: #d32f2f;
    font-weight: bold;
}

.check-mark {
    color: #4CAF50;
    font-weight: bold;
}

.text-small-blue {
    color: #1976D2;
    font-size: 14px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.checklist li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.guarantee-container {
    text-align: center;
    margin: 20px 0;
}

.guarantee-img {
    width: 150px;
    height: auto;
}

.text-small {
    font-size: 13px;
}

.text-justify {
    text-align: justify;
}

.blue-text {
    color: #1565C0;
}

.pain-points {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.pain-points p {
    color: #c62828;
    margin-bottom: 8px;
}

.benefits-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.benefits-list p {
    margin-bottom: 8px;
}