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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #0c2849 0%, #0a1f3d 50%, #050d1a 100%);
    min-height: 100vh;
    color: #e6e6fa;
    overflow-x: hidden;
    position: relative;
}

/* Starfield Canvas */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.left-section {
    flex: 1;
    min-width: 300px;
    animation: slideInLeft 0.8s ease-out;
}

.right-section {
    flex: 1;
    min-width: 300px;
    animation: slideInRight 0.8s ease-out;
}

.presale-card {
    background: rgba(12, 40, 73, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(74, 158, 255, 0.3);
    box-shadow: 0 10px 30px rgba(30, 74, 122, 0.5);
}

.logo-section {
    display: flex;
    margin: 5px 0 15px 0;
}

.presale-title {
    font-size: 24px;
    color: #a490c2;
    font-weight: 600;
    margin: 2px 0 0 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: rgba(43, 30, 62, 0.5);
    padding: 20px;
    border-radius: 15px;
    border-left: 2px solid #a490c2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(164, 144, 194, 0.5);
}

.stat-label {
    color: #a490c2;
    font-size: 14px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 20px;
    font-weight: bold;
    color: #e6e6fa;
}

.progress-section {
    margin-bottom: 25px;
}

.progress-bar {
    background: rgba(43, 30, 62, 0.5);
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, #a490c2, #4a4e8f);
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: width 2s ease;
    box-shadow: 0 0 10px rgba(164, 144, 194, 0.7);
}

.tier-info {
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(164, 144, 194, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(164, 144, 194, 0.3);
    color: #e6e6fa;
}

.buy-section {
    background: rgba(74, 78, 143, 0.4);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(164, 144, 194, 0.3);
}

.buy-title {
    color: #a490c2;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.input-group {
    margin-bottom: 15px;
}

.bnb-input {
    width: 100%;
    padding: 15px;
    background: rgba(43, 30, 62, 0.5);
    border: 1px solid rgba(164, 144, 194, 0.4);
    border-radius: 10px;
    color: #e6e6fa;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.bnb-input:focus {
    outline: none;
    border-color: #a490c2;
    box-shadow: 0 0 10px rgba(164, 144, 194, 0.4);
}

.conversion-info {
    color: #e6e6fa;
    font-size: 14px;
    margin-top: 10px;
}

.wallet-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #a490c2, #4a4e8f);
    border: none;
    border-radius: 10px;
    color: #e6e6fa;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(164, 144, 194, 0.4);
}

.wallet-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(164, 144, 194, 0.6);
}

.wallet-button:active {
    transform: translateY(0);
}

.mobile-notice {
    color: #e6e6fa;
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
}

/* Important Note Card */
.important-note-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(43, 30, 62, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(164, 144, 194, 0.3);
    border-left: 4px solid #a490c2;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    z-index: 1;
}

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

.important-note-title {
    color: #a490c2;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.important-note-text {
    color: #e6e6fa;
    margin-bottom: 16px;
    line-height: 1.7;
}

.add-token-button {
    padding: 16px 32px;
    background: linear-gradient(135deg, #a490c2, #4a4e8f);
    color: #e6e6fa;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(164, 144, 194, 0.4);
}

.add-token-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(164, 144, 194, 0.6);
}

.plus-icon {
    font-size: 1.5rem;
}

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

