/* ===================================
   VAULTZYRA - Premium Landing Page
   Modern Gaming Rewards Platform
   =================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-yellow: #FFD700;
    --primary-yellow-dark: #FFA500;
    --dark-bg: #0a0a0f;
    --dark-bg-secondary: #151520;
    --dark-bg-card: #1a1a2e;
    --text-white: #ffffff;
    --text-gray: #b8b8c8;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glow-yellow: 0 0 30px rgba(255, 215, 0, 0.4);
    --glow-yellow-strong: 0 0 50px rgba(255, 215, 0, 0.6);

    /* Spacing */
    --section-padding: 100px 20px;
    --card-padding: 30px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border Radius */
    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;
    --radius-full: 50%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* === BACKGROUND EFFECTS === */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--section-padding);
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 180px;
    height: 180px;
    display: block;
    margin: 0 auto;
    clip-path: circle(35% at 50% 50%);
    filter: drop-shadow(var(--glow-yellow));
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(var(--glow-yellow-strong));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-subtitle strong {
    color: var(--primary-yellow);
    font-weight: 600;
}

/* === CTA BUTTON === */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-large);
    box-shadow: var(--glow-yellow), 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.cta-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.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--glow-yellow-strong), 0 15px 40px rgba(255, 215, 0, 0.4);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    font-size: 1.5rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.cta-button-large {
    padding: 25px 60px;
    font-size: 1.3rem;
}

/* === TRUST BADGES === */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-medium);
    transition: var(--transition-smooth);
}

.badge:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* === SECTIONS === */
.features-section,
.rewards-section,
.testimonials-section,
.download-section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 60px;
}

/* === FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--dark-bg-card);
    padding: var(--card-padding);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-yellow);
}

.feature-description {
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* === REWARDS GRID === */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.reward-card {
    background: linear-gradient(135deg, var(--dark-bg-card) 0%, var(--dark-bg-secondary) 100%);
    padding: 40px 30px;
    border-radius: var(--radius-medium);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.reward-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.25);
}

.reward-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reward-svg {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 5px 20px rgba(255, 215, 0, 0.4));
    transition: var(--transition-smooth);
}

.reward-card:hover .reward-svg {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.6));
}

/* Brand-specific colors on hover */
.google-play-logo {
    filter: drop-shadow(0 5px 20px rgba(0, 196, 255, 0.3));
}

.apple-logo {
    filter: drop-shadow(0 5px 20px rgba(166, 177, 183, 0.4));
}

.steam-logo {
    filter: drop-shadow(0 5px 20px rgba(102, 192, 244, 0.4));
}

.paypal-logo {
    filter: drop-shadow(0 5px 20px rgba(0, 121, 193, 0.4));
}

.reward-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-yellow);
}

.reward-description {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.reward-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: var(--card-padding);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-yellow);
}

/* === DOWNLOAD SECTION === */
.download-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    text-align: center;
}

.download-content {
    max-width: 700px;
    margin: 0 auto;
}

.download-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.download-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.download-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.platform-badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-small);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.platform-badge:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
}

/* === STORE BUTTONS === */
.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: var(--dark-bg-card);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-medium);
    text-decoration: none;
    color: var(--text-white);
    transition: var(--transition-smooth);
    min-width: 200px;
}

.store-button:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.store-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-yellow);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.google-play:hover .store-icon {
    color: #34A853;
}

.app-store:hover .store-icon {
    color: #0071E3;
}

/* === FOOTER === */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: var(--dark-bg-secondary);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-link {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-tagline {
    font-weight: 700;
    color: var(--primary-yellow);
    font-size: 1.1rem;
}

.footer-social {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-medium);
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
}

.social-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-yellow);
}

.tiktok-link:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: #00f2ea;
}

.tiktok-link:hover .social-icon {
    color: #00f2ea;
}

/* === ANIMATIONS (data-aos fallback) === */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-45deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
        --card-padding: 20px;
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .trust-badges {
        gap: 15px;
    }

    .badge {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 18px 35px;
        font-size: 1rem;
    }

    .cta-button-large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }

    .features-grid,
    .rewards-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .store-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .store-button {
        min-width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}/* === FOOTER STYLING === */
.footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    color: var(--text-secondary);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--primary-yellow);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-contact {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--primary-yellow);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-yellow);
    transition: var(--transition-smooth);
}

.footer-social a:hover svg {
    fill: var(--dark-bg);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* === EARNINGS INFO SECTION === */
.earnings-info {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-large);
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 900px;
    backdrop-filter: blur(10px);
}

.earnings-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.earnings-card {
    background: var(--dark-bg-card);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-medium);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.earnings-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.earnings-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.earnings-card:hover::before {
    opacity: 1;
}

.earnings-card.featured {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, var(--dark-bg-card) 100%);
    transform: scale(1.05);
}

.earnings-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.earnings-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.earnings-time {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.earnings-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.earnings-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.earnings-options span {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 6px 12px;
    border-radius: var(--radius-small);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-yellow);
    transition: var(--transition-smooth);
}

.earnings-options span:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.earnings-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .earnings-info {
        padding: 30px 20px;
        margin: 30px 15px;
    }

    .earnings-title {
        font-size: 1.6rem;
    }

    .earnings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .earnings-card.featured {
        transform: scale(1);
    }

    .earnings-amount {
        font-size: 2.5rem;
    }

    .earnings-badge {
        font-size: 0.7rem;
        padding: 4px 35px;
    }
}
/* === EARNINGS INFO IN HERO === */
.earnings-info-hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: var(--radius-large);
    padding: 35px 25px;
    margin: 30px auto 40px;
    max-width: 950px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.earnings-info-hero .earnings-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .earnings-info-hero {
        padding: 25px 15px;
        margin: 20px 10px 30px;
    }

    .earnings-info-hero .earnings-title {
        font-size: 1.7rem;
    }
}
/* === ENHANCED EARNINGS STYLING === */
.earnings-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
}

.earnings-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 15px 0;
    text-align: center;
    font-weight: 500;
}

.earnings-label {
    font-size: 0.9rem;
    color: var(--primary-yellow);
    font-weight: 700;
    text-align: center;
    margin: 15px 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.earnings-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.earnings-note {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.earnings-note strong {
    color: var(--primary-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.earnings-guarantee {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@media (max-width: 768px) {
    .earnings-subtitle {
        font-size: 1rem;
    }

    .earnings-desc {
        font-size: 0.9rem;
    }

    .earnings-note {
        font-size: 1rem;
    }
}
/* === OPTION LOGOS IN EARNINGS === */
.option-logo {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
    display: inline-block;
    filter: brightness(1.2);
    transition: var(--transition-smooth);
}

.earnings-options span:hover .option-logo {
    filter: brightness(1.5) drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .option-logo {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }
}
