:root {
    --primary-gradient: linear-gradient(135deg, #bef4ff, #94edff);
    --secondary-gradient: linear-gradient(135deg, #7ee8ff, #94edff);
    --accent-gradient: linear-gradient(135deg, #bef4ff, #7ee8ff);
    --success-gradient: linear-gradient(135deg, #94edff, #bef4ff);
    --light-gradient: linear-gradient(135deg, #ffffff, #f0fbff);
    --bright-gradient: linear-gradient(135deg, #ffffff, #f8feff);
    --primary-cyan: #bef4ff;
    --secondary-cyan: #7ee8ff;
    --accent-cyan: #94edff;
    --bright-bg: #ffffff;
    --light-bg: #f8feff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(190, 244, 255, 0.3);
    --text-dark: #161823;
    --text-secondary: #424242;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bright-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffffff, #f0fbff, #e8f9ff, #ffffff);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-section {
    display: flex;
    justify-content: center;
    position: relative;
    background: var(--light-gradient);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 153, 204, 0.15);
    border: 2px solid #0099cc;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: pulse-glow 2s infinite, badge-wiggle 3s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0099cc;
}

@keyframes badge-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg) scale(1.02); }
    75% { transform: rotate(2deg) scale(1.02); }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-cyan);
        border-color: var(--primary-cyan);
    }
    50% {
        box-shadow: 0 0 40px var(--primary-cyan), 0 0 60px var(--accent-cyan);
        border-color: var(--accent-cyan);
    }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0099cc;
    animation: title-glow 3s ease-in-out infinite alternate;
    text-transform: uppercase;

}

@keyframes title-glow {
    0% { text-shadow: 2px 2px 8px rgba(190, 244, 255, 0.3); }
    100% { text-shadow: 4px 4px 12px rgba(190, 244, 255, 0.4), 0 0 20px rgba(148, 237, 255, 0.2); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    text-shadow: 2px 2px 6px rgba(190, 244, 255, 0.3);
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 500;
}

.earning-highlight {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--success-gradient);
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 1rem 0 2rem;
    box-shadow: 0 10px 30px rgba(148, 237, 255, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: #4CAF50;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(190, 244, 255, 0.4);
    animation: pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(190, 244, 255, 0.6);
}

.icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.icon-wrapper img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.icon-wrapper::after {
    content: '2';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 14px;
    height: 14px;
    background: #ff4444;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
}

.features-section {
    padding: 1rem 1rem;
    background: var(--bright-gradient);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 10px;
    color: #0066aa;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bright-bg);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(190, 244, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(190, 244, 255, 0.2);
    border-color: var(--primary-cyan);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0099cc;
}

.feature-description {
    color: var(--text-secondary);
}

.earnings-section {
    padding: 1rem 1rem;
    background: var(--light-gradient);
}

.earnings-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.earnings-list-container {
    max-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f5fbff 100%);
    border-radius: 25px;
    
    margin: 2rem auto;
    box-shadow: 0 10px 40px rgba(0, 153, 204, 0.12);
}

.earnings-list {
    list-style: none;
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.earnings-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9feff 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 153, 204, 0.15);
    box-shadow: 0 2px 8px rgba(0, 153, 204, 0.08);
}

.earnings-item:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f6ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 153, 204, 0.15);
    border-color: rgba(0, 153, 204, 0.3);
}

.earnings-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.25);
    flex-shrink: 0;
}

.earnings-user-info {
    flex: 1;
}

.earnings-user-name {
    font-weight: 700;
    color: #000;
    font-size: 12px;
    margin-bottom: 0.3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.earnings-time {
    color: #888;
    font-size: 0.8rem;
    font-weight: 400;
    text-align: left;
}

.earnings-amount {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #00aa00;
    text-align: right;
    white-space: nowrap;
}

.brand-section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5fbff 100%);
    border-top: 2px solid rgba(0, 153, 204, 0.1);
    border-bottom: 2px solid rgba(0, 153, 204, 0.1);
}

.brand-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 1.5rem; */
    /* background: #fff; */
    border-radius: 15px;
    /* border: 1px solid rgba(0, 153, 204, 0.1); */
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 8px rgba(0, 153, 204, 0.05); */
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 153, 204, 0.15);
    border-color: rgba(0, 153, 204, 0.3);
}

.brand-logo {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%);
}

