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

:root {
    --shopee-orange: #EE4D2D;
    --shopee-dark: #D0011B;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #FFF5F3;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFF5F3 0%, #FFE8E0 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

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

.hero-section {
    background: white;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.shopee-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

h1 {
    font-size: 2.5rem;
    color: var(--shopee-orange);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.benefit-item {
    background: linear-gradient(135deg, #FFF5F3 0%, #FFE8E0 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--shopee-orange);
}

.benefit-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

.cta-section {
    text-align: center;
    margin: 50px 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-dark) 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.whatsapp-button:hover::before {
    left: 100%;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.98);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    fill: white;
}

.members-count {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pulse {
    width: 12px;
    height: 12px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--shopee-orange);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--shopee-orange);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.testimonials {
    margin: 60px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial {
    background: linear-gradient(135deg, #FFF5F3 0%, #FFE8E0 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1rem;
}

.author {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.final-cta {
    text-align: center;
    margin: 60px 0 40px;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--shopee-orange) 0%, var(--shopee-dark) 100%);
    border-radius: 25px;
    color: white;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.whatsapp-button.secondary {
    background: white;
    color: var(--whatsapp-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button.secondary:hover {
    background: #f0f0f0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-button.secondary .whatsapp-icon {
    fill: var(--whatsapp-green);
}

footer {
    text-align: center;
    padding: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

footer p {
    margin: 10px 0;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 25px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .hero-section {
        padding: 30px 20px;
        border-radius: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .shopee-icon {
        width: 60px;
        height: 60px;
    }

    .whatsapp-button {
        padding: 15px 25px;
        font-size: 1rem;
        gap: 10px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    .feature-card {
        padding: 25px;
    }

    .final-cta {
        padding: 35px 20px;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    animation: fadeIn 0.8s ease-out;
}

.benefit-item {
    animation: fadeIn 0.8s ease-out;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

/* Made with Bob */
