* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f3ba2f;
    --secondary-color: #fcd535;
    --dark-bg: #0a0e1a;
    --darker-bg: #050810;
    --card-bg: #161b2e;
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --gradient-1: linear-gradient(135deg, #f3ba2f 0%, #fcd535 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    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;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(243, 186, 47, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--gradient-1);
    color: #000;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 186, 47, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(243, 186, 47, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 0;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.btn-primary {
    background: var(--gradient-1);
    color: #000;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 18px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(243, 186, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(243, 186, 47, 0.3);
    padding: 14px 38px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 18px;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(243, 186, 47, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 80px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

/* About Section */
.about-section {
    background: var(--darker-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(243, 186, 47, 0.1);
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(243, 186, 47, 0.2);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Tokenomics Section */
.tokenomics-section {
    background: var(--dark-bg);
}

.tokenomics-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(243, 186, 47, 0.1);
}

.tokenomics-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.detail-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* CZ Section */
.cz-section {
    background: var(--darker-bg);
}

.cz-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cz-image {
    position: relative;
}

.cz-photo {
    width: 100%;
    border-radius: 30px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.binance-logo-overlay {
    position: absolute;
    top: -30px;
    right: -30px;
}

.floating-icon {
    width: 100px;
    height: 100px;
    animation: float 3s ease-in-out infinite;
}

.cz-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.cz-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    padding-left: 0;
}

/* Charity Section */
.charity-section {
    background: var(--dark-bg);
}

.charity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.charity-card-large {
    background: linear-gradient(135deg, #161b2e 0%, #0a0e1a 100%);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    border: 2px solid rgba(243, 186, 47, 0.2);
}

.charity-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 24px;
    border: 3px solid var(--primary-color);
}

.charity-card-large h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 900;
}

.charity-info h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.charity-tagline {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.charity-points {
    list-style: none;
}

.charity-points li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 18px;
    align-items: center;
}

.point-icon {
    font-size: 28px;
    flex-shrink: 0;
}

/* Roadmap Section */
.roadmap-section {
    background: var(--darker-bg);
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.roadmap-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
}

.roadmap-marker {
    position: absolute;
    left: 19px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 3px solid rgba(243, 186, 47, 0.3);
}

.roadmap-marker.completed {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(243, 186, 47, 0.5);
}

.roadmap-marker.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    animation: pulse 2s infinite;
}

.roadmap-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(243, 186, 47, 0.1);
}

.roadmap-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.roadmap-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.phase-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.phase-status.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.phase-status.active {
    background: rgba(243, 186, 47, 0.2);
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: var(--dark-bg);
}

.cta-box {
    background: var(--gradient-1);
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    color: #000;
}

.cta-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-box p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 18px 50px;
    font-size: 18px;
}

.btn-secondary.large {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.4);
    color: #000;
}

.btn-secondary.large:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(243, 186, 47, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 900;
}

.footer-logo-icon {
    width: 30px;
    height: 30px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.powered-by {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(243, 186, 47, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(243, 186, 47, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .cz-content,
    .charity-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

