/* Whitepaper Specific Styles */

/* Hero Section */
.whitepaper-hero {
    background: linear-gradient(135deg, 
        hsl(217, 91%, 95%) 0%, 
        hsl(189, 94%, 95%) 50%, 
        hsl(244, 83%, 95%) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px 0;
}

.whitepaper-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(79, 70, 229, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: hsl(217, 91%, 50%);
    margin-bottom: 2rem;
    font-weight: 300;
}

.whitepaper-meta {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.meta-item {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.meta-label {
    display: block;
    font-size: 0.9rem;
    color: hsl(217, 91%, 40%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(217, 91%, 30%);
    margin-top: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Table of Contents */
.table-contents {
    padding: 5rem 0;
    background: linear-gradient(45deg, #f8fafc, #f1f5f9);
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.toc-column {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.toc-item {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.toc-item:hover {
    transform: translateX(10px);
}

.toc-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: hsl(217, 91%, 30%);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.toc-item a:hover {
    background: linear-gradient(135deg, 
        hsla(217, 91%, 60%, 0.1), 
        hsla(189, 94%, 43%, 0.1));
    border-color: hsl(217, 91%, 60%);
    transform: scale(1.02);
}

.toc-number {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: hsl(217, 91%, 60%);
    min-width: 40px;
}

.toc-title {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Whitepaper Sections */
.whitepaper-section {
    padding: 5rem 0;
    position: relative;
}

.whitepaper-section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-number {
    display: inline-block;
    background: linear-gradient(135deg, 
        hsl(217, 91%, 60%), 
        hsl(189, 94%, 43%));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Summary Section */
.summary-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.summary-content .lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(217, 91%, 30%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.key-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.metric-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    background: linear-gradient(135deg, 
        hsl(217, 91%, 60%), 
        hsl(189, 94%, 43%));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
}

.metric-info h4 {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(217, 91%, 30%);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.metric-info p {
    color: hsl(217, 91%, 50%);
    font-weight: 500;
}

/* Ecosystem Diagram */
.summary-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecosystem-diagram {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 2rem auto;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        hsl(217, 91%, 60%), 
        hsl(189, 94%, 43%));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.diagram-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid hsl(217, 91%, 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: hsl(217, 91%, 50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.node-1 { top: 10px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.node-2 { top: 30px; right: 30px; animation-delay: 0.3s; }
.node-3 { top: 50%; right: 10px; transform: translateY(-50%); animation-delay: 0.6s; }
.node-4 { bottom: 30px; right: 30px; animation-delay: 0.9s; }
.node-5 { bottom: 10px; left: 50%; transform: translateX(-50%); animation-delay: 1.2s; }
.node-6 { bottom: 30px; left: 30px; animation-delay: 1.5s; }
.node-7 { top: 50%; left: 10px; transform: translateY(-50%); animation-delay: 1.8s; }
.node-8 { top: 30px; left: 30px; animation-delay: 2.1s; }

/* Barriers Grid */
.barriers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.barrier-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.barrier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.barrier-card i {
    font-size: 3rem;
    color: hsl(244, 83%, 58%);
    margin-bottom: 1rem;
}

.barrier-card h4 {
    color: hsl(217, 91%, 30%);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Problem Analysis */
.problem-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.problem-item {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid hsl(244, 83%, 58%);
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    background: linear-gradient(135deg, 
        hsl(244, 83%, 58%), 
        hsl(239, 84%, 67%));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-content h4 {
    color: hsl(217, 91%, 30%);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Solution Section */
.solution-section {
    background: linear-gradient(135deg, 
        hsl(217, 91%, 98%) 0%, 
        hsl(189, 94%, 98%) 50%, 
        hsl(244, 83%, 98%) 100%);
}

.solution-features {
    margin-top: 3rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.feature-row:nth-child(even) {
    grid-template-columns: 1fr 100px;
}

.feature-row:nth-child(even) .feature-visual {
    order: 2;
}

.feature-row:nth-child(even) .feature-content {
    order: 1;
    text-align: right;
}

.feature-visual {
    background: linear-gradient(135deg, 
        hsl(217, 91%, 60%), 
        hsl(189, 94%, 43%));
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.feature-content h4 {
    color: hsl(217, 91%, 30%);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    color: hsl(217, 91%, 50%);
}

.feature-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(189, 94%, 43%);
    font-weight: bold;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whitepaper-hero {
        padding: 100px 0 60px 0;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .whitepaper-meta {
        gap: 1rem;
    }
    
    .meta-item {
        padding: 0.8rem 1.5rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ecosystem-diagram {
        width: 250px;
        height: 250px;
    }
    
    .feature-row,
    .feature-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .feature-row:nth-child(even) .feature-visual,
    .feature-row:nth-child(even) .feature-content {
        order: unset;
    }
    
    .feature-visual {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .problem-item {
        flex-direction: column;
        text-align: center;
    }
    
    .problem-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .whitepaper-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .metric-card,
    .barrier-card {
        padding: 1.5rem 1rem;
    }
    
    .toc-item a {
        padding: 0.8rem;
    }
    
    .ecosystem-diagram {
        width: 200px;
        height: 200px;
    }
    
    .diagram-center {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
    }
    
    .diagram-node {
        width: 45px;
        height: 45px;
        font-size: 0.7rem;
    }
}

/* Additional Whitepaper Styles */

/* Architecture Section */
.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.arch-component {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.arch-component::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, 
        hsl(217, 91%, 60%), 
        hsl(189, 94%, 43%));
}

.arch-component:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.component-icon {
    background: linear-gradient(135deg, 
        hsl(217, 91%, 60%), 
        hsl(189, 94%, 43%));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.arch-component h4 {
    color: hsl(217, 91%, 30%);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.component-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    background: hsl(217, 91%, 95%);
    color: hsl(217, 91%, 50%);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Ecosystem Apps */
.ecosystem-apps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.app-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.app-icon {
    background: linear-gradient(135deg, 
        hsl(244, 83%, 58%), 
        hsl(239, 84%, 67%));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
}

.app-card h4 {
    color: hsl(217, 91%, 30%);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.app-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.app-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: hsl(217, 91%, 50%);
    font-size: 0.9rem;
}

.app-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: hsl(244, 83%, 58%);
    font-weight: bold;
}

/* Tokenomics Section */
.tokenomics-content {
    max-width: 1000px;
    margin: 0 auto;
}

.token-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: hsl(217, 91%, 50%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(217, 91%, 30%);
    font-family: 'Orbitron', monospace;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.distribution-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.distribution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dist-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.dist-percentage {
    font-size: 2.5rem;
    font-weight: 900;
    color: hsl(217, 91%, 30%);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.dist-amount {
    font-size: 1.1rem;
    color: hsl(217, 91%, 50%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.distribution-card h4 {
    color: hsl(217, 91%, 30%);
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid hsl(189, 94%, 43%);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-item h4 {
    color: hsl(217, 91%, 30%);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Roadmap Timeline */
.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        hsl(217, 91%, 60%), 
        hsl(189, 94%, 43%));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 4px solid hsl(217, 91%, 60%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item.completed .timeline-marker {
    background: hsl(189, 94%, 43%);
    border-color: hsl(189, 94%, 43%);
}

.timeline-item.active .timeline-marker {
    background: hsl(244, 83%, 58%);
    border-color: hsl(244, 83%, 58%);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    color: hsl(217, 91%, 30%);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.timeline-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: hsl(217, 91%, 50%);
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(189, 94%, 43%);
    font-weight: bold;
}

.timeline-item:not(.completed) li::before {
    content: '○';
    color: hsl(217, 91%, 60%);
}

/* Future Timeline Items */
.timeline-item.future .timeline-marker {
    background: linear-gradient(135deg, 
        hsl(244, 83%, 58%), 
        hsl(239, 84%, 67%));
    border-color: hsl(244, 83%, 58%);
    animation: futureGlow 3s ease-in-out infinite;
}

.timeline-item.future .timeline-content {
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.05), 
        rgba(139, 92, 246, 0.05));
    border: 2px solid hsl(244, 83%, 90%);
}

.timeline-item.future li::before {
    content: '🚀';
    color: hsl(244, 83%, 58%);
}

@keyframes futureGlow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(147, 51, 234, 0.6), 
                    0 0 30px rgba(147, 51, 234, 0.3);
    }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    background: linear-gradient(135deg, 
        hsl(217, 91%, 60%), 
        hsl(189, 94%, 43%));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.team-member h4 {
    color: hsl(217, 91%, 30%);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: hsl(217, 91%, 50%);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Governance Section */
.governance-section {
    margin-top: 4rem;
}

.governance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gov-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.gov-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gov-feature .feature-icon {
    background: linear-gradient(135deg, 
        hsl(244, 83%, 58%), 
        hsl(239, 84%, 67%));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
}

.gov-feature h4 {
    color: hsl(217, 91%, 30%);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, 
        hsl(0, 0%, 98%) 0%, 
        hsl(0, 0%, 95%) 100%);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    color: hsl(0, 65%, 51%);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.disclaimer-text {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid hsl(0, 65%, 90%);
    text-align: left;
}

.disclaimer-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: hsl(0, 0%, 20%);
}

.disclaimer-notice {
    background: hsl(0, 65%, 95%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(0, 65%, 51%);
    font-weight: 600;
    color: hsl(0, 65%, 30%);
}

/* Enhanced Footer Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.footer-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(217, 91%, 60%);
    font-family: 'Orbitron', monospace;
}

.stat-label {
    font-size: 0.8rem;
    color: hsl(217, 91%, 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .architecture-grid,
    .ecosystem-apps {
        grid-template-columns: 1fr;
    }
    
    .token-stats {
        grid-template-columns: 1fr;
    }
    
    .distribution-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .governance-features {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 8px;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .arch-component,
    .app-card,
    .distribution-card,
    .team-member,
    .timeline-content {
        padding: 2rem 1.5rem;
    }
    
    .component-icon,
    .member-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .app-icon,
    .gov-feature .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .dist-percentage {
        font-size: 2rem;
    }
    
    .disclaimer-text {
        padding: 2rem 1.5rem;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
