:root {
    --primary: #ff6fa5;
    --primary-dark: #ff2f7a;
    --bg-light: #fff6fb;
    --text-dark: #333;
    --text-gray: #666;
    --radius: 14px;
    --shadow: 0 10px 25px rgba(255, 111, 165, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}

body {
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1120px;
    margin: auto;
}

header {
    padding: 18px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    color: var(--text-dark);
}

.donate-btn-header {
    background: var(--primary);
    padding: 10px 18px;
    border-radius: var(--radius);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.donate-btn-header:hover {
    background: var(--primary-dark);
}

.hero {
    padding: 80px 0 120px;
    text-align: center;
    background: linear-gradient(135deg, #ffd6e7, #ffe8f5);
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
}

.shimmer {
    background: linear-gradient(90deg, #ff2f7a, #ff9bc2, #ff2f7a);
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-gray);
}

.hero-description {
    max-width: 760px;
    margin: 18px auto 30px;
    font-size: 18px;
}

.cta-button {
    padding: 14px 28px;
    background: var(--primary-dark);
    color: white;
    font-size: 20px;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow);
    transition: 0.25s;
}

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

.hero-stats {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
}

/* About */
.about {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 330px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text p {
    margin-bottom: 16px;
    font-size: 18px;
}

/* Pricing */
.pricing {
    background: var(--bg-light);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

.pricing-grid {
    display: flex;
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1;
    transition: 0.25s;
}

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

.featured {
    border: 3px solid var(--primary);
}

.featured-badge {
    background: var(--primary);
    padding: 6px 14px;
    color: white;
    border-radius: 999px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 12px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
}

.pricing-amount {
    margin: 18px 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-features {
    margin: 20px 0;
    list-style: none;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.pricing-btn {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    margin-top: 20px;
    font-weight: 600;
    transition: 0.25s;
}

.pricing-btn:hover {
    background: #e30060;
}

/* FAQ */
.faq {
    padding: 90px 0;
}

.faq-list {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.faq-question {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-dark);
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: var(--text-gray);
}

/* Code generator */
.code-generator {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-light);
}

.code-display {
    margin-top: 20px;
    padding: 20px;
    background: white;
    display: inline-block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.code-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 12px 0;
}

.generate-btn {
    background: var(--primary);
    padding: 10px 20px;
    color: white;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: 0.25s;
}

.generate-btn:hover {
    background: var(--primary-dark);
}

/* Footer */
footer {
    background: #fff;
    padding: 70px 0;
    border-top: 3px solid #ffe0ef;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-section h3 {
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
}

/* Responsive */
@media(max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .pricing-grid {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 {
        font-size: 48px;
    }
}
