    .rate-highlight {
        color: #00ff00;
        font-weight: 700;
        text-shadow: 0 0 9px rgba(0,191,255,0.6), 0 0 18px rgba(0,191,255,0.45);
        animation: dynamic-blue-glow 2.1s ease-in-out infinite alternate;
    }
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-icon {
    color: #00ff00;
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-img {
    width: 120px;
    height: 120px;
}

.logo-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-transform: lowercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-social-btn {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.nav-social-btn:hover {
    color: #00ff00;
    transform: translateY(-2px);
}

.nav-social-btn svg {
    display: block;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00ff00;
}

.nav-cta {
    background: #00ff00;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background: #00cc00;
    transform: translateY(-2px);
}

.arrow {
    font-size: 14px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bar {
    width: 20px;
    height: 2px;
    background: #00ff00;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-shade {
    position: fixed;
    top: -100px;
    left: -100px;
    width: 60vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

.hero-shade-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2500px;
    height: 1500px;
    z-index: 1;
    pointer-events: none;
    transform: translate(calc(100% - 2500px), calc(100% - 1500px));
}

.hero-shade-bottom-lower {
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 1200px;
    height: 1200px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-shade-static {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

.hero-shade-additional {
    position: absolute;
    right: -200px;
    top: -400px;
    width: 800px;
    height: 800px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.hero-shade-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    width: 100%;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.highlight {
    color: #00ff00;
    text-shadow: 0 0 9px rgba(0,191,255,0.6), 0 0 18px rgba(0,191,255,0.45);
    animation: dynamic-blue-glow 2.1s ease-in-out infinite alternate;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #00ff00;
    color: #000000;
}

.btn-primary:hover {
    background: #00cc00;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00ff00;
}

.btn-secondary:hover {
    background: rgba(0, 255, 0, 0.1);
}

.rocket {
    font-size: 16px;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 1rem;
    max-width: 500px;
    overflow: hidden;
}

.contract-label {
    color: #00ff00;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.contract-value {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background: #00ff00;
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #00cc00;
    transform: translateY(-1px);
}

.copy-icon {
    font-size: 12px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding-top: 0;
}

.large-triangle {
    color: #00ff00;
    font-weight: 900;
    opacity: 0.3;
    position: absolute;
    right: -100px;
    top: -100px;
    transform: rotate(180deg);
    align-self: flex-start;
}

.hero-logo {
    width: 500px;
    height: 500px;
    position: absolute;
    right: 0;
    top: -300px;
    z-index: 2;
    animation: levitation 3s ease-in-out infinite, logo-blue-glow 2s ease-in-out infinite alternate;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@-webkit-keyframes levitation {
    0%, 100% {
        -webkit-transform: translateY(0px) translateZ(0);
        transform: translateY(0px) translateZ(0);
    }
    50% {
        -webkit-transform: translateY(-20px) translateZ(0);
        transform: translateY(-20px) translateZ(0);
    }
}

@keyframes levitation {
    0%, 100% {
        -webkit-transform: translateY(0px) translateZ(0);
        transform: translateY(0px) translateZ(0);
    }
    50% {
        -webkit-transform: translateY(-20px) translateZ(0);
        transform: translateY(-20px) translateZ(0);
    }
}

/* Hero Section Breaker */
.hero-breaker {
    width: 100vw;
    background: #000000;
    padding: 2rem 0;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.hero-breaker-img {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-breaker .earnings {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
    margin-top: 6rem;
}

.section-breaker {
    width: 100vw;
    background: #000000;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.section-breaker-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Images */
.section-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Earnings Section */
.earnings {
    padding: 6rem 0;
    background: #000000;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4rem;
}

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.earnings-shade {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    z-index: 0;
    pointer-events: none;
}

.earnings-shade-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.4;
}

.earnings-card {
    background: #191919;
    border: 1px solid #00ff00;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    z-index: 1;
}

.earnings-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

/* Automated hover cycle across the 4 earnings cards (desktop and mobile) */
.earnings-grid .earnings-card {
    will-change: transform, box-shadow;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@keyframes earnings-card-cycle {
    0% {
        transform: translateY(0);
        box-shadow: none;
    }
    6% {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
    }
    12.5% {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
    }
    15% {
        transform: translateY(0);
        box-shadow: none;
    }
    100% {
        transform: translateY(0);
        box-shadow: none;
    }
}

/* 8s total loop: 2s per card; active ~1s within each slot */
.earnings-grid > .earnings-card:nth-of-type(2) {
    animation: earnings-card-cycle 8s ease-in-out infinite both;
    animation-delay: 0s;
}
.earnings-grid > .earnings-card:nth-of-type(3) {
    animation: earnings-card-cycle 8s ease-in-out infinite both;
    animation-delay: 2s;
}
.earnings-grid > .earnings-card:nth-of-type(4) {
    animation: earnings-card-cycle 8s ease-in-out infinite both;
    animation-delay: 4s;
}
.earnings-grid > .earnings-card:nth-of-type(5) {
    animation: earnings-card-cycle 8s ease-in-out infinite both;
    animation-delay: 6s;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    .earnings-grid .earnings-card {
        animation: none !important;
    }
}

.card-content {
    margin-bottom: 1.5rem;
}

.card-small-text {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.6rem;
    text-align: left;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

.card-large-text {
    color: #00ff00;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    text-align: left;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    white-space: normal;
    word-break: break-word;
}

/* Add dynamic blue glow to big numbers/text in earnings cards */
.earnings .card-large-text {
        text-shadow: 0 0 9px rgba(0,191,255,0.6), 0 0 18px rgba(0,191,255,0.45);
        animation: dynamic-blue-glow 2.1s ease-in-out infinite alternate;
}

/* Ensure long amount fits on one line on desktop (2nd earnings card) */
@media (min-width: 769px) {
    /* Ensure first earnings card percentage fits one line */
    .earnings-grid > .earnings-card:nth-of-type(2) .card-large-text {
        font-size: 2rem;
        white-space: nowrap;
        letter-spacing: -0.01em;
    }
    .earnings-grid > .earnings-card:nth-of-type(3) .card-large-text {
        font-size: 2rem;
        white-space: nowrap;
        letter-spacing: -0.01em;
    }
}

/* Specific text styling for different content types */
.card-small-text:first-child {
    font-weight: 500; /* DM Sans Medium for "A massive", "You will earn", etc. */
}

.card-large-text {
    font-weight: 600; /* DM Sans SemiBold for "383,025.80%", "$383,454.12", etc. */
}

.card-small-text:last-child {
    font-weight: 400; /* DM Sans Regular for "annual percentage yield (APY)", etc. */
}

.card-chart {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

    .apy-chart-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 240px;
        max-height: 140px;
    }

.earnings-chart-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 260px;
    max-height: 160px;
}

    .defi-chart-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 180px;
        max-height: 110px;
        transform: translateY(-10px);
    }

.days-chart-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 180px;
    max-height: 110px;
}

.chart-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ff00, #00cc00);
    border-radius: 2px;
}

.chart-bars {
    display: flex;
    gap: 4px;
    align-items: end;
    height: 40px;
}

.bar {
    width: 8px;
    background: #00ff00;
    border-radius: 2px;
}

.bar:nth-child(1) { height: 20px; }
.bar:nth-child(2) { height: 30px; }
.bar:nth-child(3) { height: 25px; }
.bar:nth-child(4) { height: 35px; }

.chart-triangle {
    font-size: 2rem;
    color: #00ff00;
    font-weight: 900;
    transform: rotate(180deg);
}

.chart-check {
    font-size: 2rem;
    color: #00ff00;
    font-weight: 900;
}

/* How it works Section */
.how-it-works {
    padding: 6rem 0;
    background: #000000;
}

.how-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.how-text {
    text-align: left;
}

.how-text .btn-primary {
    display: inline-block;
    margin: 0;
}

.how-description {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-family: 'Electrolux Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.how-details {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Electrolux Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.how-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.how-visual-shade {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 0;
    pointer-events: none;
}

.how-shade-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
}

.how-works-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    position: relative;
    z-index: 1;
    display: block;
}

.device-mockups {
    position: relative;
    width: 300px;
    height: 400px;
    z-index: 1;
}

.phone-mockup {
    width: 120px;
    height: 200px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 20px;
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 2;
}

.tablet-mockup {
    width: 200px;
    height: 150px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 15px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

/* Financial Structure Section */
.financial-structure {
    padding: 6rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.financial-shade {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 1000px;
    height: 1000px;
    z-index: 0;
    pointer-events: none;
}

.financial-shade-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.5;
}

.financial-title {
    font-family: 'Electrolux Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.financial-highlight {
    color: #00ff00;
    text-shadow: 0 0 9px rgba(0,191,255,0.6), 0 0 18px rgba(0,191,255,0.45);
    animation: dynamic-blue-glow 2.1s ease-in-out infinite alternate;
}

    .how-it-works-title {
        font-family: 'Electrolux Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .ponzi-title-highlight {
        color: #00ff00;
        font-weight: 700;
        text-shadow: 0 0 8px rgba(0,191,255,0.55), 0 0 16px rgba(0,191,255,0.4);
        animation: dynamic-blue-glow 2.2s ease-in-out infinite alternate;
    }

    .ponzi-description-highlight {
        color: #00ff00;
        font-weight: 700;
        text-shadow: 0 0 8px rgba(0,191,255,0.55), 0 0 16px rgba(0,191,255,0.4);
        animation: dynamic-blue-glow 2.2s ease-in-out infinite alternate;
    }

    .hero-ponzi-highlight {
        color: #00ff00;
        font-weight: 700;
        text-shadow: 0 0 8px rgba(0,191,255,0.55), 0 0 16px rgba(0,191,255,0.4);
        animation: dynamic-blue-glow 2.2s ease-in-out infinite alternate;
    }

    .time-highlight {
        color: #00ff00;
        font-weight: 700;
        text-shadow: 0 0 8px rgba(0,191,255,0.55), 0 0 16px rgba(0,191,255,0.4);
        animation: dynamic-blue-glow 2.2s ease-in-out infinite alternate;
    }

.roadmap-title {
    font-family: 'Electrolux Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.financial-structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.structure-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.structure-card {
    background: #191919;
    border: 1px solid #00ff00;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    max-width: 300px;
    transition: all 0.3s ease;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.structure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

/* Automated highlight cycle across the 3 structure cards */
.structure-flow .structure-card {
    will-change: transform, box-shadow;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@keyframes structure-card-cycle {
    0% {
        transform: translateY(0);
        box-shadow: none;
    }
    12% {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
    }
    25% {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
    }
    30% {
        transform: translateY(0);
        box-shadow: none;
    }
    100% {
        transform: translateY(0);
        box-shadow: none;
    }
}

/* 6s loop: 2s per card */
.structure-flow .structure-card:nth-child(1) {
    animation: structure-card-cycle 6s ease-in-out infinite both;
    animation-delay: 0s;
}
.structure-flow .structure-card:nth-child(3) {
    animation: structure-card-cycle 6s ease-in-out infinite both;
    animation-delay: 2s;
}
.structure-flow .structure-card:nth-child(5) {
    animation: structure-card-cycle 6s ease-in-out infinite both;
    animation-delay: 4s;
}

@media (prefers-reduced-motion: reduce) {
    .structure-flow .structure-card {
        animation: none !important;
    }
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.structure-card h3 {
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.structure-card p {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
}

.flow-arrow {
    color: #00ff00;
    font-size: 2rem;
    font-weight: 900;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.roadmap-shade-top-right {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 1000px;
    height: 1000px;
    z-index: 0;
    pointer-events: none;
}

.roadmap-shade-top-right-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.5;
}

.roadmap-shade-bottom-left {
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 1000px;
    height: 1000px;
    z-index: 0;
    pointer-events: none;
}

.roadmap-shade-bottom-left-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.5;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00bfff;
}

.roadmap-shade {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    z-index: 0;
    pointer-events: none;
}

.roadmap-shade-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.4;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
    z-index: 1;
}

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #00ff00;
    border-radius: 50%;
    border: 4px solid #000000;
}

.timeline-card {
    background: #191919;
    border: 1px solid #00ff00;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.timeline-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

/* Automated highlight cycle across Roadmap timeline cards */
.roadmap-timeline .timeline-card {
    will-change: transform, box-shadow;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@keyframes roadmap-card-cycle {
    0% {
        transform: translateX(0);
        box-shadow: none;
    }
    12% {
        transform: translateX(10px);
        box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
    }
    25% {
        transform: translateX(10px);
        box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
    }
    30% {
        transform: translateX(0);
        box-shadow: none;
    }
    100% {
        transform: translateX(0);
        box-shadow: none;
    }
}

/* 8s loop: 2s per card across 4 roadmap items */
.roadmap-timeline .timeline-item:nth-child(2) .timeline-card {
    animation: roadmap-card-cycle 8s ease-in-out infinite both;
    animation-delay: 0s;
}
.roadmap-timeline .timeline-item:nth-child(3) .timeline-card {
    animation: roadmap-card-cycle 8s ease-in-out infinite both;
    animation-delay: 2s;
}
.roadmap-timeline .timeline-item:nth-child(4) .timeline-card {
    animation: roadmap-card-cycle 8s ease-in-out infinite both;
    animation-delay: 4s;
}
.roadmap-timeline .timeline-item:nth-child(5) .timeline-card {
    animation: roadmap-card-cycle 8s ease-in-out infinite both;
    animation-delay: 6s;
}

@media (prefers-reduced-motion: reduce) {
    .roadmap-timeline .timeline-card {
        animation: none !important;
    }
}

.timeline-card h3 {
    color: #00ff00;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.timeline-card p {
    color: #ffffff;
    line-height: 1.6;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 0.75rem;
}

.timeline-card p:last-child {
    margin-bottom: 0;
}

.timeline-card p em {
    color: #00ff00;
    font-style: italic;
    font-weight: 500;
}

/* Subscribe Section */
.subscribe {
    padding: 6rem 0;
    background: #000000;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #00bfff;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #0099cc;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.email-input::placeholder {
    color: #666;
}

/* Footer */
    .footer {
        background: #000000;
        padding: 0.75rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        position: relative;
        width: 100%;
        clear: both;
    }

    /* Quote Section */
    .quote-section {
        padding: 4rem 0;
        background: #000000;
        border-top: 1px solid rgba(0, 255, 0, 0.2);
        border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    }

    .quote-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .quote-text {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 1.4;
        font-family: 'Electrolux Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        margin: 0;
    }

    .ponzi-highlight {
        color: #00ff00;
        font-weight: 700;
        text-shadow: 0 0 6px rgba(0,191,255,0.5), 0 0 12px rgba(0,191,255,0.35);
        animation: dynamic-blue-glow 2.4s ease-in-out infinite alternate;
    }

    @keyframes dynamic-blue-glow {
        0% {
            text-shadow: 0 0 3px rgba(0,191,255,0.35), 0 0 8px rgba(0,191,255,0.25);
        }
        100% {
            text-shadow: 0 0 8px rgba(0,191,255,0.5), 0 0 14px rgba(0,191,255,0.35);
        }
    }

    /* Earnings Quote Section */
    .earnings-quote-section {
        padding: 2rem 0;
        background: #000000;
        border-top: 1px solid rgba(0, 255, 0, 0.2);
        border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    }

    .earnings-quote-content {
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .earnings-quote-text {
        color: #ffffff;
        font-size: 1.6rem;
        font-weight: 600;
        line-height: 1.5;
        font-family: 'Electrolux Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        margin: 0;
    }

    .quote-highlight {
        color: #00ff00;
        font-weight: 700;
        font-size: 1.8rem;
        text-shadow: 0 0 8px rgba(0,191,255,0.55), 0 0 16px rgba(0,191,255,0.4);
        animation: dynamic-blue-glow 2.2s ease-in-out infinite alternate;
    }

    .earnings-amount {
        color: #00ff00;
        font-weight: 700;
        font-size: 1.7rem;
        text-shadow: 0 0 8px rgba(0,191,255,0.55), 0 0 16px rgba(0,191,255,0.4);
        animation: dynamic-blue-glow 2.2s ease-in-out infinite alternate;
    }

    .apy-highlight {
        color: #00ff00;
        font-weight: 700;
        text-shadow: 0 0 8px rgba(0,191,255,0.55), 0 0 16px rgba(0,191,255,0.4);
        animation: dynamic-blue-glow 2.2s ease-in-out infinite alternate;
    }

    @keyframes dynamic-glow {
        0% {
            text-shadow: 0 0 3px rgba(0,255,0,0.35), 0 0 8px rgba(0,255,0,0.25);
        }
        100% {
            text-shadow: 0 0 8px rgba(0,255,0,0.5), 0 0 14px rgba(0,255,0,0.35);
        }
    }

    .investment-highlight {
        color: #00ff00;
        font-weight: 700;
        text-shadow: 0 0 6px rgba(0,191,255,0.5), 0 0 12px rgba(0,191,255,0.35);
        animation: dynamic-blue-glow 2.4s ease-in-out infinite alternate;
    }

    .earnings-quote-logo {
        text-align: center;
        margin: 0;
    }

    .quote-logo-img {
        width: 150px;
        height: 150px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        animation: levitate-soft 3s ease-in-out infinite, logo-blue-glow 2s ease-in-out infinite alternate;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    @keyframes levitate-soft {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    @keyframes logo-blue-glow {
        0% {
            filter: drop-shadow(0 0 3px rgba(0,191,255,0.4)) drop-shadow(0 0 8px rgba(0,191,255,0.25));
        }
        100% {
            filter: drop-shadow(0 0 8px rgba(0,191,255,0.5)) drop-shadow(0 0 14px rgba(0,191,255,0.35));
        }
    }

    /* Tokenomics Section */
    .tokenomics {
        padding: 4rem 0;
        background: #000000;
        position: relative;
        overflow: hidden;
    }

    .tokenomics-shade {
        position: absolute;
        top: -200px;
        left: -200px;
        width: 1000px;
        height: 1000px;
        z-index: 0;
        pointer-events: none;
    }

    .tokenomics-shade-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: 0.5;
    }

    .tokenomics-shade-right {
        position: absolute;
        bottom: -200px;
        right: -200px;
        width: 1000px;
        height: 1000px;
        z-index: 0;
        pointer-events: none;
    }

    .tokenomics-title {
        font-family: 'Electrolux Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .tokenomics-supply {
        color: #ffffff;
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 3rem;
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-weight: 500;
    }

    .tokenomics-section {
        margin-bottom: 3rem;
    }

    .tokenomics-card {
        background: #191919;
        border: 1px solid #00ff00;
        border-radius: 16px;
        padding: 2.5rem;
        text-align: center;
        transition: all 0.3s ease;
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .tokenomics-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
    }

    .tokenomics-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .tokenomics-subtitle {
        color: #00ff00;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .tokenomics-description {
        color: #ffffff;
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .tax-list {
        text-align: left;
        margin-bottom: 2rem;
    }

    .tax-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        gap: 2rem;
        padding: 1.5rem;
        background: rgba(0, 255, 0, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(0, 255, 0, 0.2);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .tax-percentage {
        color: #00ff00;
        font-weight: 700;
        font-size: 1.2rem;
        min-width: 50px;
        text-align: center;
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .tax-label {
        color: #ffffff;
        font-weight: 600;
        font-size: 1.1rem;
        min-width: 220px;
        flex-shrink: 0;
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .tax-label-with-icon {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        min-width: 220px;
        flex-shrink: 0;
    }

    .tax-icon-img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .tax-description {
        color: #cccccc;
        font-size: 1rem;
        line-height: 1.6;
        flex: 1;
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .total-tax {
        background: rgba(0, 255, 0, 0.1);
        border: 1px solid #00ff00;
        border-radius: 8px;
        padding: 0.75rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .total-tax:hover {
        background: rgba(0, 255, 0, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    }

    .tax-icon {
        font-size: 1.2rem;
    }

    .total-tax-text {
        color: #ffffff;
        font-weight: 500;
        font-size: 1rem;
    }

    .tokenomics-divider {
        text-align: center;
        font-size: 2rem;
        color: #00ff00;
        margin: 2rem 0;
        font-weight: 300;
    }

    .tax-structure-image {
        text-align: center;
        margin: 2rem 0;
    }

    .tokenomics-img {
        max-width: 75%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
        margin: 0 auto;
        display: block;
    }

    .supply-info {
        text-align: center;
        margin-top: 1.5rem;
    }

    .supply-btn {
        background: rgba(0, 255, 0, 0.1);
        border: 1px solid #00ff00;
        border-radius: 8px;
        padding: 0.75rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        width: 100%;
        justify-content: center;
    }

    .supply-btn:hover {
        background: rgba(0, 255, 0, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    }

    .coin-emoji {
        font-size: 1.2rem;
    }

    .supply-text {
        color: #ffffff;
        font-size: 1rem;
        font-weight: 500;
    }

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

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-logo .logo-icon {
    color: #00bfff;
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
}

.footer-logo .logo-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: lowercase;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.connect-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    background: #00bfff;
    color: #000000;
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #00ff00;
    color: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #00cc00;
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
    transform: translateY(-3px);
}

.back-to-top svg {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-cta {
        margin: 1rem auto 0 auto;
        width: fit-content;
        padding: 12px 24px;
        font-size: 16px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

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

    .blockchain-logos {
        justify-content: center;
    }

    .large-triangle {
        display: none;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
        position: relative;
        top: 0;
        right: 0;
        margin: 2rem auto 0 auto;
    }

    .earnings-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
    }

    .earnings-card {
        padding: 0.5rem;
        margin-bottom: 0.25rem;
    }

    .card-large-text {
        font-size: 1.1rem;
        margin-bottom: 0.15rem;
    }

    .card-small-text {
        font-size: 0.7rem;
        margin-bottom: 0.12rem;
    }

    .card-chart {
        height: 70px;
        margin-top: 0.1rem;
    }

    /* Ensure all earnings card icons align consistently on mobile */
    .card-chart img {
        display: block;
        margin: 0 auto;
        object-fit: contain;
        max-height: 70px;
    }

    /* Normalize any vertical offsets so the 4th card icon lines up */
    .defi-chart-img,
    .days-chart-img,
    .apy-chart-img,
    .earnings-chart-img {
        transform: translateY(0) !important;
    }

    .how-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .structure-flow {
        flex-direction: column;
        gap: 0.5rem;
    }

    .structure-card {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }

    .structure-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .structure-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .roadmap-timeline {
        max-width: 100%;
        padding: 0 1rem;
    }

    .timeline-item {
        padding-left: 50px;
        margin-bottom: 1rem;
    }

    .timeline-card {
        margin-left: 0;
        margin-top: 0.25rem;
        padding: 1rem;
    }

    .timeline-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .timeline-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

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

    .email-input {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-right {
        align-items: center;
    }

    .footer-logo-img {
        width: 150px;
        height: 150px;
    }

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

    .contract-address {
        flex-direction: column;
        gap: 0.5rem;
        padding: 12px;
        margin-top: 1.5rem;
    }

    .contract-value {
        font-size: 10px;
        padding: 4px 8px;
    }

    .copy-btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    .tokenomics-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .tokenomics-supply {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .tokenomics-card {
        padding: 1.5rem;
    }

    .tokenomics-subtitle {
        font-size: 1.2rem;
    }

    .tokenomics-description {
        font-size: 0.9rem;
    }

    .tax-item {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .tax-percentage {
        font-size: 1rem;
        min-width: auto;
    }

    .tax-label {
        font-size: 0.9rem;
        min-width: auto;
        font-weight: 600;
    }

    .tax-label-with-icon {
        min-width: auto;
        gap: 0.5rem;
    }

    .tax-icon-img {
        width: 20px;
        height: 20px;
    }

    .tax-description {
        font-size: 0.8rem;
    }

    .total-tax {
        padding: 0.5rem 1rem;
    }

    .total-tax-text {
        font-size: 0.9rem;
    }

    .tokenomics-img {
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
    }

    .supply-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .supply-text {
        font-size: 0.9rem;
    }

    .coin-emoji {
        font-size: 1rem;
    }

    .quote-section {
        padding: 3rem 0;
    }

    .quote-text {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .earnings-quote-section {
        padding: 3rem 0;
    }

    .earnings-quote-text {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    .quote-highlight {
        font-size: 1.5rem;
    }

    .earnings-amount {
        font-size: 1.4rem;
    }

    /* How does $PONZI work? section mobile styles */
    .how-content {
        flex-direction: column;
        gap: 0;
    }

    .how-visual {
        order: -1;
        margin-bottom: 0;
    }

    .how-text {
        text-align: center;
    }

    .how-text .btn-primary {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
}

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

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


    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-dot {
        left: 15px;
        width: 15px;
        height: 15px;
    }
}

/* Additional mobile styles for smaller screens */
@media (max-width: 480px) {
    .earnings-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
        width: 100%;
    }
    
    .earnings-card {
        padding: 0.5rem;
        margin-bottom: 0.25rem;
    }
}