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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #0a1628 0%, #0d1b2a 30%, #0a0e1a 70%, #000000 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar for Body */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: rgba(64, 224, 208, 0.1);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8a2be2 0%, #40E0D0 100%);
    border-radius: 10px;
    transition: background 0.3s ease;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #40E0D0 0%, #00CED1 100%);
}

/* Firefox Scrollbar */
body {
    scrollbar-width: thin;
    scrollbar-color: rgba(64, 224, 208, 0.6) rgba(64, 224, 208, 0.1);
}

/* Grid pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(64, 224, 208, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(64, 224, 208, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Header Styles */
header {
    position: relative;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a2be2 0%, #6a1bb5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.logo-icon::before {
    content: '$';
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #40E0D0 0%, #00CED1 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

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

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

.nav-menu a.active {
    color: #40E0D0;
}

.nav-menu a:hover {
    color: #40E0D0;
}

.wallet-icon {
    font-size: 16px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.connect-wallet-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #40E0D0 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register-btn {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.5);
}

.wallet-address-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #40E0D0 100%);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.wallet-address-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5);
}

.wallet-address-text {
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    padding: 60px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.4);
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.15);
}

.info-badge-icon {
    width: 16px;
    height: 16px;
    background: #ffffff;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

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

.main-heading {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.main-heading .gradient-text {
    background: linear-gradient(135deg, #40E0D0 0%, #00CED1 50%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-heading .white-text {
    color: #ffffff;
}

.description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Active Users Bar */
.active-users-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 50px;
    padding: 20px 40px;
    margin-top: 40px;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.users-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

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

.count-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.user-icon {
    font-size: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #8a2be2 0%, #40E0D0 100%);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(64, 224, 208, 0.4);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(64, 224, 208, 0.6);
}

.btn-primary::after {
    content: '→';
    font-size: 20px;
}

.btn-secondary {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(138, 43, 226, 0.6);
    padding: 18px 40px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}

.btn-secondary:hover {
    border-color: rgba(138, 43, 226, 1);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
    background: rgba(138, 43, 226, 0.1);
}

/* Section Headings */
.section-heading {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-heading.gradient-text {
    background: linear-gradient(135deg, #40E0D0 0%, #00CED1 50%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.green-text {
    color: #4ade80;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, #40E0D0 0%, #00CED1 50%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ROI Section */
.roi-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.investment-table-container {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    overflow-x: auto;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.2);
}

.investment-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.investment-table thead {
    background: rgba(138, 43, 226, 0.1);
}

.investment-table th {
    padding: 20px 15px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
}

.investment-table td {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.investment-table tbody tr:hover {
    background: rgba(138, 43, 226, 0.05);
}

.investment-table tbody tr.popular-row {
    background: rgba(138, 43, 226, 0.15);
    position: relative;
}

.slab-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8a2be2 0%, #40E0D0 100%);
    border-radius: 50%;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
}

.popular-badge {
    display: inline-block;
    background: linear-gradient(135deg, #40E0D0 0%, #8a2be2 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Start Investing Section */
.invest-now-section {
    text-align: center;
    padding: 40px 20px;
    margin: 40px 0 0;
}

.invest-now-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #40E0D0 100%);
    border: none;
    padding: 20px 50px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(64, 224, 208, 0.4);
    text-decoration: none;
}

.invest-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(64, 224, 208, 0.6);
}

.invest-now-btn::after {
    content: '→';
    font-size: 22px;
}

/* Journey Section */
.journey-section {
    text-align: center;
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.journey-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #40E0D0 0%, #00CED1 50%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.6);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a2be2 0%, #40E0D0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.step-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.step-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Deposits Section */
.deposits-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.deposits-container {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.2);
    max-height: 500px;
    overflow-y: auto;
}

.deposits-table {
    width: 100%;
    border-collapse: collapse;
}

.deposits-table thead {
    background: rgba(138, 43, 226, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.deposits-table th {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid rgba(138, 43, 226, 0.3);
}

.deposits-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.deposits-table tbody tr:hover {
    background: rgba(138, 43, 226, 0.05);
}

.user-icon-small {
    font-size: 16px;
    margin-right: 8px;
}

.transaction-hash {
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.6);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Trusted Section */
.trusted-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
footer {
    position: relative;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 60px 40px 30px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section .social-links {
    margin-top: 15px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #40E0D0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px solid rgba(64, 224, 208, 0.1);
}

.footer-logo-section {
    max-width: 300px;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-description-main {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    background: rgba(64, 224, 208, 0.2);
    border-color: rgba(64, 224, 208, 0.6);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.2);
}

.social-btn span:first-child {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.social-btn span:last-child {
    flex: 1;
    text-align: left;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Mobile Menu Styles */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    z-index: 99;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

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

.mobile-nav a {
    display: block;
    padding: 15px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    transition: background 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(138, 43, 226, 0.1);
}

    .mobile-nav .connect-wallet-btn,
.mobile-nav .register-btn,
.mobile-nav .wallet-address-btn {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
    display: flex;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 10px;
    min-height: 48px; /* Better touch target for mobile */
    box-sizing: border-box;
}

.mobile-nav .register-btn {
    margin-top: 10px;
}

.mobile-nav .wallet-address-btn {
    margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-buttons {
        display: none;
    }

    .header-buttons .connect-wallet-btn,
    .header-buttons .register-btn,
    .header-buttons .wallet-address-btn {
        display: none;
    }

    .main-heading {
        font-size: 42px;
        line-height: 1.2;
    }

    .description {
        font-size: 16px;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 16px;
    }

    .info-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .info-badge-text {
        font-size: 12px;
    }

    main {
        padding: 40px 15px 80px;
    }

    .hero-section {
        padding: 20px 0;
    }

    .section-heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .roi-section,
    .how-it-works-section,
    .deposits-section,
    .benefits-section,
    .trusted-section,
    .invest-now-section,
    .journey-section {
        padding: 50px 20px;
    }

    footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .journey-heading {
        font-size: 32px;
    }

    .journey-description {
        font-size: 16px;
    }

    .invest-now-btn {
        padding: 16px 40px;
        font-size: 18px;
    }

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

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

    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .investment-table-container,
    .deposits-container {
        padding: 20px;
        overflow-x: auto;
    }

    .investment-table {
        min-width: 600px;
    }

    .active-users-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    .count-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 32px;
    }

    .description {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 14px 25px;
        min-height: 44px; /* Better touch target */
    }

    .connect-wallet-btn,
    .register-btn,
    .wallet-address-btn {
        min-height: 44px;
        font-size: 14px;
        padding: 12px 20px;
    }

    .journey-heading {
        font-size: 28px;
    }

    .journey-description {
        font-size: 14px;
    }

    .section-heading {
        font-size: 24px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .main-heading {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .description {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .roi-section,
    .how-it-works-section,
    .deposits-section,
    .benefits-section,
    .trusted-section,
    .invest-now-section,
    .journey-section {
        padding: 40px 15px;
    }

    .investment-table-container,
    .deposits-container {
        padding: 15px;
        margin: 0 -15px;
    }

    .step-card,
    .benefit-card {
        padding: 30px 20px;
    }

    .step-icon,
    .benefit-icon {
        font-size: 40px;
    }

    .step-title,
    .benefit-title {
        font-size: 18px;
    }
}

