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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #1e4ea5 0%, #132b5e 40%, #2a1a5d 100%);
    color: white;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Фоновый эффект взрыва света */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle at center, 
        rgba(140, 190, 255, 0.4) 0%,
        rgba(100, 160, 255, 0.3) 15%,
        rgba(70, 130, 235, 0.2) 30%,
        rgba(50, 100, 200, 0.1) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

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

/* Лучи света */
body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2000px;
    height: 2000px;
    background: 
        linear-gradient(0deg, transparent 49%, rgba(150, 200, 255, 0.08) 50%, transparent 51%),
        linear-gradient(45deg, transparent 49%, rgba(150, 200, 255, 0.06) 50%, transparent 51%),
        linear-gradient(90deg, transparent 49%, rgba(150, 200, 255, 0.08) 50%, transparent 51%),
        linear-gradient(135deg, transparent 49%, rgba(150, 200, 255, 0.06) 50%, transparent 51%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    position: relative;
    z-index: 2;
}

/* Main Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

/* Left - Product Images */
.product-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
}

.product-box {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 350px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.product-box img {
    width: 100%;
    height: auto;
}

.product-sachets {
    position: absolute;
    left: 200px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    width: 450px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.product-sachets img {
    width: 100%;
    height: auto;
}

.banana {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    width: 400px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    z-index: 3;
}

.banana img {
    width: 100%;
    height: auto;
}

/* Right - Offer Section */
.offer-section {
    padding-right: 80px;
}

.main-title {
    font-size: 80px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 50px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.price-container {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 35px;
    padding: 28px 45px;
    margin-bottom: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.old-price {
    font-size: 36px;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
    line-height: 1;
}

.new-price {
    font-size: 72px;
    font-weight: 800;
    display: block;
    margin-top: 8px;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.discount-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.clock-icon {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.timer-container {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 25px;
    padding: 28px 60px;
    margin-bottom: 40px;
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.5),
                0 0 60px rgba(255, 215, 0, 0.3);
}

.timer {
    font-size: 80px;
    font-weight: 900;
    color: #000000;
    letter-spacing: 5px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
}

.btn {
    padding: 24px 55px;
    border-radius: 60px;
    font-size: 26px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-buy {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5),
                0 0 40px rgba(255, 0, 0, 0.3);
}

.btn-buy:hover {
    box-shadow: 0 16px 45px rgba(255, 0, 0, 0.6),
                0 0 50px rgba(255, 0, 0, 0.4);
}

.btn-telegram {
    background: white;
    color: #000000;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn-telegram:hover {
    box-shadow: 0 16px 45px rgba(255, 255, 255, 0.4);
}

.telegram-icon {
    width: 32px;
    height: 32px;
}

.telegram-icon img {
    width: 100%;
    height: 100%;
}

/* Product Description */
.product-description {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 35px;
    padding: 55px 60px;
    margin-bottom: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.product-description h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}

.product-description p {
    font-size: 19px;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .main-grid {
        gap: 60px;
    }
    
    .product-box {
        width: 300px;
        left: 30px;
    }
    
    .product-sachets {
        width: 400px;
        left: 180px;
    }
    
    .banana {
        width: 350px;
        right: -80px;
    }
    
    .main-title {
        font-size: 68px;
    }
    
    .timer {
        font-size: 68px;
    }
}

@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .product-section {
        order: 1;
        min-height: 500px;
    }
    
    .offer-section {
        order: 2;
        padding-right: 0;
        text-align: center;
    }
    
    .product-box {
        width: 260px;
        left: 20px;
    }
    
    .product-sachets {
        width: 350px;
        left: 150px;
    }
    
    .banana {
        width: 300px;
        right: -50px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .product-section {
        min-height: 400px;
        margin-bottom: 30px;
    }
    
    .product-box {
        width: 200px;
        left: 10px;
        transform: translateY(-50%) rotate(-12deg);
    }
    
    .product-sachets {
        width: 280px;
        left: 120px;
        transform: translateY(-50%) rotate(12deg);
    }
    
    .banana {
        width: 220px;
        right: -30px;
        top: 55%;
    }
    
    .main-title {
        font-size: 48px;
        margin-bottom: 35px;
    }
    
    .price-container {
        padding: 22px 35px;
    }
    
    .old-price {
        font-size: 28px;
    }
    
    .new-price {
        font-size: 56px;
    }
    
    .discount-banner {
        font-size: 22px;
        justify-content: center;
    }
    
    .clock-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .timer-container {
        padding: 22px 40px;
    }
    
    .timer {
        font-size: 56px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 18px;
    }
    
    .btn {
        padding: 20px 40px;
        font-size: 22px;
        width: 100%;
    }
    
    .product-description {
        padding: 35px 25px;
    }
    
    .product-description h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .product-description p {
        font-size: 17px;
    }
    
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 38px;
    }
    
    .new-price {
        font-size: 48px;
    }
    
    .timer {
        font-size: 44px;
        letter-spacing: 3px;
    }
    
    .discount-banner {
        font-size: 18px;
    }
}
