/*
 * ARXCash Website Styles
 * Author: YRXJN
 * Description: Custom CSS for ARXCash affiliate marketing platform
 * Date: 2025-10-06
 */

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

:root {
    --primary-color: #F49F0A;
    --secondary-color: #6CA389;
    --dark-bg: #1A1A1A;
    --light-bg: #F5F5F5;
    --text-dark: #2C3E50;
    --text-light: #666;
    --white: #FFFFFF;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background-color: var(--dark-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #E09315;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 90px;
    font-size: 24px;
}

.btn-cta:hover {
    background-color: #E09315;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.btn-cta-large {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 60px;
    font-size: 20px;
    border-radius: 34px;
}

.btn-cta-large:hover {
    background-color: #E09315;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

/* Hero Section */
.hero {
    background-image: url('../assets/images/01-Header/Image 3@2x.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero-content {
    position: relative;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--dark-bg);
    margin-bottom: 20px;
    letter-spacing: -1px;
    
}

.hero-subtitle {
    font-size: 20px;
    color: var(--dark-bg);
    line-height: 1.8;
    opacity: 0.95;
}

/* Hero Cards Section */
.hero-cards-section {
    position: relative;
}

.hero-cards-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 60px;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.hero-cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Ways to Earn Section */
.ways-to-earn {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-top: -40px;
    margin-bottom: 60px;
}

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

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.card-amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.card-frequency {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.card-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Sign Up Bonus Section */
.signup-bonus {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.bonus-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bonus-icon {
    margin-bottom: 25px;
}

.bonus-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.bonus-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.bonus-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Performance Section */
.performance {
    padding: 80px 0;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3CBDB4 100%);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* How to Start Section */
.how-to-start .container{
    max-width: 1280px;
}
.how-to-start {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.step-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-label {
    font-size: 34px;
    font-weight: 400;
    color: #B0B0B0;
    margin-bottom: 20px;
    text-align: center;
}

.step-label .step-number {
    color: #6CA389;
    font-weight: 600;
}

.step-icon {
    margin: 20px 0;
}

.step-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.get-started-cta {
    text-align: center;
    margin-top: 50px;
}

.get-started-cta .cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 100px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(244, 159, 10, 0.3);
}

.get-started-cta .cta-button:hover {
    background: #E88D00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 159, 10, 0.4);
}

/* Why Works Section */
.why-works .container{
    max-width: 1280px;
}
.why-works {
    padding: 80px 0;
    background-color: #F2F1E7;
}

.why-works-cards {
    margin: 50px 0;
}

.why-works-card {
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 50px 40px;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.why-works-content {
    max-width: 500px;
    color: white;
    z-index: 2;
    position: relative;
}

.why-works-content.text-right {
    margin-left: auto;
}

.why-works-content h3 {
    font-size: 42px;
    font-weight: 700;
    color: #1CE3A4;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-works-content p {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
}

.support-card {
    justify-content: space-between;
}

.support-logo {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.support-logo img {
    max-width: 200px;
    height: auto;
}

.why-works-cta {
    text-align: center;
    margin-top: 50px;
}
wh
.why-works-cta .btn-cta-large {
    padding: 18px 100px;
}

.why-works-cta a{
    text-decoration: none;  
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3CBDB4 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
.footer .container{
    max-width: 1480px;
}
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}

.copyright p {
    font-size: 14px;
    color: var(--white);
    opacity: 0.7;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 14px;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-info i {
    color: var(--secondary-color);
    width: 16px;
    text-align: center;
}
.contact-address {
    line-height: 1.4;
}

.footer-disclaimer {
    background-color: #2ECB99;
    padding: 20px 0;
}

.footer-disclaimer .container {
    max-width: 1480px;
}

.footer-disclaimer p {
    color: var(--dark-bg);
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.footer-disclaimer strong {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-direction: column;
        width: 100%;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cards-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .hero-cards-grid {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .hero-cta-center {
        margin-top: 30px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .card-amount {
        font-size: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

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

    .footer-contact {
        text-align: center;
    }

    .contact-info {
        justify-content: center;
        text-align: center;
    }

    .contact-info span {
        text-align: center;
    }

    .footer-disclaimer {
        padding: 15px 0;
    }

    .footer-disclaimer p {
        font-size: 11px;
        padding: 0 20px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 30px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-cards-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .hero-cards-grid {
        margin-bottom: 20px;
    }

    .hero-cta-center {
        margin-top: 20px;
    }

    .ways-to-earn,
    .signup-bonus,
    .performance,
    .how-to-start,
    .why-works {
        padding: 50px 0;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-contact h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .contact-info {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-disclaimer p {
        font-size: 10px;
        padding: 0 15px;
    }

    .why-works-cards {
        margin: 30px 0;
    }

    .why-works-card {
        min-height: 200px;
        padding: 30px 20px;
        margin-bottom: 15px;
        border-radius: 15px;
    }

    .why-works-content {
        max-width: 100%;
        text-align: center;
    }

    .why-works-content.text-right {
        margin-left: 0;
        text-align: center;
    }

    .why-works-content h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .why-works-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }

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

    .support-logo {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }

    .support-logo img {
        max-width: 150px;
    }

    .why-works-cta {
        margin-top: 30px;
    }

    .btn-cta,
    .btn-cta-large {
        padding: 14px 40px;
        font-size: 16px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.card,
.bonus-card,
.stat-card,
.step-card {
    animation: fadeIn 0.6s ease-out;
}

/* Sign-Up Bonus Showcase Section */
.signup-bonus-showcase {
    padding: 60px 0;
    background: #2ECB99;
    position: relative;
}

.bonus-progress-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bonus-progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
    position: relative;
}

.progress-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    flex-shrink: 0;
}

.step-number-top {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 2;
}

.step-circle:hover {
    transform: scale(1.1);
}

.checkmark {
    width: 24px;
    height: 24px;
    fill: #6CA389;
}

.progress-step.final .step-circle {
    background: var(--primary-color);
    width: 70px;
    height: 70px;
}

.bonus-circle {
    background: var(--primary-color) !important;
}

.bonus-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
}

.step-connector {
    position: absolute;
    top: 40%;
    right: -30px;
    width: 30px;
    height: 4px;
    background: var(--dark-bg);
    z-index: 1;
    border-radius: 2px;
    transform: translateY(-50%);
    margin-top: 30px;
}

.progress-step.final .step-connector {
    display: none;
}

.bonus-message {
    text-align: center;
}

.bonus-message h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

/* Responsive Design for Sign-Up Bonus Showcase */
@media (max-width: 768px) {
    .signup-bonus-showcase {
        padding: 40px 0;
    }
    
    .bonus-progress-bar {
        gap: 15px;
        margin-bottom: 30px;
        padding: 0 15px;
        flex-wrap: nowrap;
        min-width: fit-content;
    }
    
    .step-number-top {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .progress-step.final .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .bonus-text {
        font-size: 18px;
    }
    
    .checkmark {
        width: 20px;
        height: 20px;
    }
    
    .step-connector {
        top: 50%;
        right: -15px;
        width: 15px;
        height: 3px;
        transform: translateY(-50%);
        margin-top: 25px;
    }
    
    .bonus-message h2 {
        font-size: 24px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .signup-bonus-showcase {
        padding: 30px 0;
    }
    
    .bonus-progress-container {
        overflow-x: auto;
        padding: 0 10px;
    }
    
    .bonus-progress-bar {
        gap: 8px;
        margin-bottom: 25px;
        padding: 0;
        justify-content: flex-start;
        min-width: 520px;
        flex-wrap: nowrap;
    }
    
    .progress-step {
        flex-shrink: 0;
        min-width: 45px;
    }
    
    .step-number-top {
        font-size: 14px;
        margin-bottom: 5px;
        white-space: nowrap;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .progress-step.final .step-circle {
        width: 50px;
        height: 50px;
    }
    
    .bonus-text {
        font-size: 14px;
        font-weight: 900;
    }
    
    .checkmark {
        width: 16px;
        height: 16px;
    }
    
    .step-connector {
        top: 44%;
        right: -8px;
        width: 8px;
        height: 2px;
        transform: translateY(-50%);
        margin-top: 20px;
    }
    
    .bonus-message h2 {
        font-size: 18px;
        padding: 0 15px;
        line-height: 1.3;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .bonus-progress-container {
        padding: 0 5px;
    }
    
    .bonus-progress-bar {
        gap: 6px;
        min-width: 450px;
    }
    
    .step-number-top {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
    }
    
    .progress-step.final .step-circle {
        width: 45px;
        height: 45px;
    }
    
    .bonus-text {
        font-size: 12px;
    }
    
    .checkmark {
        width: 14px;
        height: 14px;
    }
    
    .step-connector {
        right: -6px;
        width: 6px;
        margin-top: 17px;
    }
    
    .bonus-message h2 {
        font-size: 16px;
        padding: 0 10px;
    }
}

/* Earnings Example Section */
.earnings-example .container{
    max-width: 1280px;
}
.earnings-example {
    background-color: #525252;
    padding: 80px 0;
    color: var(--white);
}

.earnings-title {
    font-size: 36px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 40px;
    color: var(--white);
}

.earnings-table-container {
    background-color: #000000;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 40px;
    overflow: hidden;
}

.earnings-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--white);
}

.table-header {
    background-color: #000000;
    border-bottom: 3px solid #1CE3A4;
}

.table-header th {
    padding: 25px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    border: none;
}

.tier-column {
    width: 200px;
    text-align: left !important;
}

.table-row {
    background: #444B48;
    border-bottom: 3px solid #1CE3A4;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row td {
    padding: 25px 20px;
    text-align: center;
    font-size: 18px;
    border: none;
}

.tier-info {
    text-align: left !important;
}

.tier-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 4px;
}

.tier-subtitle {
    font-size: 16px;
    color: #1CE3A4;
    font-weight: normal;
}

.amount {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.total-amount {
    font-weight: bold;
}

.earnings-disclaimer {
    background-color: #6CA389;
    padding: 20px 30px;
    border-radius: 0 0 20px 20px;
    margin-top: 0;
}

.earnings-disclaimer p {
    font-size: 12px;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.earnings-disclaimer p:first-child {
    margin-bottom: 4px;
}

.earnings-cta {
    text-align: center;
    margin-top: 40px;
}

.earnings-cta .cta-button {
    background: #F49F0A;
    color: var(--white);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.earnings-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 173, 15, 0.4);
}

/* Responsive Design for Earnings Example */
@media (max-width: 768px) {
    .earnings-example {
        padding: 60px 0;
    }
    
    .earnings-title {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .earnings-table-container {
        margin: 0;
        border-radius: 20px;
        overflow: visible;
        background-color: transparent;
        padding: 0;
    }
    
    /* Hide traditional table on mobile */
    .earnings-table {
        display: none;
    }
    
    /* Mobile card layout */
    .mobile-earnings-cards {
        display: block;
    }
    
    .mobile-earnings-card {
        background: #444B48;
        border-radius: 15px;
        padding: 25px 20px;
        margin-bottom: 15px;
        border: 2px solid #1CE3A4;
    }
    
    .mobile-tier-header {
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #1CE3A4;
    }
    
    .mobile-tier-name {
        font-size: 20px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 5px;
    }
    
    .mobile-tier-subtitle {
        font-size: 14px;
        color: #1CE3A4;
    }
    
    .mobile-earnings-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #666;
    }
    
    .mobile-earnings-row:last-child {
        border-bottom: none;
        font-weight: 600;
        font-size: 18px;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 2px solid #1CE3A4;
    }
    
    .mobile-earnings-label {
        font-size: 14px;
        color: #ccc;
        flex: 1;
    }
    
    .mobile-earnings-amount {
        font-size: 16px;
        font-weight: 600;
        color: var(--white);
    }
    
    .mobile-earnings-row:last-child .mobile-earnings-amount {
        color: #1CE3A4;
        font-size: 18px;
    }
    
    .earnings-disclaimer {
        padding: 20px;
        border-radius: 15px;
        margin-top: 20px;
        background-color: #6CA389;
    }
    
    .earnings-disclaimer p {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .earnings-disclaimer p:last-child {
        margin-bottom: 0;
    }
    
    .earnings-cta .cta-button {
        padding: 16px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .earnings-example {
        padding: 40px 0;
    }
    
    .earnings-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .mobile-earnings-card {
        padding: 20px 15px;
        margin-bottom: 12px;
    }
    
    .mobile-tier-name {
        font-size: 18px;
    }
    
    .mobile-tier-subtitle {
        font-size: 13px;
    }
    
    .mobile-earnings-label {
        font-size: 13px;
    }
    
    .mobile-earnings-amount {
        font-size: 15px;
    }
    
    .mobile-earnings-row:last-child .mobile-earnings-amount {
        font-size: 16px;
    }
    
    .earnings-disclaimer {
        padding: 15px;
        margin-top: 15px;
    }
    
    .earnings-disclaimer p {
        font-size: 10px;
    }
    
    .earnings-cta .cta-button {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (min-width: 769px) {
    .mobile-earnings-cards {
        display: none;
    }
}