/* Whitepaper Specific Styles */

/* Whitepaper Hero */
.whitepaper-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #E8F4FF 0%, #FFFFFF 100%);
    position: relative;
    z-index: 1;
}

.whitepaper-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.whitepaper-header h1 {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'Comic Neue', cursive;
}

.whitepaper-header .version {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.whitepaper-header .subtitle {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Table of Contents */
.toc-section {
    padding: 60px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.toc-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #E8F4FF 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--secondary-blue);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.15);
}

.toc-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-family: 'Comic Neue', cursive;
}

.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toc-list li {
    padding: 0;
}

.toc-list a {
    display: block;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.toc-list a:hover {
    background: var(--light-blue);
    border-color: var(--primary-blue);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.2);
}

/* Whitepaper Content */
.whitepaper-content {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.section-block {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 40px;
    background: linear-gradient(135deg, #F8FCFF 0%, #FFFFFF 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 153, 255, 0.1);
}

.section-block h2 {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-family: 'Comic Neue', cursive;
    border-bottom: 3px solid var(--secondary-blue);
    padding-bottom: 15px;
}

.section-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 35px 0 20px;
}

.section-block h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 25px 0 15px;
}

.section-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-block ul {
    margin: 20px 0;
    padding-left: 30px;
}

.section-block li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #E8F4FF 0%, #FFFFFF 100%);
    border-left: 4px solid var(--primary-blue);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.1);
}

.info-box h4 {
    color: var(--primary-blue);
    margin-top: 0;
}

.charity-box {
    border-left-color: #00BFFF;
    background: linear-gradient(135deg, #E0F7FF 0%, #FFFFFF 100%);
}

.charity-box h4 {
    color: #00BFFF;
}

/* Value Cards Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.value-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-card h4 {
    color: var(--text-dark);
    margin: 10px 0;
    font-size: 18px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Stat Boxes */
.stat-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    background: var(--gradient-ocean);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.3);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: white;
}

.stat-box p {
    font-size: 14px;
    margin: 0;
    color: white;
    opacity: 0.9;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.audience-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.2);
}

.audience-card h4 {
    color: var(--primary-blue);
    margin-top: 0;
}

.audience-card p {
    font-size: 14px;
    margin: 0;
}

/* Tokenomics Breakdown */
.tokenomics-breakdown {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.1);
}

.token-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-blue);
}

.token-row:last-child {
    border-bottom: none;
}

.token-label {
    display: flex;
    align-items: center;
    gap: 15px;
}

.token-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.token-value {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 18px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    background: var(--gradient-ocean);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.3);
}

/* Tech Box */
.tech-box {
    background: linear-gradient(135deg, #F0F8FF 0%, #FFFFFF 100%);
    padding: 25px 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid var(--light-blue);
}

.tech-box h4 {
    color: var(--primary-blue);
    margin-top: 0;
}

/* Tech Roadmap */
.roadmap-tech {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tech-phase {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--light-blue);
}

.tech-phase h4 {
    color: var(--primary-blue);
    margin-top: 0;
}

.tech-phase ul {
    padding-left: 20px;
    margin: 0;
}

/* Community Pillars */
.community-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.pillar-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.15);
}

.pillar-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.pillar-card h4 {
    color: var(--text-dark);
    margin: 15px 0;
}

.pillar-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Programs List */
.programs-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.program-item {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.1);
    transition: all 0.3s ease;
}

.program-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.2);
}

.program-item h4 {
    margin-top: 0;
    color: var(--primary-blue);
}

.program-item p {
    margin: 0;
}

/* Detailed Roadmap */
.roadmap-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.phase-block {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--light-blue);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.1);
}

.phase-block.completed {
    border-color: #00D9FF;
    background: linear-gradient(135deg, #E8F9FF 0%, #FFFFFF 100%);
}

.phase-block.active {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, #E8F4FF 0%, #FFFFFF 100%);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.phase-header h3 {
    margin: 0;
    font-size: 26px;
    color: var(--text-dark);
}

.status-badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.status-badge.completed {
    background: #00D9FF;
}

.status-badge.active {
    background: var(--primary-blue);
    animation: pulse 2s ease infinite;
}

.status-badge.upcoming {
    background: var(--text-light);
}

.phase-block ul {
    padding-left: 25px;
    margin: 0;
}

.phase-block li {
    margin-bottom: 10px;
}

/* Vision Box */
.vision-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 35px 40px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.3);
}

.vision-box h4 {
    color: white;
    margin-top: 0;
    font-size: 24px;
}

.vision-box ul {
    margin: 0;
}

.vision-box li {
    color: white;
    margin-bottom: 15px;
}

/* Conclusion Section */
.conclusion {
    background: linear-gradient(135deg, #E8F4FF 0%, #F8FCFF 100%);
    border: 3px solid var(--secondary-blue);
}

.call-to-action-box {
    background: var(--gradient-ocean);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.3);
}

.call-to-action-box h3 {
    color: white;
    margin-top: 0;
    font-size: 32px;
}

.call-to-action-box p {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
}

/* Disclaimer */
.disclaimer-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 40px;
    background: #FFF9E6;
    border: 2px solid #FFD700;
    border-radius: 15px;
    margin-bottom: 80px;
}

.disclaimer-section h3 {
    color: #FF8C00;
    margin-top: 0;
    font-size: 24px;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Responsive Design for Whitepaper */
@media (max-width: 968px) {
    .whitepaper-header h1 {
        font-size: 42px;
    }

    .section-block {
        padding: 30px 25px;
    }

    .section-block h2 {
        font-size: 32px;
    }

    .section-block h3 {
        font-size: 24px;
    }

    .values-grid,
    .audience-grid,
    .community-pillars {
        grid-template-columns: 1fr;
    }

    .stat-boxes {
        grid-template-columns: 1fr;
    }

    .roadmap-tech {
        grid-template-columns: 1fr;
    }

    .phase-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .whitepaper-header h1 {
        font-size: 32px;
    }

    .whitepaper-header .subtitle {
        font-size: 18px;
    }

    .toc-box {
        padding: 25px;
    }

    .toc-list a {
        font-size: 16px;
        padding: 12px 15px;
    }

    .section-block {
        padding: 20px;
    }

    .section-block h2 {
        font-size: 28px;
    }

    .section-block h3 {
        font-size: 20px;
    }

    .section-block p,
    .section-block li {
        font-size: 15px;
    }

    .info-box {
        padding: 20px;
    }

    .call-to-action-box {
        padding: 30px 20px;
    }

    .call-to-action-box h3 {
        font-size: 26px;
    }

    .disclaimer-section {
        padding: 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .tokenomics-breakdown {
        padding: 20px;
    }

    .token-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

