/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #cccccc;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #cccccc;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #999999;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background: #cccccc;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0a0a0a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: #000000;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
}

.tokenomics-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tokenomics-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tokenomics-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.tokenomics-description {
    color: #cccccc;
    font-size: 1rem;
}

/* Modern Tokenomics Section */
.tokenomics-cards-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.tokenomics-card-modern {
    background: #111;
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem 2rem;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 32px rgba(0,0,0,0.12);
    border: 1.5px solid #222;
    transition: transform 0.2s, box-shadow 0.2s;
}
.tokenomics-card-modern:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,255,255,0.08);
}
.tokenomics-icon-modern {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.2rem;
}
.tokenomics-label {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.tokenomics-value-modern {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}
.tokenomics-desc {
    color: #bbb;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 900px) {
    .tokenomics-cards-modern {
        flex-direction: column;
        align-items: center;
    }
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: #0a0a0a;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ffffff;
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.roadmap-item:nth-child(odd) {
    flex-direction: row;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-phase {
    background: #ffffff;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    min-width: 120px;
    text-align: center;
}

.roadmap-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 2rem;
    flex: 1;
}

.roadmap-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.roadmap-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/* Modern Roadmap Horizontal Timeline */
.roadmap-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    flex-wrap: wrap;
}
.roadmap-horizontal::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fff 0%, #222 100%);
    z-index: 0;
    border-radius: 2px;
}
.roadmap-phase-modern {
    background: #111;
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 200px;
    max-width: 240px;
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    border: 1.5px solid #222;
    margin-bottom: 2rem;
}
.roadmap-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    background: #000;
    border-radius: 50%;
    margin-bottom: 0.7rem;
    border: 2.5px solid #fff;
    box-shadow: 0 2px 8px rgba(255,255,255,0.05);
    transition: border-color 0.2s;
}
.roadmap-phase-modern:hover .roadmap-icon {
    border-color: #bbb;
}
.roadmap-icon i {
    font-size: 2rem;
}
.roadmap-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}
.roadmap-phase-modern ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.roadmap-phase-modern ul li {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}
.roadmap-phase-modern ul li::before {
    content: '\2022';
    color: #fff;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 0;
}
@media (max-width: 1100px) {
    .roadmap-horizontal {
        flex-direction: column;
        align-items: center;
    }
    .roadmap-horizontal::before {
        display: none;
    }
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: #000000;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.partner-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Chart Section */
.chart {
    padding: 100px 0;
    background: #0a0a0a;
}

.chart-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.chart-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
}

.chart-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-btn.active,
.chart-btn:hover {
    background: #ffffff;
    color: #000000;
}

.chart-placeholder {
    text-align: center;
}

.chart-mock {
    margin-bottom: 2rem;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.price-change {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.price-change.positive {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.chart-graph {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.chart-note {
    color: #999999;
    font-style: italic;
}

/* Exchanges Section */
.exchanges {
    padding: 100px 0;
    background: #000000;
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.exchange-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.exchange-card:hover {
    transform: translateY(-10px);
}

.exchange-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.exchange-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.exchange-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }

    .roadmap-phase {
        position: absolute;
        left: 0;
        min-width: 40px;
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .roadmap-content {
        margin: 1rem 0 0 0;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .chart-header {
        flex-direction: column;
        gap: 1rem;
    }

    .price-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .tokenomics-grid,
    .partners-grid,
    .exchanges-grid {
        grid-template-columns: 1fr;
    }
} 