* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
}


.alert-box {
    background: #FF0000;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.content {
    padding: 30px 20px;
    background: #1a1a1a;
}

.price-section {
    text-align: center;
    margin: 0 0 30px 0;
    padding: 0;
}

.price-section p {
    font-size: 32px; /* Increased from 28px */
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.price-text {
    font-size: 18px;
    color: #ffffff;
}

.old-price {
    color: #FF0000;
    font-weight: bold;
    display: inline;
    text-decoration: line-through;
}

.new-price {
    color: #00FF00; /* Neon Green */
    font-weight: bold;
    display: inline;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.product-box {
    background: #ffffff;
    border-radius: 30px; /* Increased radius */
    padding: 0;
    margin: 40px 0;
    overflow: hidden; /* Keep content inside */
    border: 8px solid #FFC107; /* Thicker border to match title background */
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.product-title {
    background: #FFC107;
    color: #000000;
    font-size: 56px; /* MASSIVE */
    font-weight: 900;
    text-align: center;
    padding: 25px 15px;
    margin: 0;
    border-bottom: none; /* Seamless with border */
    line-height: 1.1;
    text-transform: uppercase;
}

.product-image {
    text-align: center;
    padding: 20px;
    background: #ffffff;
}

.product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.benefits-section {
    background: #ffffff;
    padding: 30px 20px;
}


.benefits-title {
    font-size: 30px; /* Increased from 24px */
    color: #000000;
    text-align: center;
    margin: 0 0 25px 0;
    font-weight: 800; /* Extra bold */
    border-bottom: 3px solid #000000;
    padding-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 12px 10px 12px 40px;
    margin: 8px 0;
    background: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    line-height: 1.4;
    border-bottom: 1px solid #eeeeee;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #4CAF50;
    color: white;
    font-weight: bold;
    font-size: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cta-button {
    display: block;
    width: calc(100% - 40px);
    max-width: 500px;
    margin: 30px auto 20px auto;
    padding: 20px 40px;
    background: #00E676; /* Very bright vibrant green */
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.6);
    animation: pulse 1.5s infinite ease-in-out;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #00C853;
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }
    50% {
        transform: scale(1.05); /* Grow */
        box-shadow: 0 0 20px 10px rgba(0, 230, 118, 0); /* Glow expands */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.secondary-button {
    display: block;
    width: calc(100% - 40px);
    max-width: 500px;
    margin: 20px auto;
    padding: 15px 30px;
    background: transparent;
    color: #ffffff;
    text-align: center;
    text-decoration: underline;
    font-size: 18px; /* Increased size */
    font-weight: normal;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.secondary-button:hover {
    color: #cccccc;
}

@media (max-width: 768px) {
    .alert-box {
        font-size: 16px;
        padding: 18px 15px;
    }

    .content {
        padding: 20px 15px;
    }

    .price-section p {
        font-size: 16px;
    }

    .product-title {
        font-size: 24px;
        padding: 12px;
    }

    .benefits-title {
        font-size: 18px;
    }

    .benefits-list li {
        font-size: 14px;
        padding: 10px 10px 10px 35px;
    }

    .cta-button {
        font-size: 18px;
        padding: 16px 30px;
    }

    .secondary-button {
        font-size: 15px;
    }
}