/* ARVADEX Whitepaper Styles */

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --bg-dark: #0b0f1a;
    --bg-darker: #060911;
    --text-primary: #ffffff;
    --text-secondary: #9fb1c6;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0b0f1a 0%, #1a1f35 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navigation */
.whitepaper-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-title {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-counter {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Book Container */
.book-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px);
    padding: 100px 20px 120px;
}

#flipbook {
    width: 90%;
    max-width: 1400px;
    height: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px var(--shadow-color);
}

/* Page Styles */
.page {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.02) 2px,
            rgba(0, 0, 0, 0.02) 4px
        );
    pointer-events: none;
}

.page-content {
    padding: 60px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    color: #1a1f35;
}

/* Cover Page */
.cover-page {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-page .page-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.cover-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

.cover-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cover-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cover-tagline {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 3rem;
}

.cover-decoration {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.deco-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

.deco-circle:nth-child(2) {
    animation-delay: 0.3s;
}

.deco-circle:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

.cover-version {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 2rem;
}

/* Back Cover */
.back-cover {
    background: linear-gradient(135deg, #1a1f35 0%, #0b0f1a 100%);
}

.back-cover .page-content {
    color: white;
}

.back-cover-logo {
    text-align: center;
    margin-top: 3rem;
}

.back-cover-logo img {
    width: 150px;
    opacity: 0.7;
}

/* Typography */
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.page-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1f35;
    margin: 2rem 0 1rem;
}

.page-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 1.5rem 0 0.75rem;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a5568;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Table of Contents */
.toc-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toc-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.toc-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.toc-number {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 50px;
}

.toc-text {
    flex: 1;
    font-weight: 500;
    color: #2d3748;
}

.toc-page {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 40px;
    text-align: right;
}

/* Lists */
.styled-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.styled-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
    color: #4a5568;
}

.styled-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a5568;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Boxes and Cards */
.content-box {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.challenge-box {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-box {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.disclaimer-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--danger-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.cta-box h4 {
    color: white;
    margin-top: 0;
}

.cta-box .styled-list li {
    color: white;
}

.cta-box .styled-list li::before {
    color: white;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-card h4 {
    font-size: 1.3rem;
    margin: 0 0 0.75rem 0;
}

.value-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* Feature Detailed */
.feature-detailed {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-header h3 {
    margin: 0;
}

/* Vision/Mission Sections */
.vision-section, .mission-section {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-icon {
    font-size: 2.5rem;
}

.vision-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2d3748;
    font-weight: 500;
}

/* Protection Layers */
.protection-layer {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Utility Sections */
.utility-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Discount Table */
.discount-table {
    margin: 1.5rem 0;
}

.discount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.discount-row:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.discount-row.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.discount-row.highlight .tier,
.discount-row.highlight .discount {
    color: white;
}

.tier {
    font-weight: 600;
    color: #2d3748;
}

.discount {
    font-weight: 700;
    color: var(--primary-color);
}

/* Tokenomics */
.tokenomics-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.token-info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.token-info-card h4 {
    margin: 0 0 1rem 0;
    color: #4a5568;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.token-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Distribution List */
.distribution-list {
    margin: 2rem 0;
}

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

.dist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.dist-name {
    font-weight: 600;
    color: #2d3748;
}

.dist-percent {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.dist-bar {
    height: 30px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.dist-fill {
    height: 100%;
    border-radius: 15px;
    transition: width 1s ease;
}

.dist-desc {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* Vesting Table */
.vesting-table {
    margin: 2rem 0;
}

.vesting-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.vesting-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    border-bottom: none;
}

.vesting-row:not(.header):hover {
    background: rgba(99, 102, 241, 0.05);
}

/* Presale Info */
.presale-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.presale-stage {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.presale-stage h4 {
    margin: 0 0 1.5rem 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.stage-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-row span:first-child {
    color: #4a5568;
}

.detail-row span:last-child {
    font-weight: 600;
    color: #2d3748;
}

/* Staking Tiers */
.staking-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tier-badge {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.tier-amount {
    text-align: center;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.tier-apr {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tier-benefits {
    list-style: none;
    padding: 0;
}

.tier-benefits li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a5568;
    font-size: 0.9rem;
}

.tier-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.tier-card.bronze { border-top: 4px solid #cd7f32; }
.tier-card.silver { border-top: 4px solid #c0c0c0; }
.tier-card.gold { border-top: 4px solid #ffd700; }
.tier-card.diamond { border-top: 4px solid #b9f2ff; }

/* Mechanics Box */
.mechanics-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Badge System */
.badge-category {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-category h4 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.badge-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.badge-item {
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 6px;
    color: #4a5568;
}

.badge-item strong {
    color: var(--primary-color);
}

/* Tech Stack */
.tech-stack {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-stack h4 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

/* Roadmap Timeline */
.roadmap-timeline {
    margin: 2rem 0;
}

.roadmap-phase {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.phase-quarter {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.phase-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

.phase-items {
    list-style: none;
    padding: 0;
}

.phase-items li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #4a5568;
}

.phase-items li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-role {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
}

/* Advisor List */
.advisor-list {
    margin: 2rem 0;
}

.advisor-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.advisor-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.advisor-item p {
    margin: 0.5rem 0 0 0;
}

/* Legal Sections */
.legal-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.legal-section h4 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

/* Success Factors */
.success-factor {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.success-factor h4 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

/* Final Message */
.final-message {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
}

.final-message em {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3748;
}

/* Contact Sections */
.contact-section {
    margin: 2rem 0;
}

.contact-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-item {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.link-item strong {
    color: var(--primary-color);
}

.link-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-item a:hover {
    color: var(--primary-color);
}

/* Footer Sections */
.disclaimer-footer {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--danger-color);
    border-radius: 10px;
}

.disclaimer-footer p {
    color: white;
    margin: 0;
}

.copyright-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright-footer p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0;
}

/* Book Controls */
.book-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 1000;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.control-btn:active {
    transform: translateY(0);
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 1200px) {
    #flipbook {
        width: 95%;
        height: 700px;
    }
    
    .page-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .whitepaper-nav {
        padding: 0 1rem;
    }
    
    .nav-title {
        font-size: 1rem;
    }
    
    #flipbook {
        width: 100%;
        height: 600px;
    }
    
    .page-content {
        padding: 30px;
        font-size: 0.9rem;
    }
    
    .cover-title {
        font-size: 3rem;
    }
    
    .cover-subtitle {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .book-controls {
        bottom: 20px;
    }
    
    .control-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stats-grid,
    .values-grid,
    .staking-tiers,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .vesting-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .whitepaper-nav,
    .book-controls {
        display: none;
    }
    
    .page {
        page-break-after: always;
    }
}

/* Scrollbar Styles */
.page-content::-webkit-scrollbar {
    width: 8px;
}

.page-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.page-content::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 4px;
}

.page-content::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
}
