/* Whitepaper Specific Styles */
.whitepaper-body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Navigation */
.wp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    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;
    height: 70px;
}

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cta-link {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    padding: 10px 20px !important;
    border-radius: 25px;
    color: #ffffff !important;
    font-weight: 600;
}

.cta-link::after {
    display: none;
}

/* Hero Section */
.wp-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
}

.wp-hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.glitch-container {
    position: relative;
    margin-bottom: 30px;
}

.wp-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #4ecdc4, #ff6b6b);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

.wp-title-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: glitchEffect 8s infinite;
}

.wp-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.consciousness-wave {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #4ecdc4, transparent);
    animation: waveMotion 3s ease-in-out infinite;
}

/* Table of Contents */
.wp-toc {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.02);
}

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

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s ease;
}

.toc-item:hover::before {
    left: 100%;
}

.toc-item:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.toc-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
    min-width: 40px;
}

.toc-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Content Sections */
.wp-content {
    padding: 80px 0;
}

.wp-section {
    margin-bottom: 120px;
    scroll-margin-top: 100px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.section-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #4ecdc4;
    opacity: 0.7;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 400;
    color: #4ecdc4;
    margin: 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    margin-bottom: 30px;
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.5);
}

.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    position: relative;
}

.collective-icon {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
}

.consciousness-icon {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.evolution-icon {
    background: linear-gradient(45deg, #6c63ff, #9c88ff);
}

.vision-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid currentColor;
    border-radius: 50%;
    opacity: 0.3;
    animation: iconPulse 3s infinite;
}

.oracle-quote {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-left: 4px solid #4ecdc4;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.2rem;
    margin: 40px 0;
    position: relative;
}

.oracle-quote cite {
    display: block;
    text-align: right;
    margin-top: 20px;
    color: #4ecdc4;
    font-weight: 600;
}

/* Problem Section */
.problem-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problem-item {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), transparent);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.problem-item h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

/* Solution Section */
.solution-framework {
    margin-bottom: 60px;
}

.framework-layer {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
    position: relative;
}

.framework-layer h3 {
    color: #4ecdc4;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.solution-diagram {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1), transparent);
    border-radius: 20px;
    margin: 40px 0;
}

.diagram-center {
    position: absolute;
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: #000;
    padding: 30px;
    border-radius: 50%;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    z-index: 10;
}

.diagram-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.diagram-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    animation: nodeFloat 6s ease-in-out infinite;
}

.human-node {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ai-node {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.blockchain-node {
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

.consensus-node {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

/* Technology Section */
.tech-architecture {
    margin: 40px 0;
}

.tech-layer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.tech-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4ecdc4, #ff6b6b);
}

.blockchain-layer::before { background: #4ecdc4; }
.ai-layer::before { background: #ff6b6b; }
.interface-layer::before { background: #6c63ff; }

.tech-layer h3 {
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.tech-details p {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.tech-details strong {
    color: #4ecdc4;
}

/* Tokenomics Section */
.tokenomics-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0;
}

.token-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.token-stats {
    margin-top: 30px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.stat-value {
    color: #4ecdc4;
    font-weight: 600;
    font-family: 'Space Mono', monospace;
}

.distribution-chart {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chart-segment {
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.liquidity { background: linear-gradient(90deg, #4ecdc4, rgba(78, 205, 196, 0.3)); }
.community { background: linear-gradient(90deg, #ff6b6b, rgba(255, 107, 107, 0.3)); }
.development { background: linear-gradient(90deg, #6c63ff, rgba(108, 99, 255, 0.3)); }
.ecosystem { background: linear-gradient(90deg, #45b7d1, rgba(69, 183, 209, 0.3)); }

.segment-label {
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.utility-matrix {
    margin-top: 60px;
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.utility-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.utility-item:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.5);
}

.utility-item h4 {
    color: #4ecdc4;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

/* Governance Section */
.governance-structure,
.decision-matrix {
    margin: 40px 0;
}

.governance-tier,
.decision-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.governance-tier {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.decision-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.governance-tier > div,
.decision-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.governance-tier h3,
.decision-type h4 {
    color: #4ecdc4;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

/* Security Section */
.security-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.security-layer {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-layer h3 {
    color: #4ecdc4;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.security-layer ul {
    list-style: none;
    padding: 0;
}

.security-layer li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.security-layer li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4ecdc4;
}

.risk-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.risk-item {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid;
}

.low-risk {
    background: rgba(46, 204, 113, 0.1);
    border-color: #2ecc71;
}

.medium-risk {
    background: rgba(241, 196, 15, 0.1);
    border-color: #f1c40f;
}

.high-risk {
    background: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
}

.risk-item h4 {
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

/* Conclusion */
.wp-conclusion {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 80px 0;
}

.conclusion-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.conclusion-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.conclusion-cta {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.wp-cta-btn,
.wp-secondary-btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
}

.wp-cta-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
}

.wp-secondary-btn {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.wp-cta-btn:hover,
.wp-secondary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

/* Footer */
.wp-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #4ecdc4;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ecdc4;
}

.footer-disclaimer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glitchEffect {
    0%, 98%, 100% { 
        opacity: 0;
        transform: translateX(0);
    }
    99% { 
        opacity: 0.8;
        transform: translateX(2px);
        filter: hue-rotate(90deg);
    }
}

@keyframes waveMotion {
    0%, 100% { 
        transform: translateX(-50%) scaleX(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(-50%) scaleX(1.5);
        opacity: 1;
    }
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .nav-links {
        margin-top: 20px;
    }
    
    .wp-title {
        font-size: 2.5rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tokenomics-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .conclusion-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .diagram-nodes {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .diagram-node {
        position: static;
        animation: none;
    }
}