/* Infomercial Style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    animation: rainbowBackground 5s ease infinite;
    overflow-x: hidden;
}

@keyframes rainbowBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner */
.banner {
    background: linear-gradient(45deg, #ff0000, #ffff00);
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid gold;
}

.flashing-text {
    font-size: 24px;
    font-weight: bold;
    animation: flash 0.5s infinite alternate;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@keyframes flash {
    0% { opacity: 1; color: #ffff00; }
    100% { opacity: 0.7; color: #ff0000; }
}

.main-title {
    font-family: 'Impact', sans-serif;
    font-size: 4rem;
    margin: 10px 0;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.7);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.big-claim {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #ffff00;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    margin-bottom: 20px;
    animation: shake 1s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.hero-text {
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.4;
}

.highlight {
    background: linear-gradient(45deg, #ff6b6b, #ffff00);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(255,255,0,0.8); }
    100% { box-shadow: 0 0 20px rgba(255,107,107,0.8); }
}

.before-after {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.before-after-item {
    text-align: center;
}

.image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 10px;
    border: 5px solid #ffff00;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.bald {
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
}

.hairy {
    background: linear-gradient(45deg, #a8edea, #fed6e3);
    animation: hairGrow 3s infinite;
}

@keyframes hairGrow {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.arrow {
    font-size: 3rem;
    animation: moveRight 2s infinite;
}

@keyframes moveRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Problem Section */
.problem {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 60px 0;
    text-align: center;
}

.problem h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-item {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-10px);
}

.problem-emoji {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: wobble 2s infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.solution-title {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.product-image {
    position: relative;
}

.product-box {
    font-size: 8rem;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.sparkles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    font-size: 2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: rotate(0deg); }
    50% { opacity: 0.5; transform: rotate(180deg); }
}

.features-list {
    list-style: none;
    text-align: left;
    font-size: 1.2rem;
}

.features-list li {
    margin: 15px 0;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 60px 0;
    text-align: center;
}

.testimonials h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.testimonial:nth-child(even) {
    transform: rotate(2deg);
}

.testimonial:hover {
    transform: rotate(0deg) scale(1.05);
}

.customer-photo {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: headBob 3s infinite;
}

@keyframes headBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Science Section */
.science {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 60px 0;
    text-align: center;
}

.science h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
}

.science-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.fake-chart {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.chart {
    display: flex;
    align-items: end;
    gap: 20px;
    height: 200px;
    margin-top: 20px;
}

.bar {
    flex: 1;
    position: relative;
}

.bar-fill {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    color: white;
    font-weight: bold;
    padding: 10px 5px;
    font-size: 0.8rem;
    animation: growUp 2s ease;
}

@keyframes growUp {
    from { height: 0; }
    to { height: 100%; }
}

.science-facts {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: left;
}

.science-facts ul {
    list-style: none;
    margin: 20px 0;
}

.science-facts li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

/* Pricing */
.pricing {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 60px 0;
    text-align: center;
}

.pricing h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
    animation: bounce 2s infinite;
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.old-price {
    font-size: 2rem;
    color: #666;
}

.crossed-out {
    text-decoration: line-through;
    opacity: 0.6;
}

.new-price {
    font-size: 4rem;
    color: #ff0000;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: flash 1s infinite alternate;
}

.bonuses {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.bonus {
    background: rgba(255,255,255,0.9);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-weight: bold;
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

.guarantee {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 40px;
    border: 3px solid #ff0000;
}

.guarantee h3 {
    color: #ff0000;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Call to Action */
.cta {
    background: linear-gradient(45deg, #ff0000, #ffff00);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.urgency h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    animation: flash 0.5s infinite alternate;
}

.countdown {
    font-size: 3rem;
    font-weight: bold;
    color: #ffff00;
    animation: countdown 1s infinite;
}

@keyframes countdown {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.warning {
    font-size: 1.2rem;
    margin: 20px 0;
    font-style: italic;
}

.order-button {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    background: linear-gradient(45deg, #00ff00, #ffff00);
    color: #000;
    border: 5px solid #ff0000;
    padding: 20px 40px;
    border-radius: 15px;
    cursor: pointer;
    margin: 30px 0;
    animation: buttonPulse 1s infinite;
    transition: transform 0.3s ease;
}

.order-button:hover {
    transform: scale(1.1);
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255,255,0,0.8); }
    50% { box-shadow: 0 0 40px rgba(0,255,0,0.8); }
}

.phone-number {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
}

.operators {
    font-size: 1.2rem;
    font-style: italic;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.fine-print {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .big-claim {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.4rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 20px;
    }
    
    .image-placeholder {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .product-showcase {
        flex-direction: column;
        gap: 30px;
    }
    
    .science-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .bonuses {
        flex-direction: column;
        gap: 15px;
    }
    
    .order-button {
        font-size: 2rem;
        padding: 15px 30px;
    }
}