/* Partners Carousel Styles */
.partners-section {
    background: rgba(43, 30, 62, 0.3);
    padding: 77px 0;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.partners-title {
    text-align: center;
    font-size: 36px;
    color: #e6e6fa;
    margin-bottom: 40px;
    font-weight: 600;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(43, 30, 62, 1), transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(43, 30, 62, 1), transparent);
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 250px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Secure & Smart Investing Section */
.investing-section {
    background: linear-gradient(135deg, #315571 0%, #052341 100%);
    padding: 100px 20px;
    color: #e6e6fa;
    position: relative;
    z-index: 1;
}

.investing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.investing-content {
    text-align: left;
}

.investing-subtitle {
    color: #a490c2;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.investing-title {
    font-size: 48px;
    font-weight: 800;
    color: #e6e6fa;
    margin-bottom: 30px;
    line-height: 1.2;
}

.investing-description {
    font-size: 18px;
    line-height: 1.8;
    color: #e6e6fa;
    margin-bottom: 40px;
    opacity: 0.9;
}

.explore-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #a490c2, #4a4e8f);
    color: #e6e6fa;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(164, 144, 194, 0.4);
    font-size: 16px;
}

.explore-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(164, 144, 194, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    background: rgba(43, 30, 62, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(164, 144, 194, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #a490c2;
    box-shadow: 0 20px 60px rgba(74, 78, 143, 0.5);
}

.feature-ico {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-size: 24px;
    color: #e6e6fa;
    font-weight: 700;
    line-height: 1.4;
}

/* Early Access Section */
.early-access-section {
    background: rgba(43, 30, 62, 0.3);
    padding: 100px 20px;
    color: #e6e6fa;
    position: relative;
    z-index: 1;
}

.early-access-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.early-access-content {
    text-align: left;
}

.early-access-subtitle {
    color: #a490c2;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.early-access-title {
    font-size: 48px;
    font-weight: 800;
    color: #e6e6fa;
    margin-bottom: 30px;
    line-height: 1.2;
}

.early-access-description {
    font-size: 18px;
    line-height: 1.8;
    color: #e6e6fa;
    margin-bottom: 40px;
    opacity: 0.9;
}

.early-join-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #a490c2, #4a4e8f);
    color: #e6e6fa;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(164, 144, 194, 0.4);
    font-size: 16px;
}

.early-join-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(164, 144, 194, 0.6);
}

.ico-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 60px;
    padding: 40px;
    background: rgba(43, 30, 62, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(164, 144, 194, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #e6e6fa 0%, #a490c2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-description {
    color: #a490c2;
    font-size: 16px;
    font-weight: 500;
}

/* Illustration Container */
.illustration-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration {
    width: 100%;
    max-width: 500px;
}

/* Airdrop Section */
.airdrop-section {
    background: linear-gradient(135deg, #315571 0%, #052341 100%);
    padding: 100px 20px;
    color: #e6e6fa;
    position: relative;
    z-index: 1;
}

.airdrop-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.airdrop-content {
    text-align: left;
}

.airdrop-subtitle {
    color: #a490c2;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.airdrop-title {
    font-size: 48px;
    font-weight: 800;
    color: #e6e6fa;
    margin-bottom: 30px;
    line-height: 1.2;
}

.airdrop-description {
    font-size: 18px;
    line-height: 1.8;
    color: #e6e6fa;
    margin-bottom: 40px;
    opacity: 0.9;
}

.claim-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #a490c2, #4a4e8f);
    color: #e6e6fa;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(164, 144, 194, 0.4);
    font-size: 16px;
}

.claim-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(164, 144, 194, 0.6);
}

.airdrop-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.coin-rain {
    position: relative;
    width: 300px;
    height: 400px;
}

.coin {
    position: absolute;
    font-size: 40px;
    animation: fall 3s linear infinite;
}

.coin:nth-child(1) { left: 10%; animation-delay: 0s; }
.coin:nth-child(2) { left: 30%; animation-delay: 0.5s; }
.coin:nth-child(3) { left: 50%; animation-delay: 1s; }
.coin:nth-child(4) { left: 70%; animation-delay: 1.5s; }
.coin:nth-child(5) { left: 90%; animation-delay: 2s; }

@keyframes fall {
    0% {
        top: -50px;
        opacity: 0;
        transform: rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: rotate(360deg);
    }
}

/* Progress Section */
.progress-section-full {
    background: rgba(43, 30, 62, 0.3);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.progress-content {
    max-width: 1000px;
    margin: 0 auto;
}

.progress-title {
    font-size: 48px;
    font-weight: 800;
    color: #e6e6fa;
    margin-bottom: 40px;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.stat-info {
    font-size: 24px;
    color: #a490c2;
}

.progress-bar-bg {
    background: rgba(43, 30, 62, 0.5);
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #a490c2, #4a4e8f);
    height: 100%;
    width: 0%;
    transition: width 2s ease;
    box-shadow: 0 0 20px rgba(164, 144, 194, 0.7);
    position: relative;
}

.progress-percentage {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #e6e6fa;
    font-weight: 700;
    font-size: 18px;
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, #315571 0%, #052341 100%);
    padding: 100px 20px;
    color: #e6e6fa;
    position: relative;
    z-index: 1;
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-content {
    text-align: left;
}

.community-subtitle {
    color: #a490c2;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.community-title {
    font-size: 48px;
    font-weight: 800;
    color: #e6e6fa;
    margin-bottom: 30px;
    line-height: 1.2;
}

.community-description {
    font-size: 18px;
    line-height: 1.8;
    color: #e6e6fa;
    margin-bottom: 40px;
    opacity: 0.9;
}

.follow-section {
    background: rgba(43, 30, 62, 0.3);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(164, 144, 194, 0.2);
    margin-bottom: 30px;
}

.follow-title {
    color: #a490c2;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-icon {
    font-size: 24px;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(74, 78, 143, 0.3);
    border: 1px solid rgba(164, 144, 194, 0.3);
    border-radius: 10px;
    color: #e6e6fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(164, 144, 194, 0.3);
    border-color: #a490c2;
    transform: translateX(5px);
}

.social-icon {
    font-size: 20px;
    font-weight: bold;
}

.community-cta {
    color: #a490c2;
    font-size: 16px;
    font-style: italic;
}

.community-illustration {
    display: flex;
    justify-content: center;
    position: relative;
}

.social-bubbles {
    position: relative;
    width: 400px;
    height: 400px;
}

.social-bubble {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(164, 144, 194, 0.2);
    border: 2px solid #a490c2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.social-bubble:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.social-bubble svg {
    width: 40px;
    height: 40px;
    fill: #e6e6fa;
}

.social-bubble:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.social-bubble:nth-child(2) {
    top: 25%;
    right: 0;
    animation-delay: 0.5s;
}

.social-bubble:nth-child(3) {
    bottom: 25%;
    right: 10%;
    animation-delay: 1s;
}

.social-bubble:nth-child(4) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.social-bubble:nth-child(5) {
    top: 25%;
    left: 0;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.person-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
}

/* Title and Description Styles */
.main-title {
    font-size: 64px;
    font-weight: 800;
    color: #e6e6fa;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeIn 0.8s ease-out;
}

.description {
    font-size: 18px;
    line-height: 1.8;
    color: #e6e6fa;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #079bed, #0095c0);
    color: #e6e6fa;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(164, 144, 194, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(164, 144, 194, 0.6);
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.glow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a490c2, transparent);
    animation: glowMove 3s linear infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes glowMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

/* Roadmap Section */
.roadmap-section {
    background: linear-gradient(135deg, #315571 0%, #052341 100%);
    padding: 100px 20px;
    color: #e6e6fa;
    text-align: center;
    position: relative;
    z-index: 1;
}

.roadmap-title {
    font-size: 48px;
    font-weight: 800;
    color: #a490c2;
    margin-bottom: 60px;
}

.roadmap-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.roadmap-phase {
    flex: 1 1 300px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.roadmap-phase h3 {
    padding-bottom: 15px;
    color: #e6e6fa;
}

.roadmap-card {
    background: rgba(43, 30, 62, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(164, 144, 194, 0.3);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    border-color: #a490c2;
    box-shadow: 0 15px 40px rgba(74, 78, 143, 0.4);
}

.roadmap-card h4 {
    color: #a490c2;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

.roadmap-card ul {
    list-style: none;
    padding-left: 0;
}

.roadmap-card ul li {
    margin-bottom: 12px;
    font-size: 16px;
    padding-left: 28px;
    position: relative;
    color: #e6e6fa;
}

.roadmap-card ul li::before {
    content: "📌";
    position: absolute;
    left: 0;
    top: 0;
}

.roadmap-card.complete ul li {
    color: #e6e6fa;
}

.roadmap-card.complete ul li:nth-child(1)::before,
.roadmap-card.complete ul li:nth-child(2)::before,
.roadmap-card.complete ul li:nth-child(3)::before {
    content: "✅";
    color: #a490c2;
}

.roadmap-card.complete ul li:nth-child(4)::before {
    content: "🔄";
    color: #a490c2;
}

/* Animation Classes */
.animate-fade-up.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-fade-up.delay-1 {
    transition-delay: 0.2s;
}
.animate-fade-up.delay-2 {
    transition-delay: 0.4s;
}
.animate-fade-up.delay-3 {
    transition-delay: 0.6s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 48px;
    }
    
    .container {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .carousel-slide {
        width: 200px;
        padding: 0 20px;
    }

    .partner-logo {
        max-width: 140px;
    }

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

    .investing-title {
        font-size: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .early-access-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .early-access-title {
        font-size: 40px;
    }

    .ico-stats {
        justify-content: center;
        gap: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .illustration-container {
        order: -1;
    }

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

    .airdrop-title {
        font-size: 40px;
    }

    .airdrop-illustration {
        order: -1;
    }

    .coin {
        font-size: 30px;
    }

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

    .progress-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-info {
        font-size: 20px;
    }

    .progress-bar-bg {
        height: 30px;
    }

    .progress-percentage {
        font-size: 16px;
        right: 10px;
    }

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

    .community-title {
        font-size: 40px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-bubble {
        width: 80px;
        height: 80px;
    }

    .social-bubble svg {
        width: 30px;
        height: 30px;
    }

    .person-svg {
        width: 200px;
    }

    .community-illustration {
        order: -1;
        margin-bottom: 40px;
    }

    .roadmap-timeline {
        flex-direction: column;
        align-items: center;
    }

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