* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b5cf6; /* Purple */
    --secondary-color: #6366f1; /* Indigo */
    --accent-color: #10b981; /* Green (WhatsApp) */
    --whatsapp-green: #25d366; /* WhatsApp green */
    --pink-accent: #ec4899; /* Pink accent */
    --blue-accent: #3b82f6; /* Blue accent */
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-light: #ffffff;
    --text-gray: #b8b8d4;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #8b5cf6 50%, #ec4899 100%); /* Purple to pink */
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #10b981 100%); /* Blue to purple to green */
    --gradient-3: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); /* Indigo to purple */
    --gradient-4: linear-gradient(135deg, #10b981 0%, #25d366 100%); /* WhatsApp green gradient */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    background: var(--whatsapp-green); /* Green */
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    background: var(--blue-accent); /* Blue */
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    background: var(--primary-color); /* Purple */
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    background: var(--pink-accent); /* Pink */
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    background: var(--secondary-color); /* Indigo */
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.header {
    text-align: center !important;
    padding: 1.5rem 0 1rem 0;
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 0;
    right: 0;
    padding: 0;
    gap: 0.5rem;
}

.title.animated-title {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.anime-icon {
    display: inline-block;
    animation: bounce 2s infinite;
    margin: 0;
    vertical-align: middle;
    flex-shrink: 0;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    padding: 2rem 0;
    margin-bottom: 5rem;
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

/* Promotional Image */
.promo-image-container {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 0.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.3s both;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.promo-image-container:hover {
    transform: scale(1.01);
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: contain;
    position: relative;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
}

.promo-image-container:has(.promo-image[src*="promo-anime.jpg"]) .image-placeholder {
    display: none !important;
}

/* Image Placeholder */
.image-placeholder {
    display: flex;
    width: 100%;
    min-height: 300px;
    background: var(--gradient-2);
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
}

.image-placeholder.hidden,
.image-placeholder[style*="display: none"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.placeholder-text {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
}

.placeholder-instructions {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.placeholder-instructions-small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    font-style: italic;
}

/* Quick CTA under image */
.quick-cta {
    text-align: center;
    margin: 1rem auto 0.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.cta-buttons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.quick-cta-button {
    background: var(--gradient-4);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.4rem !important;
    font-weight: bold;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    margin-bottom: 0;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

.quick-cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.quick-cta-button:active {
    transform: translateY(-1px) scale(1.01);
}

.quick-button-icon {
    font-size: 1.3rem;
}

.whatsapp-icon {
    font-size: 1.2rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

.quick-button-text {
    position: relative;
    text-align: center;
    flex: 1;
}

.quick-cta-button .button-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-cta-button:hover .button-arrow {
    transform: translateX(8px);
}

.quick-cta-note {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: var(--gradient-1);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin: 1rem auto 1.5rem;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.highlight-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* AliExpress Link Box - removed since button is now in cta-buttons-row */

.aliexpress-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem !important;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

.aliexpress-link-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.aliexpress-link-button:active {
    transform: translateY(-1px) scale(1.02);
}

.link-icon {
    font-size: 1.4rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

.link-text {
    position: relative;
    text-align: center;
    flex: 1;
}

.link-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aliexpress-link-button:hover .link-arrow {
    transform: translateX(8px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.stat-card:hover {
    transform: translateY(-5px); /* Reduced from -10px */
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25); /* Purple shadow */
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    margin: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02); /* Reduced movement and scale */
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25); /* Green shadow */
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

.feature-card:nth-child(4) .feature-icon {
    animation-delay: 1.5s;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
    color: var(--text-light);
    line-height: 1.4;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 30px;
    margin: 5rem 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--gradient-4);
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-button::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 cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.button-icon {
    font-size: 1.4rem;
}

.whatsapp-icon-large {
    font-size: 1.5rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

.button-text {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.button-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover .button-arrow {
    transform: translateX(10px);
}

.cta-note {
    margin-top: 2rem;
    color: var(--text-gray);
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    margin: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-3px); /* Reduced from -5px */
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15); /* Green shadow */
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: bold;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-note {
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Confetti Canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .header {
        padding: 1rem 0 0.5rem 0;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .title {
        font-size: 1.8rem;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center !important;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 1rem;
        left: 0;
        right: 0;
        position: relative;
        padding: 0;
        gap: 0.5rem;
    }

    .title.animated-title {
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    .anime-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    .hero {
        padding: 1.5rem 0;
        margin-bottom: 4rem;
    }

    .hero-title {
        font-size: 1.6rem;
        text-align: center;
        margin: 0 auto 1rem;
        padding: 0 1rem;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 0.95rem;
        text-align: center;
        margin: 0 auto 1.5rem;
        padding: 0 1rem;
        max-width: 90%;
    }

    .promo-image-container {
        margin-bottom: 0.5rem;
        max-width: 90%;
    }
    
    .quick-cta {
        margin: 0.8rem auto 1rem;
        padding: 0 0.5rem;
    }

    .cta-buttons-row {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        padding: 0;
    }
    
    .quick-cta-button,
    .aliexpress-link-button {
        max-width: 100%;
        width: 100%;
        padding: 1.3rem 1.8rem;
        font-size: 1.4rem !important;
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .quick-button-text,
    .link-text {
        text-align: center;
        flex: 1;
    }

    .quick-cta-note {
        font-size: 0.85rem;
        margin-top: 0.5rem;
        text-align: center;
    }

    .highlight-box {
        padding: 1rem 1.2rem;
        margin: 1rem auto 1.5rem;
    }

    .highlight-text {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .features {
        padding: 3rem 0;
        margin: 4rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonials {
        padding: 3rem 0;
        margin: 4rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .cta-section {
        padding: 3rem 0;
        margin: 4rem 0;
    }

    .cta-title {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 0.8rem;
    }

    .cta-description {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .cta-button {
        padding: 1.4rem 2rem;
        font-size: 1.35rem !important;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        display: flex;
    }

    .button-text {
        text-align: center;
        flex: 1;
    }

    .cta-note {
        font-size: 0.85rem;
        text-align: center;
        margin-top: 1rem;
    }

    .footer {
        padding: 1.5rem 0;
        margin-top: 1.5rem;
    }

    .footer p {
        font-size: 0.85rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

