/* ============================================
   FanBooya! Blockchain Page Styles
   ============================================ */

/* Blockchain Hero */
.blockchain-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 60px;
    gap: 60px;
    position: relative;
}

.blockchain-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.blockchain-hero .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Token Showcase */
.token-showcase {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-3d {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 60px rgba(249, 115, 22, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2),
        inset 0 5px 20px rgba(255, 255, 255, 0.2);
    animation: tokenFloat 4s ease-in-out infinite;
}

.token-face {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #fb923c, #f97316);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.token-symbol {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.token-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes tokenFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* What is FAN Section */
.what-is-fan {
    padding: 100px 5%;
}

.fan-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.fan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.fan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.fan-card.primary {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
    border-color: rgba(249, 115, 22, 0.3);
}

.fan-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.fan-card h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
}

.fan-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.fan-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.spec-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.spec-value {
    color: #f97316;
    font-weight: 600;
}

.earn-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.earn-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.earn-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
}

.burn-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

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

.burn-amount {
    display: block;
    color: #f97316;
    font-weight: 700;
    font-size: 1.1rem;
}

.burn-tier {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.burn-arrow {
    color: #f97316;
    font-size: 1.5rem;
}

/* Currency System Section */
.currency-system {
    padding: 100px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.currency-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.currency-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.currency-card:hover {
    transform: translateY(-5px);
}

.currency-card.boo {
    border-color: rgba(139, 92, 246, 0.3);
}

.currency-card.boo:hover {
    background: rgba(139, 92, 246, 0.1);
}

.currency-card.yah {
    border-color: rgba(34, 197, 94, 0.3);
}

.currency-card.yah:hover {
    background: rgba(34, 197, 94, 0.1);
}

.currency-card.fan {
    border-color: rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
}

.currency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.currency-symbol {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.currency-card.boo .currency-symbol {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.currency-card.yah .currency-symbol {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.currency-card.fan .currency-symbol {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.currency-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.currency-card.boo .currency-badge {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.currency-card.yah .currency-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.currency-card.fan .currency-badge {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
}

.currency-card h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
}

.currency-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.conversion-rate {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 15px;
}

.rate-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.rate-value {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.earn-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.earn-methods span {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.currency-arrow {
    width: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.currency-arrow svg {
    width: 100%;
}

/* XP System */
.xp-system {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.xp-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

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

.xp-info h3 {
    color: white;
    margin-bottom: 5px;
}

.xp-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.xp-milestones {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.milestone {
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
}

.milestone.featured {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.milestone-level {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.milestone-reward {
    display: block;
    color: #f97316;
    font-weight: 700;
    font-size: 1.1rem;
}

.milestone-note {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin-top: 5px;
}

/* Why Base Section */
.why-base {
    padding: 100px 5%;
}

.base-comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.comparison-card.base-card {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.15), rgba(0, 82, 255, 0.05));
    border-color: rgba(0, 82, 255, 0.3);
}

.comparison-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.base-logo svg {
    width: 40px;
    height: 40px;
}

.comparison-card h3 {
    color: white;
    font-size: 1.2rem;
}

.recommended-badge {
    padding: 5px 12px;
    background: linear-gradient(135deg, #0052ff, #0040cc);
    border-radius: 20px;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
}

.comparison-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 600;
    color: white;
}

.stat-value.highlight {
    color: #22c55e;
}

.stat-value.dim {
    color: rgba(255, 255, 255, 0.5);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
}

/* Real Example */
.real-example {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
}

.real-example h3 {
    color: white;
    text-align: center;
    margin-bottom: 25px;
}

.example-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.example-bad, .example-good {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
}

.example-bad {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.example-good {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.example-icon {
    font-size: 1.5rem;
}

.example-bad p, .example-good p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Base Benefits Grid */
.base-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 82, 255, 0.3);
    background: rgba(0, 82, 255, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* VIP Tiers Section */
.vip-tiers-section {
    padding: 100px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.tier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.featured {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
    border-color: rgba(249, 115, 22, 0.3);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.tier-header {
    text-align: center;
    margin-bottom: 20px;
}

.tier-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.tier-header h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.tier-cost {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.tier-rate {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
}

.rate-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #f97316;
}

.rate-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.tier-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.tier-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
}

.tier-burn {
    padding: 10px 15px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 10px;
    text-align: center;
}

.tier-burn .burn-icon {
    margin-right: 8px;
}

.tier-burn span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Dynamic Note */
.dynamic-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.note-icon {
    font-size: 2rem;
}

.note-content h4 {
    color: #4ade80;
    margin-bottom: 5px;
}

.note-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* How to Earn Section */
.how-to-earn {
    padding: 100px 5%;
}

.earn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.earn-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.earn-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
}

.earn-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.earn-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.earn-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.earn-reward {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.earn-reward span {
    padding: 5px 12px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fb923c;
}

.earn-reward .multiplier {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

/* Typical Earnings */
.typical-earnings {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.typical-earnings h3 {
    color: white;
    text-align: center;
    margin-bottom: 25px;
}

.earnings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.earning-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.earning-source {
    color: rgba(255, 255, 255, 0.7);
}

.earning-amount {
    color: #f97316;
    font-weight: 600;
}

.earning-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
    border-radius: 12px;
    margin-top: 10px;
}

.total-label {
    color: white;
    font-weight: 600;
}

.total-amount {
    color: #f97316;
    font-size: 1.3rem;
    font-weight: 800;
}

/* Security Section */
.security-section {
    padding: 100px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.security-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.security-card h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
}

.security-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Contract Info */
.contract-info {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.contract-info h3 {
    color: white;
    text-align: center;
    margin-bottom: 25px;
}

.contract-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contract-item {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
}

.contract-item .label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.contract-item .value {
    color: white;
    font-weight: 600;
}

/* Blockchain Roadmap */
.blockchain-roadmap {
    padding: 100px 5%;
}

.blockchain-roadmap .roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.blockchain-roadmap .roadmap-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.blockchain-roadmap .roadmap-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.blockchain-roadmap .roadmap-marker {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.blockchain-roadmap .roadmap-item.active .roadmap-marker {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.blockchain-roadmap .roadmap-marker span {
    font-weight: 700;
    color: white;
}

.blockchain-roadmap .roadmap-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
}

.blockchain-roadmap .roadmap-item.active .roadmap-content {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

.roadmap-phase {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 15px;
    font-size: 0.75rem;
    color: #fb923c;
    margin-bottom: 10px;
}

.roadmap-content h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.roadmap-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-content li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.roadmap-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f97316;
}

.roadmap-note {
    display: block;
    margin-top: 15px;
    padding: 10px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #fb923c;
}

/* Blockchain CTA */
.blockchain-cta {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
}

.blockchain-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.blockchain-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.blockchain-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

/* Active nav link */
.nav-link.active {
    color: #f97316;
}

/* Responsive */
@media (max-width: 768px) {
    .blockchain-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .blockchain-hero .hero-content {
        max-width: 100%;
    }

    .token-showcase {
        width: 200px;
        height: 200px;
    }

    .token-3d {
        width: 150px;
        height: 150px;
    }

    .token-face {
        width: 120px;
        height: 120px;
    }

    .token-symbol {
        font-size: 2rem;
    }

    .currency-arrow {
        transform: rotate(90deg);
        width: 30px;
    }

    .base-comparison {
        flex-direction: column;
    }

    .vs-divider {
        margin: 10px 0;
    }

    .contract-details {
        grid-template-columns: 1fr;
    }

    .dynamic-note {
        flex-direction: column;
        text-align: center;
    }

    .blockchain-cta h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   Light Mode Overrides for Blockchain Page
   ============================================ */

[data-theme="light"] .blockchain-page {
    background: var(--bg-primary);
}

[data-theme="light"] .blockchain-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

[data-theme="light"] .hero-title,
[data-theme="light"] .blockchain-hero h1 {
    color: var(--text-primary);
}

[data-theme="light"] .hero-subtitle {
    color: var(--text-secondary);
}

[data-theme="light"] .token-3d {
    box-shadow:
        0 0 60px rgba(249, 115, 22, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Light mode cards */
[data-theme="light"] .fan-card,
[data-theme="light"] .currency-card,
[data-theme="light"] .comparison-card,
[data-theme="light"] .benefit-card,
[data-theme="light"] .tier-card,
[data-theme="light"] .earn-card,
[data-theme="light"] .security-card {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .fan-card h3,
[data-theme="light"] .currency-card h3,
[data-theme="light"] .tier-card h3,
[data-theme="light"] .earn-card h4,
[data-theme="light"] .security-card h4,
[data-theme="light"] .benefit-card h4 {
    color: var(--text-primary);
}

[data-theme="light"] .fan-card p,
[data-theme="light"] .currency-card p,
[data-theme="light"] .tier-card p,
[data-theme="light"] .earn-card p,
[data-theme="light"] .security-card p,
[data-theme="light"] .benefit-card p {
    color: var(--text-secondary);
}

/* Light mode sections */
[data-theme="light"] .section-title {
    color: var(--text-primary);
}

[data-theme="light"] .section-subtitle {
    color: var(--text-secondary);
}

[data-theme="light"] .currency-system,
[data-theme="light"] .vip-tiers-section,
[data-theme="light"] .security-section {
    background: var(--bg-secondary);
}

/* Light mode specs and details */
[data-theme="light"] .spec,
[data-theme="light"] .conversion-rate,
[data-theme="light"] .tier-rate,
[data-theme="light"] .earning-item,
[data-theme="light"] .contract-item,
[data-theme="light"] .milestone {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .spec-label,
[data-theme="light"] .rate-label,
[data-theme="light"] .tier-cost,
[data-theme="light"] .earning-source,
[data-theme="light"] .milestone-level {
    color: var(--text-secondary);
}

[data-theme="light"] .tier-header h3,
[data-theme="light"] .total-label,
[data-theme="light"] .contract-item .value {
    color: var(--text-primary);
}

[data-theme="light"] .tier-features li,
[data-theme="light"] .earn-list li,
[data-theme="light"] .roadmap-content li {
    color: var(--text-secondary);
}

/* Light mode XP system */
[data-theme="light"] .xp-system {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .xp-info h3 {
    color: var(--text-primary);
}

[data-theme="light"] .xp-info p {
    color: var(--text-secondary);
}

/* Light mode comparison */
[data-theme="light"] .comparison-card.base-card {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.08), rgba(0, 82, 255, 0.02));
}

[data-theme="light"] .stat-value {
    color: var(--text-primary);
}

[data-theme="light"] .stat-value.highlight {
    color: #16a34a;
}

[data-theme="light"] .stat-value.dim {
    color: var(--text-muted);
}

/* Light mode real example */
[data-theme="light"] .real-example {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .real-example h3 {
    color: var(--text-primary);
}

[data-theme="light"] .example-bad p,
[data-theme="light"] .example-good p {
    color: var(--text-secondary);
}

/* Light mode roadmap */
[data-theme="light"] .roadmap-content {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .roadmap-content h3 {
    color: var(--text-primary);
}

[data-theme="light"] .roadmap-item.active .roadmap-content {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.03);
}

/* Light mode typical earnings */
[data-theme="light"] .typical-earnings {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .typical-earnings h3 {
    color: var(--text-primary);
}

/* Light mode contract info */
[data-theme="light"] .contract-info {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .contract-info h3 {
    color: var(--text-primary);
}

[data-theme="light"] .contract-item .label {
    color: var(--text-muted);
}

/* Light mode dynamic note */
[data-theme="light"] .dynamic-note {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
}

[data-theme="light"] .note-content p {
    color: var(--text-secondary);
}

/* Light mode CTA section */
[data-theme="light"] .blockchain-cta {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.03));
}

[data-theme="light"] .blockchain-cta h2 {
    color: var(--text-primary);
}

[data-theme="light"] .blockchain-cta p {
    color: var(--text-secondary);
}

/* Light mode floating elements */
[data-theme="light"] .float-card {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .float-card span:not(.float-emoji) {
    color: var(--text-secondary);
}

/* Light mode team badges */
[data-theme="light"] .team-badge,
[data-theme="light"] .earn-methods span {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}
