/* Global Styles */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #38b2ac;
    --text-color: #ffffff;
    --text-secondary: #e0e0e0;
    --background-dark: #0a0118;
    --background-card: rgba(255, 255, 255, 0.05);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, #38b2ac, #00d4ff);
    --gradient-purple: linear-gradient(135deg, #6a11cb, #9d4edd);
    --gradient-blue: linear-gradient(135deg, #2575fc, #38b2ac);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at top right, rgba(138, 75, 219, 0.15), transparent 70%),
                      radial-gradient(circle at bottom left, rgba(90, 155, 252, 0.15), transparent 70%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.6);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(30, 10, 60, 0.6);
    backdrop-filter: blur(10px);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 0.8rem;
}

.status-icons {
    display: flex;
    gap: 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.connect-btn {
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.5);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero-image {
    flex-shrink: 0;
    animation: float 6s ease-in-out infinite;
}

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

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text-1 {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text-2 {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    max-width: 500px;
    margin: 0 0 40px;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.primary-btn i {
    margin-left: 8px;
}

.stats-section {
    text-align: center;
    padding: 40px 0;
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* About Section */
.about {
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto 60px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.security-icon {
    background: linear-gradient(135deg, #6a11cb, #8e44ad);
}

.speed-icon {
    background: linear-gradient(135deg, #2575fc, #4facfe);
}

.community-icon {
    background: linear-gradient(135deg, #38b2ac, #00d4ff);
}

/* Projects Section */
.projects {
    text-align: center;
}

.projects > p {
    max-width: 700px;
    margin: 0 auto 60px;
}

.project-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.project-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-date {
    display: inline-block;
    background: rgba(106, 17, 203, 0.2);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    color: #bb86fc;
}

.project-progress {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #38b2ac;
}

.project-progress span {
    display: inline-flex;
    align-items: center;
}

.project-progress span::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #38b2ac;
    margin-right: 8px;
}

/* Roadmap Section */
.roadmap {
    text-align: center;
}

.roadmap > p {
    max-width: 700px;
    margin: 0 auto 60px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.timeline-icon {
    position: absolute;
    left: 42px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--background-dark);
    border: 2px solid;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item.completed .timeline-icon {
    border-color: #38b2ac;
    background-color: #38b2ac;
}

.timeline-item.in-progress .timeline-icon {
    border-color: #4facfe;
    background-color: #4facfe;
}

.timeline-item.planned .timeline-icon {
    border-color: rgba(255, 255, 255, 0.5);
}

.timeline-content {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.timeline-date {
    display: inline-block;
    background: rgba(106, 17, 203, 0.2);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: #bb86fc;
}

/* Community Section */
.community {
    text-align: center;
}

.community > p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.social-btn.twitter:hover {
    background: #1da1f2;
}

.social-btn.discord:hover {
    background: #7289da;
}

.social-btn.github:hover {
    background: #333;
}

.social-btn.telegram:hover {
    background: #0088cc;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.community-stat {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.community-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 255, 255, 0.2);
}

.community-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.community-stat h3 {
    margin-bottom: 10px;
}

.community-stat p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: rgba(10, 1, 24, 0.9);
    backdrop-filter: blur(10px);
    padding: 60px 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 350px;
}

.footer-brand h3 {
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.community-stat p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Whitepaper Section */
.whitepaper {
    text-align: center;
    padding: 100px 0;
}

.whitepaper p {
    max-width: 800px;
    margin: 0 auto 60px;
}

.whitepaper-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.whitepaper-info {
    text-align: left;
    flex: 1;
}

.whitepaper-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.whitepaper-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whitepaper-feature i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tokenomics {
    flex: 1;
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tokenomics h3 {
    margin-bottom: 30px;
    text-align: center;
}

.tokenomics-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tokenomics-legend {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-box {
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-column ul li a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .stats {
        gap: 30px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero,
    .whitepaper-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none; /* In a real project, would implement a mobile menu */
    }
    
    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex-basis: 40%;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero,
    .whitepaper-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        flex-basis: 100%;
    }
    
    .features, .project-cards, .community-stats {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}