/* Reset and Base Styles */
:root {
    --bg-color: #0d0d0d;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent-red: #ff1a1a;
    --accent-yellow: #ffb800;
    --btn-color: #25d366; /* Vibrant green like WhatsApp/high conversion */
    --btn-hover: #1ebd5a;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    background-image: radial-gradient(circle at top, #1a1a1a 0%, #000000 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px; /* Minimalist mobile-first width */
    padding: 40px 20px;
    margin: 0 auto;
}

/* Typography & Headers */
.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 26, 26, 0.15);
    color: var(--accent-red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 26, 26, 0.3);
}

.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.main-headline .highlight {
    color: var(--accent-red);
    font-size: 2.8rem;
    display: block;
    margin-bottom: 5px;
}

.sub-headline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-bottom: 40px;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
}

.image-wrapper:hover .product-image {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,184,0,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    filter: blur(40px);
}

/* Benefits Section */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
    width: 100%;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(255,184,0,0.2), rgba(255,26,26,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 1.8rem;
    box-shadow: inset 0 0 10px rgba(255,184,0,0.1);
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.benefit-item p strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

/* CTA Section */
.cta-wrapper {
    width: 100%;
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.05) 0%, rgba(0,0,0,0) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-drop {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 600;
}

.price-drop del {
    color: rgba(255, 255, 255, 0.4);
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background-color: var(--btn-color);
    color: #000000;
    text-decoration: none;
    padding: 20px 24px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3), inset 0 2px 0 rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    white-space: normal;
}

.cta-button:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4), inset 0 2px 0 rgba(255,255,255,0.5);
}

.cta-button i {
    font-size: 1.6rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.security-badges i {
    color: var(--btn-color);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2.5s infinite;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .main-headline {
        font-size: 1.8rem;
    }
    
    .main-headline .highlight {
        font-size: 2.2rem;
    }
    
    .price-tag {
        font-size: 3.2rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 16px 20px;
    }
}
