/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 25%, #2c5282 50%, #1a3a6b 75%, #0a1f44 100%);
    background-attachment: fixed;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(84, 249, 246, 0.3);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #54f9f6;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #54f9f6;
}

.cta-button {
    background-color: #54f9f6;
    color: #0a1f44;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #3dd6d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(84, 249, 246, 0.3);
    text-decoration: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-image-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(84, 249, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(84, 249, 246, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight-text {
    color: #54f9f6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(84, 249, 246, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-cta {
    background-color: #54f9f6;
    color: #0a1f44;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(84, 249, 246, 0.3);
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background-color: #3dd6d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(84, 249, 246, 0.4);
    text-decoration: none;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(84, 249, 246, 0.1);
}

.content-section:nth-child(even) {
    background: rgba(84, 249, 246, 0.05);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #54f9f6;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

/* Three Column Grid */
.three-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(84, 249, 246, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(84, 249, 246, 0.2);
    border-color: rgba(84, 249, 246, 0.4);
}

.content-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #54f9f6;
    margin-bottom: 1rem;
}

.content-card p {
    color: #FFFFFF;
    line-height: 1.6;
    opacity: 0.9;
}

.section-description {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description p {
    color: #FFFFFF;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    font-style: italic;
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.chart-container {
    text-align: center;
}

.chart-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #54f9f6;
    margin-bottom: 2rem;
}

.donut-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#54f9f6 0deg 360deg, #E5E5E5 360deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.chart-segment {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.chart-labels {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.label {
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.8;
}

.tokenomics-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #54f9f6;
    margin-bottom: 1.5rem;
}

.tokenomics-list {
    list-style: none;
}

.tokenomics-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(84, 249, 246, 0.2);
    color: #FFFFFF;
    opacity: 0.9;
}

.tokenomics-list li:last-child {
    border-bottom: none;
}

.tokenomics-list strong {
    color: #54f9f6;
    font-weight: 600;
}

/* Team Section */
.team-section {
    background: rgba(84, 249, 246, 0.08);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(84, 249, 246, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(84, 249, 246, 0.2);
    border-color: rgba(84, 249, 246, 0.4);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #54f9f6;
    color: #0a1f44;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(84, 249, 246, 0.3);
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #54f9f6;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.team-bio {
    color: #FFFFFF;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(84, 249, 246, 0.2) 0%, rgba(84, 249, 246, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(84, 249, 246, 0.3);
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #54f9f6;
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(84, 249, 246, 0.3);
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: #54f9f6;
    box-shadow: 0 0 0 2px rgba(84, 249, 246, 0.2);
}

.newsletter-button {
    background-color: #54f9f6;
    color: #0a1f44;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(84, 249, 246, 0.3);
}

.newsletter-button:hover {
    background-color: #3dd6d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(84, 249, 246, 0.4);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(84, 249, 246, 0.2);
    color: #FFFFFF;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #54f9f6;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #CCCCCC;
}

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

.footer-link {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #54f9f6;
}

.footer-bottom {
    border-top: 1px solid rgba(84, 249, 246, 0.2);
    padding-top: 2rem;
    text-align: center;
}

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

/* Floating particles background */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(84, 249, 246, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Main content z-index */
.main {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 31, 68, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(84, 249, 246, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .three-column-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .donut-chart {
        width: 150px;
        height: 150px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* Reduce particle count on mobile */
    #particles-container .particle {
        display: none;
    }

    #particles-container .particle:nth-child(-n+15) {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .newsletter-section h2 {
        font-size: 1.5rem;
    }
}