/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #1a1a1a;
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    #z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav a:hover,
.nav a.active {
    background: rgba(255,255,255,0.1);
    color: #4F46E5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #4F46E5 100%);
    color: white;
    height: 800
	padding: 6rem 0 4rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Token Stats */
.token-stats {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4F46E5;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
}

/* Distribution Chart */
.distribution-chart {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chart-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s;
}

.legend-item:hover {
    background: #e9ecef;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    flex-shrink: 0;
}

.legend-label {
    flex: 1;
    font-weight: 600;
    color: #333;
}

.legend-value {
    font-weight: 700;
    color: #4F46E5;
    font-size: 1.1rem;
}

/* Allocation Details */
.allocation-details {
    padding: 5rem 0;
    background: #f8f9fa;
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.allocation-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.allocation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.allocation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #4F46E5;
}

.allocation-header h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.allocation-percent {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4F46E5;
    background: rgba(79, 70, 229, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.allocation-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 1.5rem;
}

.allocation-description p {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.allocation-description ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 1rem;
}

.allocation-description li {
    padding: 0.4rem 0;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}

.allocation-description li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4F46E5;
    font-weight: bold;
}

/* Governance Model */
.governance-model {
    padding: 5rem 0;
    background: white;
}

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

.governance-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.governance-card:hover {
    transform: translateY(-5px);
}

.governance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.governance-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.governance-card p {
    color: #666;
    line-height: 1.7;
}

.governance-process {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.governance-process h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #4F46E5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-arrow {
    font-size: 2rem;
    color: #4F46E5;
    font-weight: bold;
}

/* Release Timeline */
.release-timeline {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.timeline-visual::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4F46E5 0%, #10B981 100%);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 0;
    width: 28px;
    height: 28px;
    background: #4F46E5;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4F46E5;
    font-weight: 700;
}

.timeline-content p {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.8;
}

.timeline-content p strong {
    color: #1a1a1a;
}

/* Contract Info */
.contract-info {
    padding: 5rem 0;
    background: white;
}

.contract-box {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #4F46E5;
}

.contract-item {
    margin-bottom: 2rem;
}

.contract-item label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
}

.contract-address code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #4F46E5;
    word-break: break-all;
}

.copy-btn {
    background: #4F46E5;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #3730a3;
}

.features-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: #4F46E5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contract-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #4F46E5;
    color: white;
}

.btn-primary:hover {
    background: #3730a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: white;
    color: #4F46E5;
    border: 2px solid #4F46E5;
}

.btn-secondary:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4F46E5;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    color: #4F46E5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .chart-container {
        grid-template-columns: 1fr;
    }
    
    .allocation-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contract-address {
        flex-direction: column;
    }
    
    .contract-buttons {
        flex-direction: column;
    }
}