/* ===== WHITEPAPER STYLES ===== */

/* CSS Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #FFD23F;
    --dark-bg: #0A0E27;
    --darker-bg: #050814;
    --light-bg: #1a1f3a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8D1;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-2: linear-gradient(135deg, #F7931E 0%, #FFD23F 100%);
    --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* Navigation */
.wp-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
}

.btn-lg {
    padding: 14px 35px;
    font-size: 16px;
}

/* Hero Section */
.wp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-block;
    background: var(--card-bg);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-disclaimer {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.meta-item {
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.meta-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-down span {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.scroll-arrow {
    font-size: 24px;
    color: var(--primary-color);
}

/* Table of Contents */
.toc-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

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

.toc-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for TOC cards */
.toc-card:nth-child(1) { animation-delay: 0.1s; }
.toc-card:nth-child(2) { animation-delay: 0.2s; }
.toc-card:nth-child(3) { animation-delay: 0.3s; }
.toc-card:nth-child(4) { animation-delay: 0.4s; }
.toc-card:nth-child(5) { animation-delay: 0.5s; }
.toc-card:nth-child(6) { animation-delay: 0.6s; }
.toc-card:nth-child(7) { animation-delay: 0.7s; }
.toc-card:nth-child(8) { animation-delay: 0.8s; }
.toc-card:nth-child(9) { animation-delay: 0.9s; }
.toc-card:nth-child(10) { animation-delay: 1s; }

.toc-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.toc-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.toc-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.toc-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Notice Section */
.notice-section {
    padding: 40px 0;
    background: var(--darker-bg);
}

.notice-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.notice-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.notice-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.notice-content p {
    color: var(--text-secondary);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    position: relative;
}

.dark-section {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-number {
    display: inline-block;
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: -20px;
}

.content-block {
    margin-bottom: 60px;
}

.block-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.title-icon {
    font-size: 36px;
}

.block-content {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.lead-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-block .block-content {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-color: var(--primary-color);
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mv-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Components Grid */
.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.component-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.component-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.component-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.component-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.component-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Data Table */
.data-table {
    margin-top: 30px;
}

.data-table h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table th {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.data-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Key Features */
.key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.kf-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kf-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.kf-item h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.kf-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Supply Box */
.supply-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 15px;
}

.supply-number {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.supply-label {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.supply-text {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Note Text */
.note-text {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    font-size: 14px;
}

/* Distribution Grid */
.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.dist-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
}

.dist-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.dist-percent {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.dist-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.dist-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Summary Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.summary-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.summary-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.summary-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Utility List */
.utility-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.utility-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
}

.utility-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.utility-content h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.utility-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Model Features */
.model-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.model-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.model-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.model-item h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.model-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* APY Table */
.apy-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
}

.apy-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.apy-row:last-child {
    border-bottom: none;
}

.apy-header {
    background: rgba(255, 107, 53, 0.1);
    font-weight: 700;
    color: var(--primary-color);
}

.apy-row.recommended {
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid var(--secondary-color);
}

.apy-row.best {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--primary-color);
}

.apy-duration {
    font-weight: 600;
}

.apy-rate {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.apy-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Flow Steps */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.flow-step {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}

.flow-step h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.flow-step p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Benefits Box */
.benefits-box {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.benefits-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefits-box ul {
    list-style: none;
}

.benefits-box li {
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Lore Section */
.lore-section {
    margin: 40px 0;
}

.lore-chapter {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.chapter-number {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.lore-chapter h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.lore-chapter p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.lore-chapter ul {
    margin: 15px 0 15px 30px;
}

.lore-chapter li {
    margin: 8px 0;
}

.bark-types {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.bark-type {
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
}

.bark-type.common {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #B8B8D1;
}

.bark-type.rare {
    background: rgba(247, 147, 30, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.bark-type.legendary {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--primary-color);
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-top: 20px;
}

/* Rarity Grid */
.rarity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.rarity-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: var(--transition);
}

.rarity-card:hover {
    transform: translateY(-10px);
}

.rarity-card.legendary {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
}

.rarity-card.rare {
    border-color: var(--secondary-color);
    background: rgba(247, 147, 30, 0.05);
}

.rarity-card.common {
    border-color: rgba(255, 255, 255, 0.2);
}

.rarity-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.rarity-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.rarity-percent {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
}

.rarity-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* DAO Features */
.dao-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.dao-feature {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.dao-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.dao-feature h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.dao-feature p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Protection List */
.protection-list {
    list-style: none;
}

.protection-list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Roadmap */
.roadmap-container {
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-phase {
    margin-bottom: 40px;
}

.phase-header {
    background: var(--gradient-1);
    padding: 25px 35px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.phase-number {
    background: white;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.phase-header h3 {
    font-size: 28px;
    color: white;
}

.phase-content {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 35px;
}

.phase-content ul {
    list-style: none;
}

.phase-content li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Eligibility Grid */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.eligibility-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.eligibility-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.eligibility-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.eligibility-card h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.eligibility-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Growth Strategies */
.growth-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.strategy-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.strategy-item h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.strategy-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Legal Box */
.legal-box {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.legal-content h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.disclaimer-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-section:last-child {
    border-bottom: none;
}

.disclaimer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.disclaimer-section ul {
    margin: 15px 0 15px 30px;
}

.disclaimer-section li {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.6;
}

.disclaimer-section.highlight {
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

/* Conclusion Section */
.conclusion-section {
    padding: 100px 0;
}

.conclusion-content {
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-block {
    margin-bottom: 60px;
}

.conclusion-block h3 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

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

.commitment-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.commitment-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.commitment-icon {
    font-size: 56px;
    margin-bottom: 15px;
}

.commitment-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.commitment-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.conclusion-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
}

.conclusion-cta h3 {
    font-size: 42px;
    margin-bottom: 15px;
}

.conclusion-cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.final-message {
    text-align: center;
    margin-top: 60px;
}

.bark-quote {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.signature {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Footer */
.wp-footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 10px 0;
}

.disclaimer-footer {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 900px;
    margin: 15px auto;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Print Styles */
@media print {
    .wp-nav,
    .scroll-down,
    .back-to-top,
    .nav-actions,
    .cta-buttons {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .content-section {
        page-break-inside: avoid;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 36px;
    }

    .block-title {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-disclaimer {
        font-size: 12px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 20px;
    }

    .section-number {
        font-size: 48px;
    }

    .section-title {
        font-size: 32px;
    }

    .block-title {
        font-size: 24px;
        flex-direction: column;
        text-align: center;
    }

    .block-content {
        padding: 25px;
    }

    .toc-grid {
        grid-template-columns: 1fr;
    }

    .components-grid,
    .distribution-grid,
    .model-features,
    .dao-features,
    .eligibility-grid,
    .growth-strategies,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .apy-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .apy-rate {
        font-size: 20px;
    }

    .flow-steps {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid,
    .key-features,
    .rarity-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .legal-box {
        padding: 30px 20px;
    }

    .conclusion-cta {
        padding: 40px 25px;
    }

    .conclusion-cta h3 {
        font-size: 32px;
    }

    .bark-quote {
        font-size: 24px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .block-title {
        font-size: 20px;
    }

    .supply-number {
        font-size: 42px;
    }

    .dist-percent {
        font-size: 36px;
    }

    .toc-number {
        font-size: 28px;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
    }

    .phase-header h3 {
        font-size: 22px;
    }

    .conclusion-cta h3 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Smooth Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, transparent 0%, rgba(255, 107, 53, 0.1) 50%, transparent 100%);
    background-size: 1000px 100%;
}

/* Timeline Box */
.timeline-box {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.timeline-box h4 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.timeline-schedule {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.timeline-step:hover {
    transform: translateX(10px);
    background: rgba(255, 107, 53, 0.1);
}

.step-badge {
    background: var(--gradient-1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
}

.timeline-step p {
    margin: 0;
    font-size: 15px;
}

/* Disclaimer Intro */
.disclaimer-intro {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid var(--primary-color);
}

.disclaimer-intro p {
    margin-bottom: 15px;
}

.disclaimer-intro p:last-child {
    margin-bottom: 0;
}

/* Audit Section */
.audit-section {
    margin: 60px 0;
}

.audit-badge {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.audit-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.audit-badge h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.audit-badge p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.audit-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.audit-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* Phase Headers with Different Colors */
.phase-header.phase-1 {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.phase-header.phase-2 {
    background: linear-gradient(135deg, #F7931E 0%, #FFD23F 100%);
}

.phase-header.phase-3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.phase-header.phase-4 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.phase-header.phase-5 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.phase-header.phase-6 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.phase-content h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Enhanced Responsive for New Elements */
@media (max-width: 768px) {
    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

    .step-badge {
        min-width: auto;
    }

    .audit-badge {
        padding: 35px 25px;
    }

    .audit-icon {
        font-size: 56px;
    }

    .audit-badge h3 {
        font-size: 28px;
    }

    .audit-features {
        flex-direction: column;
        align-items: center;
    }

    .audit-feature {
        width: 100%;
        max-width: 300px;
    }
}
