/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff4d8d;
    --secondary-color: #00d4ff;
    --accent-purple: #8b5cf6;
    --accent-blue: #6366f1;
    --bg-dark: #2d3561;
    --bg-darker: #1e2139;
    --bg-darkest: #151829;
    --bg-card: #353a5f;
    --text-primary: #ffffff;
    --text-secondary: #b8c4d9;
    --gradient-pink: linear-gradient(135deg, #ff4d8d 0%, #ff8fa3 100%);
    --gradient-blue: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-rainbow: linear-gradient(90deg, #ff4d8d, #a855f7, #6366f1, #00d4ff, #10b981, #fbbf24);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 33, 57, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.hightLine{
    color:#ff78cb;
}

.logo {
    height: 110px;
    width: auto;
    object-fit: contain;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 77, 141, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

#waveCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-pink);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 77, 141, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
    animation: mouse-scroll 2s infinite;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 2s infinite;
}

@keyframes mouse-scroll {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes mouse-wheel {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 25px;
        opacity: 0;
    }
}

/* Price Chart Section */
.price-chart-section {
    padding: 60px 0 80px;
    background: var(--bg-dark);
}

.price-chart-container {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.chart-header .chart-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.chart-controls {
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 25px;
}

.chart-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chart-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.chart-btn.active {
    background: var(--gradient-pink);
    color: white;
}

.chart-wrapper-line {
    position: relative;
    height: 400px;
    margin-top: 20px;
}

.chart-wrapper-line canvas {
    max-height: 400px;
}

/* Enterprise Section */
.enterprise {
    padding: 80px 0;
    background: var(--bg-darker);
}

.enterprise-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.enterprise-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.enterprise-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.text-link:hover {
    gap: 15px;
}

.text-link i {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.text-link:hover i {
    margin-left: 15px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 77, 141, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Token Sale Section */
.token-sale {
    background: var(--bg-darker);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.countdown-box {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 25px 30px;
    min-width: 100px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

/* Progress Bar */
.progress-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.progress-bar {
    height: 20px;
    background: var(--bg-darkest);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-rainbow);
    border-radius: 10px;
    width: 70%;
    transition: width 1s ease;
    animation: progress-animation 2s ease-in-out;
}

@keyframes progress-animation {
    from {
        width: 0;
    }
    to {
        width: 70%;
    }
}

/* Token Stats */
.token-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.token-action {
    text-align: center;
    margin-top: 50px;
}

.token-note {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Charts Section */
.charts-section {
    background: var(--bg-dark);
    padding: 100px 0;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.chart-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.chart-wrapper {
    max-width: 350px;
    margin: 0 auto 30px;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Mission Section */
.mission {
    background: var(--bg-darker);
    padding: 100px 0;
}

.mission-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-badge {
    display: inline-block;
    background: rgba(255, 77, 141, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.mission-badge span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.mission-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
}

.mission-text {
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

/* Partners */
.partners {
    margin-top: 80px;
}

.partners-title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
}

.partner-logo {
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo i {
    font-size: 3rem;
    color: var(--text-secondary);
}

/* Roadmap Section */
.roadmap {
    background: var(--bg-dark);
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-purple));
    transform: translateX(-50%);
}

.roadmap-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--bg-dark);
    z-index: 1;
}

.roadmap-item.active::before {
    width: 24px;
    height: 24px;
    background: var(--gradient-pink);
    box-shadow: 0 0 20px rgba(255, 77, 141, 0.6);
}

.roadmap-item:nth-child(odd) .roadmap-date {
    text-align: right;
}

.roadmap-item:nth-child(even) .roadmap-date {
    order: 2;
    text-align: left;
}

.roadmap-date {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 15px;
}

.roadmap-content {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.roadmap-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team {
    background: var(--bg-darker);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 141, 0.3);
}

.team-image {
    margin-bottom: 20px;
}

.team-img-placeholder {
    width: 100px;
    height: 100px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.team-img-placeholder i {
    font-size: 2.5rem;
    color: white;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 77, 141, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

/* Footer */
.footer {
    background: var(--bg-darkest);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 77, 141, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-darkest);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .charts-grid,
    .token-stats {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .roadmap-timeline::before {
        left: 0;
    }

    .roadmap-item {
        grid-template-columns: 1fr;
        padding-left: 40px;
    }

    .roadmap-item::before {
        left: 0;
    }

    .roadmap-item:nth-child(even) .roadmap-date {
        order: 0;
        text-align: left;
    }

    .roadmap-date {
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .countdown-container {
        gap: 8px;
    }

    .countdown-box {
        padding: 15px 20px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .hero-buttons,
    .enterprise-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .chart-controls {
        width: 100%;
        justify-content: space-between;
    }

    .chart-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .chart-wrapper-line {
        height: 300px;
    }

    .price-chart-container {
        padding: 25px 20px;
    }
}
