/* Base Styles */
:root {
    --primary-color: #0099ff;
    --secondary-color: #00ccff;
    --dark-blue: #003366;
    --light-blue: #66ccff;
    --accent-color: #00ffcc;
    --text-color: #ffffff;
    --background-color: #001a33;
    --gradient-primary: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
    --gradient-secondary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --glow-color: rgba(0, 204, 255, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 153, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 204, 255, 0.1) 0%, transparent 40%);
    background-attachment: fixed;
}

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

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

section {
    padding: 100px 0;
    position: relative;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 26, 51, 0.9), rgba(0, 26, 51, 0.7), transparent);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-primary);
    box-shadow: 0 0 15px var(--glow-color);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.brand p {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 5px 0;
}

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: var(--text-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Space Mono', monospace;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.5);
}

.cta-button::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: all 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--glow-color);
}

.cta-button:hover::before {
    left: 100%;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 204, 255, 0.6), rgba(0, 153, 255, 0.2));
    box-shadow: 0 0 10px var(--glow-color);
    opacity: 0.6;
    animation: float 8s infinite ease-in-out;
}

.b1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.b2 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.b3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.b4 {
    width: 50px;
    height: 50px;
    top: 70%;
    right: 25%;
    animation-delay: 3s;
}

.b5 {
    width: 30px;
    height: 30px;
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.wave-divider svg {
    width: 100%;
    height: auto;
}

/* About Section */
.about {
    background-color: rgba(0, 26, 51, 0.7);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.3);
}

/* Tokenomics Section */
.tokenomics {
    background-color: rgba(0, 26, 51, 0.8);
    position: relative;
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.token-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.token-card {
    background: rgba(0, 51, 102, 0.5);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 250px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 153, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px var(--glow-color);
}

.token-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.token-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.token-allocation {
    text-align: center;
}

.token-allocation h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.allocation-chart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.chart-segment {
    background: rgba(0, 51, 102, 0.5);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    border: 1px solid rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
}

.chart-segment::before {
    content: attr(data-percent);
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gradient-primary);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 153, 255, 0.5);
}

.chart-segment:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--glow-color);
}

.s1 { border-top: 5px solid #00ccff; }
.s2 { border-top: 5px solid #33ffcc; }
.s3 { border-top: 5px solid #ff66cc; }
.s4 { border-top: 5px solid #ffcc33; }

/* Roadmap Section */
.roadmap {
    background-color: rgba(0, 26, 51, 0.7);
    position: relative;
}

.roadmap-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 22%;
    z-index: 2;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin: 15px auto;
    box-shadow: 0 0 10px var(--glow-color);
    position: relative;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    opacity: 0;
    animation: pulse 2s infinite;
}

.timeline-item.active .timeline-dot::before {
    opacity: 1;
}

.timeline-content {
    background: rgba(0, 51, 102, 0.5);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 153, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px var(--glow-color);
}

.timeline-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.timeline-content ul {
    text-align: left;
    padding-left: 20px;
}

.timeline-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.timeline-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Join Us Section */
.join-us {
    background-color: rgba(0, 26, 51, 0.8);
    text-align: center;
    position: relative;
}

.join-us p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(0, 51, 102, 0.5);
    border-radius: 15px;
    width: 150px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 153, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px var(--glow-color);
}

/* Footer */
footer {
    background-color: rgba(0, 15, 30, 0.9);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.floating-animation {
    animation: float 6s infinite ease-in-out;
}

.delay-1 {
    animation-delay: 1s;
}

.delay-2 {
    animation-delay: 2s;
}

.delay-3 {
    animation-delay: 3s;
}

.pulse-animation {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px var(--glow-color);
    }
    50% {
        box-shadow: 0 0 20px var(--glow-color), 0 0 30px var(--glow-color);
    }
    100% {
        box-shadow: 0 0 10px var(--glow-color);
    }
}

.glowing-text {
    text-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .roadmap-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .roadmap-timeline::before {
        top: 0;
        left: 25px;
        width: 3px;
        height: 100%;
    }
    
    .timeline-item {
        width: 100%;
        margin-bottom: 50px;
        display: flex;
        align-items: flex-start;
    }
    
    .timeline-dot {
        margin: 0;
        margin-right: 20px;
    }
    
    .timeline-content {
        text-align: left;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 26, 51, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.5s ease;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .token-info {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 80%;
    }
}