/* ========================================
   PAID OFFERS - HOMEPAGE REDESIGN
   Modern Dark Theme with Gradient Accents
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary-dark: #0f0c29;
    --primary-mid: #302b63;
    --primary-light: #24243e;
    --accent-gold: #f7b733;
    --accent-gold-dark: #e09a1a;
    --accent-green: #00c9a7;
    --accent-blue: #4facfe;
    --accent-pink: #e84393;
    --text-white: #ffffff;
    --text-muted: #b0b3c5;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --gradient-gold: linear-gradient(135deg, #f7b733, #fc4a1a);
    --gradient-main: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --gradient-blue: linear-gradient(135deg, #4facfe, #00f2fe);
    --gradient-green: linear-gradient(135deg, #00c9a7, #00d4aa);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-mid);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* ---------- NAVBAR ---------- */
#mainNavbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
    backdrop-filter: blur(0px);
}

#mainNavbar.scrolled {
    padding: 10px 0;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    filter: brightness(1.1);
    transition: var(--transition);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold) !important;
    background: rgba(247, 183, 51, 0.1);
}

.btn-nav-login {
    color: var(--accent-gold) !important;
    font-weight: 600;
}

.btn-register-nav {
    background: var(--gradient-gold);
    color: var(--primary-dark) !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-register-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 183, 51, 0.4);
    color: var(--primary-dark) !important;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-main);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(247, 183, 51, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(79, 172, 254, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 201, 167, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    z-index: 1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-gold);
    top: -100px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-blue);
    bottom: 10%;
    left: -50px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-green);
    top: 40%;
    right: 20%;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--accent-pink);
    bottom: 20%;
    right: 40%;
    animation: floatShape 12s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

.hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(247, 183, 51, 0.15);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(247, 183, 51, 0.25);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-white);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark) !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(247, 183, 51, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(247, 183, 51, 0.5);
    color: var(--primary-dark) !important;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-white) !important;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold) !important;
    background: rgba(247, 183, 51, 0.08);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    margin-left: -8px;
    border: 2px solid var(--primary-dark);
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-text strong {
    color: var(--text-white);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    animation: heroFloat 4s ease-in-out infinite;
}

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

/* Floating cards on hero */
.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-white);
    box-shadow: var(--shadow-card);
    animation: cardFloat 3s ease-in-out infinite;
}

.hero-float-card i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    right: -5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 5%;
    left: 5%;
    animation-delay: 2s;
}

.card-3 i {
    color: var(--accent-green);
}

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

/* ---------- HERO ANIMATIONS ---------- */
.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- SCROLL ANIMATIONS ---------- */
/* Elements start visible by default, animate in when scrolled */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-animate.fade-right {
    transform: translateX(-30px);
}

.scroll-animate.fade-left {
    transform: translateX(30px);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Fallback: if JS doesn't load, show everything */
.no-js .scroll-animate,
.scroll-animate.no-animate {
    opacity: 1;
    transform: none;
}

/* ---------- SECTION COMMONS ---------- */
.section-header {
    margin-bottom: 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(247, 183, 51, 0.12);
    color: var(--accent-gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(247, 183, 51, 0.2);
}

.badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ---------- HOW IT WORKS ---------- */
.section-how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    position: relative;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 183, 51, 0.3);
    box-shadow: 0 20px 50px rgba(247, 183, 51, 0.1);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.step-icon-wrapper {
    margin-bottom: 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.step-icon.icon-green {
    background: var(--gradient-green);
}

.step-icon.icon-gold {
    background: var(--gradient-gold);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.step-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.5rem;
    z-index: 2;
}

/* ---------- EARN SECTION ---------- */
.section-earn {
    padding: 100px 0;
    background: var(--primary-light);
    position: relative;
}

.earn-image-wrapper {
    position: relative;
}

.earn-image {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.earn-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--accent-gold);
    filter: blur(100px);
    opacity: 0.1;
    top: 20%;
    left: 20%;
    border-radius: 50%;
    z-index: -1;
}

.earn-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.earn-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.earn-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    background: rgba(0, 201, 167, 0.15);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.earn-feature-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ---------- PAYMENTS SECTION ---------- */
.section-payments {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
}

.payment-image-wrapper {
    position: relative;
}

.payment-image {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.payment-methods-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 24px;
    transition: var(--transition);
}

.payment-method-card:hover {
    border-color: rgba(247, 183, 51, 0.3);
    transform: translateX(8px);
}

.pm-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.payeer-icon {
    background: linear-gradient(135deg, #00c9a7, #00d4aa);
    color: white;
}

.paypal-icon {
    background: linear-gradient(135deg, #4facfe, #003087);
    color: white;
}

.pm-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pm-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.pm-info strong {
    color: var(--accent-gold);
}

/* ---------- STATS SECTION ---------- */
.section-stats {
    padding: 100px 0;
    position: relative;
    background:
        linear-gradient(135deg, rgba(48, 43, 99, 0.9), rgba(15, 12, 41, 0.95)),
        url('https://mgx-backend-cdn.metadl.com/generate/images/961280/2026-03-30/c8e92da1-fa94-4d31-acc8-3952094001ec.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(247, 183, 51, 0.05) 0%, transparent 70%);
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 183, 51, 0.3);
    box-shadow: 0 15px 40px rgba(247, 183, 51, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.stat-icon.icon-green {
    background: var(--gradient-green);
}

.stat-icon.icon-blue {
    background: var(--gradient-blue);
}

.stat-icon.icon-gold {
    background: var(--gradient-gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ---------- COMMUNITY SECTION ---------- */
.section-community {
    padding: 100px 0;
    background: var(--primary-light);
}

.community-image-wrapper {
    position: relative;
}

.community-image {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.community-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.perk-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.perk-item > i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(247, 183, 51, 0.12);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 2px;
}

.perk-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.perk-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ---------- CONTACT SECTION ---------- */
.section-contact {
    padding: 100px 0;
    background: var(--primary-dark);
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(15px);
}

.contact-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-detail-item i {
    color: var(--accent-gold);
    width: 20px;
    text-align: center;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-color: transparent;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 12px;
    padding: 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(247, 183, 51, 0.1);
    color: var(--text-white);
}

.contact-form .form-floating label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--accent-gold);
}

/* ---------- CTA SECTION ---------- */
.section-cta {
    padding: 80px 0;
    background: var(--primary-light);
}

.cta-card {
    background: var(--gradient-gold);
    border-radius: 24px;
    padding: 50px 48px;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -100px;
    right: -50px;
    filter: blur(60px);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.cta-desc {
    color: rgba(15, 12, 41, 0.7);
    font-size: 1rem;
    margin: 0;
}

.btn-cta {
    background: var(--primary-dark);
    color: var(--text-white) !important;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--text-white) !important;
}

/* ---------- FOOTER ---------- */
.site-footer {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--card-border);
}

.footer-logo {
    opacity: 0.8;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.6;
}

.footer-copyright a {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ---------- HERO PARTICLES ---------- */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        text-align: center;
        padding-top: 100px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .step-arrow {
        display: none !important;
    }

    .contact-card {
        padding: 24px;
    }

    .cta-card {
        padding: 36px 24px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .section-earn,
    .section-payments,
    .section-community {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .payment-method-card {
        flex-direction: column;
        text-align: center;
    }
}