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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0015 0%, #1a0033 25%, #0d001a 50%, #1a0033 75%, #0a0015 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.background-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
}

.tear-drop {
    position: absolute;
    width: 10px;
    height: 15px;
    background: #ff1493;
    border-radius: 50% 50% 50% 0;
    animation: fall 20s infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}

header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 0, 40, 0.9) 100%);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 2px solid #ff1493;
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.3);
    backdrop-filter: blur(10px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

header h1 {
    font-size: 4em;
    color: #ff1493;
    text-shadow: 0 0 20px #ff1493, 0 0 40px #ff1493;
    font-weight: 900;
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px #ff1493, 0 0 30px #ff1493; }
    50% { text-shadow: 0 0 30px #ff1493, 0 0 50px #ff1493, 0 0 70px #ff1493; }
}

header p {
    color: #ff69b4;
    font-style: italic;
    margin-top: 10px;
    font-size: 1.3em;
    letter-spacing: 1px;
}

.secret-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secret-btn:hover {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.6);
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.secret-btn:active {
    transform: scale(0.95);
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05) 0%, rgba(255, 20, 147, 0.02) 100%);
    border-bottom: 1px solid #ff1493;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero h2 {
    font-size: 3.5em;
    color: #ff1493;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 900;
}

.hero p {
    font-size: 1.4em;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #d0d0d0;
    font-weight: 300;
}

.container {
    width: 100%;
    margin: 0;
    padding: 60px 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px auto;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95) 0%, rgba(30, 10, 50, 0.95) 100%);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.15);
    cursor: pointer;
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.4);
    border-color: #ff69b4;
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.98) 0%, rgba(40, 10, 60, 0.98) 100%);
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-emoji {
    font-size: 4em;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.product-image {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.product-card:nth-child(1) .product-emoji { animation-delay: 0s; }
.product-card:nth-child(2) .product-emoji { animation-delay: 0.3s; }
.product-card:nth-child(3) .product-emoji { animation-delay: 0.6s; }
.product-card:nth-child(4) .product-emoji { animation-delay: 0.9s; }

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

.product-card h3 {
    font-size: 1.6em;
    color: #ff1493;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 0.95em;
    line-height: 1.5;
}

.product-card .price {
    font-size: 2em;
    color: #ff69b4;
    font-weight: 700;
    margin: 20px 0;
}

.btn {
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 20, 147, 0.6);
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

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

.cta-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 0, 40, 0.85) 100%);
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid #ff1493;
    border-bottom: 1px solid #ff1493;
    margin: 80px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cta-section h2 {
    font-size: 3.5em;
    color: #ff1493;
    margin-bottom: 30px;
    font-weight: 900;
}

.cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1400px;
    text-align: center;
}

.feature {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08) 0%, rgba(255, 20, 147, 0.03) 100%);
    border-left: 3px solid #ff1493;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.2);
    transform: translateY(-5px);
}

.feature h3 {
    color: #ff1493;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.testimonials {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(20, 0, 40, 0.4) 100%);
    padding: 60px 40px;
    border-radius: 15px;
    margin: 80px auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonial {
    margin: 25px 0;
    padding: 25px;
    background: rgba(255, 20, 147, 0.05);
    border-left: 4px solid #ff1493;
    border-radius: 8px;
    font-style: italic;
    transition: all 0.3s ease;
}

.testimonial:hover {
    background: rgba(255, 20, 147, 0.1);
    transform: translateX(10px);
}

.testimonial strong {
    color: #ff1493;
    display: block;
    margin-top: 15px;
    font-style: normal;
}

.counter {
    font-size: 2.2em;
    color: #ff1493;
    font-weight: 900;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(255, 20, 147, 0.05) 100%);
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid rgba(255, 20, 147, 0.2);
}

footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 0, 20, 0.98) 100%);
    padding: 60px 40px;
    text-align: center;
    border-top: 2px solid #ff1493;
    color: #888;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

footer p {
    margin: 12px 0;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    header {
        padding: 30px 15px;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero h2 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .container {
        padding: 40px 15px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 2.2em;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9em;
    }

    .feature h3 {
        font-size: 1.1em;
    }

    footer {
        padding: 40px 15px;
    }
}

.pulse {
    animation: pulse 1.5s infinite;
}

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