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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.icon {
    width: 20px;
    height: 20px;
}

.gradient-text {
    background: linear-gradient(to right, #ef4444, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, #ef4444, #ec4899);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.btn-secondary {
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: white;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

.btn-white {
    background: white;
    color: #dc2626;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #ef4444, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ef4444;
}

.nav-cta {
    background: linear-gradient(to right, #ef4444, #ec4899);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

.nav-cta:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.nav-mobile.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #fef2f2, #fdf2f8, #ffffff);
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-weight: 600;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #6b7280;
}

.hero-visual {
    position: relative;
}

.upload-dashboard {
    background: linear-gradient(135deg, #fecaca, #fbcfe8);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.dashboard-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.earnings {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
}

.upload-zone {
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 1rem;
}

.upload-zone:hover,
.upload-zone.drag-active {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.upload-icon {
    width: 3rem;
    height: 3rem;
    color: #9ca3af;
    margin: 0 auto 1rem;
}

.upload-zone p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.stat-card .stat-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.step:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #fecaca;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    background: linear-gradient(to right, #ef4444, #ec4899);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.step-icon.blue {
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
}

.step-icon.purple {
    background: linear-gradient(to right, #8b5cf6, #7c3aed);
}

.step-icon.green {
    background: linear-gradient(to right, #10b981, #059669);
}

.step-icon.red {
    background: linear-gradient(to right, #ef4444, #ec4899);
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    group: hover;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #fecaca;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, #ef4444, #ec4899);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

.features-stats {
    background: linear-gradient(to right, #ef4444, #ec4899);
    border-radius: 1.5rem;
    padding: 3rem;
    color: white;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.features-stats .stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.features-stats .stat-label {
    color: #fecaca;
}

/* Earnings Section */
.earnings {
    padding: 5rem 0;
    background: white;
}

.earnings-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .earnings-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.calculator-card {
    background: linear-gradient(135deg, #fef2f2, #fdf2f8);
    padding: 2rem;
    border-radius: 1.5rem;
}

.calculator-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.slider-container {
    margin-bottom: 1.5rem;
}

.slider-container label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.slider {
    width: 100%;
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 0.25rem;
    outline: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(to right, #ef4444, #ec4899);
    border-radius: 50%;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(to right, #ef4444, #ec4899);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.earnings-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.earning-period {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.period-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.period-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #dc2626;
}

.avg-payout {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.payout-value {
    font-weight: 600;
}

.tiers-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tiers-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.tier-card {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: box-shadow 0.3s ease;
}

.tier-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tier-card.pro {
    background: linear-gradient(to right, #ef4444, #ec4899);
    color: white;
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tier-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tier-icon.gray {
    background: linear-gradient(to right, #9ca3af, #6b7280);
}

.tier-icon.blue {
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
}

.tier-card.pro .tier-icon {
    background: rgba(255, 255, 255, 0.2);
}

.tier-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.tier-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.tier-card.pro .tier-info h4 {
    color: white;
}

.tier-info p {
    color: #6b7280;
    font-size: 0.875rem;
}

.tier-card.pro .tier-info p {
    color: #fecaca;
}

.tier-payout {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.tier-payout.blue {
    color: #2563eb;
}

.tier-card.pro .tier-payout {
    color: white;
}

.tier-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.tier-card.pro .tier-label {
    color: #fecaca;
}

.earnings-cta {
    text-align: center;
}

.cta-card {
    background: linear-gradient(to right, #ef4444, #ec4899);
    padding: 3rem;
    border-radius: 1.5rem;
    color: white;
}

.cta-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fecaca;
}

/* Upload Section */
.upload-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.upload-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .upload-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.upload-interface {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.upload-zone-large {
    border: 2px dashed #d1d5db;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.upload-zone-large:hover,
.upload-zone-large.drag-active {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.upload-icon-large {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, #ef4444, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.upload-icon-large svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.upload-zone-large h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.upload-zone-large p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.upload-info {
    font-size: 0.875rem;
    color: #9ca3af;
}

.uploaded-files {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.uploaded-files h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-icon {
    color: #ef4444;
    width: 1.5rem;
    height: 1.5rem;
}

.file-details h5 {
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.25rem;
}

.file-details p {
    font-size: 0.875rem;
    color: #6b7280;
}

.file-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-icon {
    color: #10b981;
    width: 1.25rem;
    height: 1.25rem;
}

.status-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.upload-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card,
.payout-card,
.requirements-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-card h3,
.payout-card h3,
.requirements-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.benefit-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon.blue {
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
}

.benefit-icon.green {
    background: linear-gradient(to right, #10b981, #059669);
}

.benefit-icon.red {
    background: linear-gradient(to right, #ef4444, #ec4899);
}

.benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.benefit-content h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #6b7280;
}

.payout-card {
    background: linear-gradient(to right, #ef4444, #ec4899);
    color: white;
}

.payout-card h3 {
    color: white;
}

.payout-rates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rate-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.rate-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.rate-label {
    font-size: 0.875rem;
    color: #fecaca;
}

.rate-note {
    font-size: 0.875rem;
    color: #fecaca;
}

.requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

.check-icon {
    color: #10b981;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3 {
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-image img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #f87171, #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

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

.social-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-stats {
    border-top: 1px solid #374151;
    padding-top: 3rem;
    margin-bottom: 3rem;
}

.footer-stats .stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-stats .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-stats .stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(to right, #f87171, #fb7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-stats .stat-label {
    color: #9ca3af;
}

.newsletter {
    border-top: 1px solid #374151;
    padding-top: 3rem;
    margin-bottom: 3rem;
}

.newsletter-content {
    max-width: 28rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: #9ca3af;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #9ca3af;
}

.status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.solana-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solana-link:hover {
    color: white;
}

.solana-link .icon {
    width: 1rem;
    height: 1rem;
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .earnings-results {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .payout-rates {
        grid-template-columns: 1fr;
    }
}