:root {
    --bg-color: #f4f4f4;
    --primary-color: #FF0000; /* Aggressive Red */
    --accent-color: #FFCC00; /* Flashy Yellow */
    --text-main: #222222;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #e0e0e0; /* Gray background so the mobile container pops */
    color: var(--text-main);
}

.mobile-container {
    max-width: 480px; /* Mobile width */
    margin: 0 auto;
    background-color: var(--white);
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 20px;
}

/* Urgency Bar */
.urgency-bar {
    background-color: var(--primary-color);
    color: var(--accent-color);
    text-align: center;
    padding: 10px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    animation: flash 1.5s infinite alternate;
}

@keyframes flash {
    0% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Hero Image */
.hero-image {
    position: relative;
    width: 100%;
}

.hero-image img {
    width: 100%;
    display: block;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 900;
    padding: 15px;
    border-radius: 50%;
    transform: rotate(15deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-family: 'Montserrat', sans-serif;
}

/* Timer Section */
.timer-section {
    background-color: #111111;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.timer-section h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: 700;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.time-box {
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 10px;
    min-width: 60px;
    display: flex;
    flex-direction: column;
}

.time-box span {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

.time-box small {
    font-size: 0.6rem;
    margin-top: 2px;
}

.colon {
    font-size: 2rem;
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Details */
.details {
    padding: 20px;
}

.product-title {
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.price-box {
    background-color: #fff8e1;
    border: 2px dashed var(--accent-color);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.normal-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
}

.flash-price {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5px;
}

.flash-price span {
    font-size: 1rem;
    color: #444;
}

/* Stock Meter */
.stock-meter {
    margin-bottom: 25px;
}

.stock-text {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.stock-alert {
    color: var(--primary-color);
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.progress-bar {
    width: 100%;
    height: 15px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
}

/* Benefits */
.benefits {
    list-style: none;
    margin-bottom: 30px;
}

.benefits li {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 12px;
    background: #f9f9f9;
    padding: 12px;
    border-radius: 5px;
    border-left: 4px solid #4CAF50;
}

/* Testimonials */
.testimonials {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.review {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rev-text {
    font-style: italic;
    color: #555;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.rev-name {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 100;
}

.btn-buy-now {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    padding: 18px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 0 #b30000;
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn-buy-now:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 #b30000;
}

.btn-text {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
}

.btn-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 3px;
    color: #ffcccc;
}
