html {
    scroll-behavior: smooth;
}

:root {
    --primary: #6930c3;
    --secondary: #80ffdb;
    --dark: #1a075a;
    --darker: #0e0438;
    --light: #f5f5f5;
    --accent: #64dfdf;
    --gradient: linear-gradient(135deg, var(--primary), var(--darker));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(128, 255, 219, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(26, 7, 90, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover {
    text-shadow: var(--glow);
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: rotate(15deg);
}



.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary);
}

.btn {
    background: var(--gradient);
    color: white;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(105, 48, 195, 0.4);
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(105, 48, 195, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--dark);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('https://images.unsplash.com/photo-1639762681057-408e52192e55?q=80&w=2232&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.15;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(128, 255, 219, 0.6);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    max-width: 600px;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(128, 255, 219, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.token-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.token-info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 180px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 255, 219, 0.1);
    transition: all 0.3s ease;
}

.token-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(128, 255, 219, 0.3);
}

.token-info-item h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.token-info-item p {
    font-size: 1.3rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    position: relative;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.distribution {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.distribution-chart {
    flex: 1;
    min-width: 300px;
    height: 350px;
    max-width: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        var(--secondary) 0% 33.33%,
        var(--primary) 33.33% 53.33%,
        var(--accent) 53.33% 100%
    );
    box-shadow: 0 0 40px rgba(128, 255, 219, 0.4);
    position: relative;
    z-index: 1;
}

.pie-center {
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    z-index: 2;
    border: 2px solid rgba(128, 255, 219, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) inset;
}

.distribution-items {
    flex: 1;
    min-width: 300px;
}

.distribution-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(128, 255, 219, 0.1);
}

.distribution-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(128, 255, 219, 0.3);
}

.distribution-color {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px currentColor;
}

.distribution-color.liquidity {
    background: var(--secondary);
}

.distribution-color.reserved {
    background: var(--primary);
}

.distribution-color.future {
    background: var(--accent);
}

.roadmap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3rem;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    z-index: 0;
}

.roadmap-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.roadmap-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-item:nth-child(odd) {
    justify-content: flex-start;
}

.roadmap-item:nth-child(even) {
    justify-content: flex-end;
}

.roadmap-content {
    width: 48%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(128, 255, 219, 0.1);
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(128, 255, 219, 0.3);
}

.roadmap-date {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 1.1rem;
}

.roadmap-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--gradient);
    border-radius: 50%;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 15px var(--primary);
}

.roadmap-item:nth-child(odd) .roadmap-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid rgba(255, 255, 255, 0.05);
}

.roadmap-item:nth-child(even) .roadmap-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid rgba(255, 255, 255, 0.05);
}

.cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(105, 48, 195, 0.8), rgba(26, 7, 90, 0.9));
    padding: 6rem 2rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(128, 255, 219, 0.2);
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(128, 255, 219, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(128, 255, 219, 0.3);
}

.cta p {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(128, 255, 219, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--light);
    font-weight: 600;
    border: 1px solid rgba(128, 255, 219, 0.2);
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(128, 255, 219, 0.3);
    border-color: transparent;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}


/* Responsive styles */
@media (max-width: 992px) {
    .hero {
        height: 130vh;
        padding-top: 150px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 130vh;
        padding-top: 150px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .roadmap::before {
        left: 30px;
    }
    
    .roadmap-item {
        justify-content: flex-start;
    }
    
    .roadmap-content {
        width: 80%;
        margin-left: 60px;
    }
    
    .roadmap-item::after {
        left: 30px;
    }
    
    .roadmap-item:nth-child(odd) .roadmap-content::before,
    .roadmap-item:nth-child(even) .roadmap-content::before {
        left: -15px;
        right: auto;
        border-right: 15px solid rgba(255, 255, 255, 0.05);
        border-left: none;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 140vh;
        padding-top: 150px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .token-info-item {
        width: 100%;
    }
    
    .roadmap-content {
        width: 90%;
        margin-left: 45px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .distribution-chart {
        height: 280px;
    }
    
    .distribution-item {
        padding: 1rem;
        gap: 1rem;
    }
}

@media (max-width: 400px) {
    .hero {
        height: 140vh;
        padding-top: 150px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
}