* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
            min-height: 100vh;
            color: #ffffff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            min-height: 100vh;
        }

        .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-image: linear-gradient(to bottom right, #305470, #052341);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .logo-section {
            display: flex;
            margin: 5px 0 15px 0;
        }

        .presale-title {
            font-size: 24px;
            color: #00d4ff;
            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(10, 22, 40, 0.5);
            padding: 20px;
            border-radius: 15px;
            border-left: 2px solid #00cafe;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
        }

        .stat-label {
            color: #8a9bb3;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .stat-value {
            font-size: 20px;
            font-weight: bold;
            color: #ffffff;
        }

        .progress-section {
            margin-bottom: 25px;
        }

        .progress-bar {
            background: rgba(10, 22, 40, 0.5);
            height: 10px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            background: linear-gradient(90deg, #00d4ff, #0099ff);
            height: 100%;
            width: 0%;
            border-radius: 10px;
            transition: width 2s ease;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .tier-info {
            margin-bottom: 30px;
            padding: 15px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(0, 212, 255, 0.2);
            color: #dee4ec;
        }

        .buy-section {
            background: #174b69;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .buy-title {
            color: #00d4ff;
            font-size: 18px;
            margin-bottom: 20px;
            text-align: center;
        }

        .input-group {
            margin-bottom: 15px;
        }

        .bnb-input {
            width: 100%;
            padding: 15px;
            background: rgba(10, 22, 40, 0.5);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 10px;
            color: #ffffff;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .bnb-input:focus {
            outline: none;
            border-color: #00d4ff;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }

        .conversion-info {
            color: #c4d0e0;
            font-size: 14px;
            margin-top: 10px;
        }

        .wallet-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #00d4ff, #0099ff);
            border: none;
            border-radius: 10px;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
        }

        .wallet-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
        }

        .wallet-button:active {
            transform: translateY(0);
        }

        .mobile-notice {
            color: #fff;
            font-size: 12px;
            text-align: center;
            margin-top: 15px;
        }

        .important-note-card {
            width: 80%;
            padding: 30px;
            margin: 20px auto;
        }

        .important-note-title {
            font-size: 24px;
            color: #ffffff;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
        }

        .important-note-text {
            color: #fff;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .add-token-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 15px;
            background: rgba(10, 22, 40, 0.6);
            border: 2px solid #00d4ff;
            border-radius: 10px;
            color: #00d4ff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .add-token-button:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
        }

        .plus-icon {
            font-size: 20px;
            font-weight: bold;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Partners Carousel Styles */
        .partners-section {
            background: #0a0e27;
            padding: 77px 0;
            margin-top: 80px;
            overflow: hidden;
            position: relative;
        }

        .partners-title {
            text-align: center;
            font-size: 36px;
            color: #ffffff;
            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(10, 22, 40, 1), transparent);
        }

        .carousel-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(10, 22, 40, 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.1);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        /* Secure & Smart Investing Section */
        .investing-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
        }

        .investing-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .investing-content {
            animation: fadeInLeft 0.8s ease-out;
        }

        .investing-subtitle {
            color: #00d4ff;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .investing-title {
            font-size: 56px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .investing-description {
            font-size: 18px;
            line-height: 1.8;
            color: #b8c6db;
            margin-bottom: 40px;
        }

        .explore-button {
            display: inline-block;
            padding: 15px 40px;
            background: #ffffff;
            color: #0a1628;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        .explore-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
            background: #f0f0f0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            animation: fadeInRight 0.8s ease-out;
        }

        .feature-card {
            background: #0a0e27;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #6b46c1, #9333ea);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            position: relative;
            box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(135deg, #00d4ff, #0099ff);
            border-radius: 23px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover .feature-icon::after {
            opacity: 1;
        }

        .icon-shield::before {
            content: '🛡️';
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

        .icon-chart {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }

        .icon-wallet {
            background: linear-gradient(135deg, #6b46c1, #9333ea);
        }

        .icon-swap {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }

        .feature-title {
            font-size: 22px;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.3;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Early Access Section */
        .early-access-section {
            position: relative;
            padding: 100px 20px;
            background: #0a0e27;
            overflow: hidden;
        }

        .early-access-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .illustration-container {
            animation: float 4s ease-in-out infinite;
        }

        .ico-illustration {
            width: 100%;
            max-width: 500px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.2));
        }

        .early-access-content {
            animation: fadeInRight 0.8s ease-out;
        }

        .early-access-subtitle {
            color: #00d4ff;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .early-access-title {
            font-size: 56px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .early-access-description {
            font-size: 18px;
            line-height: 1.8;
            color: #b8c6db;
            margin-bottom: 50px;
        }

        .ico-stats {
            display: flex;
            gap: 80px;
        }

        .ico-stat {
            animation: countUp 2s ease-out;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #00d4ff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 16px;
            color: #8a9bb3;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Airdrop Section */
        .airdrop-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
            position: relative;
            overflow: hidden;
        }

        .airdrop-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .airdrop-content {
            animation: fadeInLeft 0.8s ease-out;
        }

        .airdrop-subtitle {
            color: #00d4ff;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .airdrop-title {
            font-size: 56px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .airdrop-description {
            font-size: 18px;
            line-height: 1.8;
            color: #b8c6db;
            margin-bottom: 40px;
        }

        .learn-more-button {
            display: inline-block;
            padding: 15px 40px;
            background: #ffffff;
            color: #0a1628;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        .learn-more-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
            background: #f0f0f0;
        }

        .airdrop-illustration {
            position: relative;
            animation: fadeInRight 0.8s ease-out;
        }

        .airdrop-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.2));
            animation: float 4s ease-in-out infinite;
        }

        .floating-coins {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .coin {
            position: absolute;
            font-size: 40px;
            animation: coinFloat 8s ease-in-out infinite;
            filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.5));
        }

        .coin-1 {
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .coin-2 {
            top: 30%;
            right: 30%;
            animation-delay: 2s;
        }

        .coin-3 {
            bottom: 30%;
            right: 15%;
            animation-delay: 4s;
        }

        .coin-4 {
            bottom: 10%;
            left: 10%;
            animation-delay: 6s;
        }

        @keyframes coinFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translateY(0) rotate(180deg) scale(1);
            }
            75% {
                transform: translateY(30px) rotate(270deg) scale(0.9);
            }
        }

        /* Airdrop Progress Section */
        .airdrop-progress-section {
            padding: 80px 20px;
            background: radial-gradient(ellipse at center, rgba(30, 58, 95, 0.5) 0%, #0a1628 100%);
            position: relative;
            overflow: hidden;
        }

        .airdrop-progress-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            animation: pulse 4s ease-in-out infinite;
        }

        .progress-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .progress-title {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            animation: fadeInDown 0.8s ease-out;
        }

        .progress-description {
            font-size: 18px;
            color: #b8c6db;
            margin-bottom: 20px;
            animation: fadeIn 0.8s ease-out 0.2s both;
        }

        .limited-spots {
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 50px;
            padding: 12px 24px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 40px;
            animation: fadeIn 0.8s ease-out 0.4s both;
            transition: all 0.3s ease;
        }

        .limited-spots:hover {
            background: rgba(245, 158, 11, 0.2);
            transform: scale(1.05);
        }

        .rocket-icon {
            font-size: 20px;
            animation: bounce 2s infinite;
        }

        .limited-spots {
            color: #fff;
            font-weight: 600;
        }

        .progress-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            animation: fadeIn 0.8s ease-out 0.6s both;
        }

        .stat-icon {
            font-size: 32px;
            animation: pulse 2s infinite;
        }

        .stat-info {
            font-size: 24px;
            color: #ffffff;
            font-weight: 600;
        }

        .claimed-amount {
            color: #00d4ff;
            font-weight: 700;
        }

        .remaining-spots {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 212, 255, 0.1);
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .users-icon {
            font-size: 20px;
        }

        .remaining-text {
            color: #00d4ff;
            font-weight: 600;
        }

        .progress-bar-container {
            position: relative;
            margin-bottom: 40px;
            animation: fadeIn 0.8s ease-out 0.8s both;
        }

        .progress-bar-bg {
            background: rgba(30, 58, 95, 0.5);
            height: 25px;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            border: 2px solid rgba(0, 212, 255, 0.2);
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #00d4ff 0%, #00cafe 50%, #121638 100%);
            border-radius: 25px;
            position: relative;
            transition: width 2s ease-out;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }

        .progress-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shimmer 2s linear infinite;
        }

        .progress-percentage {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            font-size: 12px;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .progress-learn-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #00d4ff, #0099ff);
            color: #ffffff;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
            animation: fadeIn 0.8s ease-out 1s both;
        }

        .progress-learn-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
            background: linear-gradient(135deg, #0099ff, #00d4ff);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        /* Community Section */
        .community-section {
            padding: 100px 20px;
            background: #121638;
            position: relative;
            overflow: hidden;
        }

        .community-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .community-illustration {
            position: relative;
            animation: fadeInLeft 0.8s ease-out;
        }

        .social-bubbles {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .social-bubble {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            animation: float 4s ease-in-out infinite;
        }

        .social-bubble:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .bubble-x {
            background: linear-gradient(135deg, #1a1a1a, #333);
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            color: #ffffff;
        }

        .bubble-telegram {
            background: linear-gradient(135deg, #0088cc, #00ace6);
            top: 10%;
            right: 20%;
            animation-delay: 1s;
            color: #ffffff;
        }

        .bubble-facebook {
            background: linear-gradient(135deg, #1877f2, #4b9ff7);
            bottom: 30%;
            left: 15%;
            animation-delay: 2s;
            color: #ffffff;
        }

        .person-illustration {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .person-svg {
            width: 250px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.2));
        }

        .community-content {
            animation: fadeInRight 0.8s ease-out;
        }

        .community-title {
            font-size: 56px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .community-description {
            font-size: 18px;
            line-height: 1.8;
            color: #b8c6db;
            margin-bottom: 40px;
        }

        .follow-section {
            margin-bottom: 40px;
        }

        .follow-title {
            font-size: 24px;
            color: #ffffff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .link-icon {
            font-size: 28px;
        }

        .social-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            background: rgba(30, 58, 95, 0.4);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 12px;
            color: #00d4ff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: #00d4ff;
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
        }

        .social-icon {
            font-size: 20px;
            font-weight: bold;
        }

        .community-cta {
            font-size: 18px;
            color: #8a9bb3;
            font-style: italic;
        }

        .main-title {
            font-size: 72px;
            font-weight: 800;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #00d4ff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .description {
            font-size: 18px;
            line-height: 1.6;
            color: #dee4ec;
            margin-bottom: 40px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: #ffffff;
            color: #0a1628;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .network-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            pointer-events: none;
            z-index: -1;
        }

        .glow-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00d4ff, 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%);
            }
        }

        @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-section {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
    padding: 100px 20px;
    color: #ffffff;
    text-align: center;
}

.roadmap-title {
    font-size: 48px;
    font-weight: 800;
    color: #00d4ff;
    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;
}

.roadmap-card {
    background: rgba(30, 58, 95, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.roadmap-card h4 {
    color: #00d4ff;
    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: #b8c6db;
}

.roadmap-card ul li::before {
    content: "📌";
    position: absolute;
    left: 0;
    top: 0;
}

.roadmap-card.complete ul li {
    color: #ffffff;
}

.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: #4ade80;
}

.roadmap-card.complete ul li:nth-child(4)::before {
    content: "🔄";
    color: #fbbf24;
}

/* 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;
}

@media (max-width: 768px) {
    .roadmap-timeline {
        flex-direction: column;
        align-items: center;
    }

    .roadmap-title {
        font-size: 36px;
    }
}