.testimonials-section {
    padding: 1rem 1rem;
    background: var(--bright-gradient);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bright-bg);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(190, 244, 255, 0.1);
    display: none;
    animation: slideIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--primary-cyan);
}

.testimonial-name {
    font-weight: 700;
    color: #0099cc;
}

.testimonial-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(190, 244, 255, 0.4);
}

.faq-section {
    padding: 1rem 1rem;
    background: var(--light-gradient);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bright-bg);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(190, 244, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-cyan);
    box-shadow: 0 10px 30px rgba(190, 244, 255, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0099cc;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer {
    background: var(--bright-bg);
    padding: 3rem 1rem 2rem;
    text-align: center;
    border-top: 2px solid var(--glass-border);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.countdown-section {
    background: var(--primary-gradient);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: #000;
}

.countdown-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.countdown-intro {
    color: #000;
    font-size: 1.1rem;
    margin: 1rem 0;
}

.age-form-wrapper {
    margin: 0 0 1rem 0;
}

.age-input-container {
    position: relative;
    margin-bottom: 1rem;
}

#ageInput {
    width: 100%;
    padding: 1.4rem 1.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid #000;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: #161823;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(190, 244, 255, 0.15);
}

#ageInput:focus {
    border-color: #bef4ff;
    box-shadow: 0 8px 30px rgba(190, 244, 255, 0.3);
    transform: scale(1.02);
}

.age-test-btn {
    width: 100%;
    background: linear-gradient(135deg, #FFEB3B 0%, #FFC107 100%);
    color: #000000;
    margin-top: 0.5rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
}

.age-test-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.6);
}

.data-confidential {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.2) 0%, rgba(255, 193, 7, 0.15) 100%);
    border: 1px solid rgba(255, 235, 59, 0.4);
    border-radius: 20px;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #000;
    font-weight: 500;
    justify-content: center;
    padding: 10px 0;
    font-size: 12px;
}

#resultContainer {
    display: none;
    margin-top: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 10px;
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.eligibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffff00;
    border-radius: 25px;
    padding: 0.7rem 1.4rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    box-shadow: 0 4px 15px rgba(190, 244, 255, 0.15);
}

.result-title {
    color: #009bbb;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.result-description {
    color: #161823;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.result-description strong {
    color: #000;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #bef4ff 0%, #94edff 100%);
    padding: 0 5px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(190, 244, 255, 0.35);
}

.result-instruction {
    color: #161823;
    font-size: 0.75rem;
    line-height: 1.6;
    /* margin-top: 1.5rem; */
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(190, 244, 255, 0.08) 0%, rgba(148, 237, 255, 0.05) 100%);
    border-left: 3px solid #bef4ff;
    border-radius: 8px;
    font-weight: 500;
}

.result-instruction strong {
    color: #0099cc;
    font-weight: 700;
}

.result-disclaimer {
    color: #999999;
    font-size: 0.65rem;
    line-height: 1.2;
    margin-top: 1rem;
    padding: 0.6rem 0.8rem;
    font-weight: 400;
    opacity: 0.7;
    text-align: center;
}

.benefits-list {

    padding: 1.5rem;
    background: rgba(190, 244, 255, 0.08);
    border-left: 4px solid var(--primary-cyan);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefits-list p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin: 0.8rem 0;
    padding: 0.5rem 0;
}

.benefit-item::before {
    content: counter(benefit-counter);
    margin-right: 0.8rem;
    font-size: 1.2rem;
    flex-shrink: 0;
    font-weight: 700;
    color: #000;
    background: var(--primary-cyan);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    counter-increment: benefit-counter;
}

.benefit-text {
    flex: 1;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
}

.benefit-text strong {
    color: #0099cc;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .hero-subtitle { font-size: clamp(1rem, 4vw, 1.5rem); }
    .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .cta-button { width: 90%; max-width: 350px; font-size: 1rem; }
    .earning-card { padding: 1.5rem; }
    .testimonial-card { padding: 1.2rem; }
}

@media (max-width: 480px) {
    body { font-size: 14px; }
    .hero-content { padding: 0.5rem; }
    .hero-title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .cta-button { font-size: 0.9rem; padding: 0.8rem 1.2rem; width: 95%; }
    .feature-card { padding: 1.2rem; }
    .earnings-list-container { max-height: 400px; }
    .testimonial-avatar { width: 50px; height: 50px; }
    .nav-btn { width: 40px; height: 40px; font-size: 1rem; }
}
