﻿:root {
    --primary-color: #00f2ff;
    --secondary-color: #bd00ff;
    --bg-color: #0a0e17;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.1);
    --text-color: #e0e0e0;
    --success-color: #21d29b;
    --warning-color: #ffc857;
    --danger-color: #ff6b6b;
}

body.theme-light {
    --primary-color: #ff8c00;
    --secondary-color: #0d75ff;
    --bg-color: #f7f2e8;
    --card-bg: rgba(0, 0, 0, 0.04);
    --card-hover: rgba(0, 0, 0, 0.08);
    --text-color: #0d1b2a;
    --success-color: #00d973;
    --warning-color: #ffb852;
    --danger-color: #c0392b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 10% 15%, rgba(0, 242, 255, 0.08), transparent 35%),
        radial-gradient(circle at 85% 10%, rgba(189, 0, 255, 0.06), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(255, 200, 87, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(10, 14, 23, 0.2), rgba(10, 14, 23, 0.85)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: auto, auto, auto, auto, 140px 140px, 140px 140px;
    background-position: 0 0, 0 0, 0 0, 0 0, -1px -1px, -1px -1px;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.theme-light {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 184, 82, 0.2), transparent 35%),
        radial-gradient(circle at 80% 12%, rgba(13, 117, 255, 0.18), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(0, 217, 115, 0.18), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 232, 0.95)),
        linear-gradient(90deg, rgba(13, 27, 42, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(13, 27, 42, 0.04) 1px, transparent 1px);
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Space Grotesk', sans-serif;
}

/* Üst menüyü toparladım */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(189, 0, 255, 0.2));
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background-clip: padding-box;
    outline: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

body.theme-light .navbar {
    background: rgba(247, 242, 232, 0.9);
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

body.theme-light .menu-toggle,
body.theme-light .close-menu {
    color: #0d1b2a;
}

body.theme-light .sidebar {
    background: rgba(255, 255, 255, 0.95);
    border-left: 1px solid rgba(13, 27, 42, 0.08);
}

body.theme-light .nav-links a {
    color: #0d1b2a;
}

body.theme-light .nav-links a:hover,
body.theme-light .nav-links a.active {
    color: var(--primary-color);
}

body.theme-light .dropdown span {
    color: #0d1b2a;
}

body.theme-light .submenu a {
    color: rgba(13, 27, 42, 0.7);
}

body.theme-light .theme-toggle {
    background: linear-gradient(135deg, #0d75ff, #00d973);
    color: #ff8c00;
    border: 1px solid rgba(13, 27, 42, 0.22);
    box-shadow: 0 8px 18px rgba(13, 27, 42, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
    text-shadow: 0 1px 2px rgba(13, 27, 42, 0.3);
}

/* Yan menüyü ayrı tuttum */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1001;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar.active {
    right: 0;
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.nav-links {
    list-style: none;
    margin-top: 3rem;
}

.nav-links li {
    margin-bottom: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
    display: block;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Açılır listeyi ayrıca ayarladım */
.dropdown span {
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.submenu {
    list-style: none;
    padding-left: 1.5rem;
    display: none;
}

.sidebar .submenu {
    display: block;
}

.submenu li {
    margin-bottom: 0.5rem;
}

.submenu a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Vitrin alanını öne çıkarıyorum */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Düğüm arka planına yedek animasyon bıraktım */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(0, 242, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(189, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 20px 20px;
    animation: moveNodes 20s linear infinite;
}

@keyframes moveNodes {
    0% {
        background-position: 0 0, 20px 20px;
    }

    100% {
        background-position: 40px 40px, 80px 80px;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.is-loaded .hero-content {
    animation: fadeUp 0.9s ease both;
}

body.is-loaded .section-head {
    animation: fadeUp 0.8s ease both;
}

body.is-loaded .feature-grid .card,
body.is-loaded .coin-grid .coin-card,
body.is-loaded .game-card,
body.is-loaded .tool-card,
body.is-loaded .academic-card {
    animation: fadeUp 0.8s ease both;
}

body.is-loaded .feature-grid .card:nth-child(2),
body.is-loaded .coin-grid .coin-card:nth-child(2),
body.is-loaded .game-card:nth-child(2),
body.is-loaded .tool-card:nth-child(2),
body.is-loaded .academic-card:nth-child(2) {
    animation-delay: 0.1s;
}

body.is-loaded .feature-grid .card:nth-child(3),
body.is-loaded .coin-grid .coin-card:nth-child(3),
body.is-loaded .game-card:nth-child(3),
body.is-loaded .tool-card:nth-child(3),
body.is-loaded .academic-card:nth-child(3) {
    animation-delay: 0.2s;
}

body.is-loaded .feature-grid .card:nth-child(4),
body.is-loaded .coin-grid .coin-card:nth-child(4),
body.is-loaded .game-card:nth-child(4),
body.is-loaded .tool-card:nth-child(4),
body.is-loaded .academic-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Bölümler için ortak ayar */
section {
    padding: 5rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    /* Hizayı sola çekiyorum */
}

.detail-section {
    text-align: left;
    /* Solda kalmasını istiyorum */
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    /* Başlıkları ortada bırakma ihtimali var */
}

.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.sub-lead {
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

body.theme-light .hero-tagline,
body.theme-light .hero-subtitle {
    color: rgba(13, 27, 42, 0.75);
}

body.theme-light .hero-content h1 {
    background: linear-gradient(90deg, #0d1b2a, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 16px rgba(255, 140, 0, 0.25);
}

body.theme-light .hero-bg::before {
    background-image:
        radial-gradient(circle, rgba(255, 184, 82, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(13, 117, 255, 0.15) 1px, transparent 1px);
}

body.theme-light .lead-text {
    color: rgba(13, 27, 42, 0.75);
}

body.theme-light .sub-lead {
    color: rgba(13, 27, 42, 0.65);
}

body.theme-light .eyebrow {
    color: rgba(13, 27, 42, 0.6);
}

/* Kartları ortak stile bağladım */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.coin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card,
.coin-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    text-align: left;
}

.card:hover,
.coin-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

body.theme-light .card,
body.theme-light .coin-card,
body.theme-light .game-card,
body.theme-light .tool-card,
body.theme-light .academic-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(13, 27, 42, 0.08);
    color: var(--text-color);
    box-shadow: 0 15px 30px rgba(13, 27, 42, 0.08);
}

body.theme-light .card:hover,
body.theme-light .coin-card:hover,
body.theme-light .game-card:hover,
body.theme-light .tool-card:hover,
body.theme-light .academic-card:hover {
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 18px 32px rgba(13, 27, 42, 0.12);
}

.media-embed {
    margin-top: 2rem;
    display: grid;
    gap: 1.25rem;
}

.media-embed__header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.media-embed__note {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.media-embed__audio,
.media-embed__video {
    width: 100%;
    display: block;
    border-radius: 12px;
    background: rgba(10, 14, 23, 0.6);
}

body.theme-light .media-embed__header p {
    color: rgba(13, 27, 42, 0.7);
}

body.theme-light .media-embed__note {
    color: rgba(13, 27, 42, 0.6);
}

body.theme-light .media-embed__audio,
body.theme-light .media-embed__video {
    background: rgba(255, 255, 255, 0.7);
}

.card h3,
.coin-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.coin-card {
    text-align: center;
    cursor: pointer;
    display: block;
    /* Bağlantı kartına minik dokunuş */
    text-decoration: none;
    color: inherit;
}

.coin-card:visited {
    color: inherit;
}

.coin-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coin-icon-img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.learn-more-card {
    display: block;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.1), rgba(189, 0, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.learn-more-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.learn-more-card:hover {
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.2), rgba(189, 0, 255, 0.2));
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    transform: translateY(-2px);
}

body.theme-light .learn-more-card {
    background: linear-gradient(90deg, rgba(255, 184, 82, 0.2), rgba(13, 117, 255, 0.2));
    border: 1px solid rgba(13, 27, 42, 0.08);
    color: var(--text-color);
}

body.theme-light .learn-more-card:hover {
    background: linear-gradient(90deg, rgba(255, 184, 82, 0.26), rgba(13, 117, 255, 0.26));
    border-color: rgba(13, 27, 42, 0.15);
    box-shadow: 0 10px 24px rgba(13, 27, 42, 0.12);
}

.game-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(189, 0, 255, 0.15), transparent 55%),
        radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.12), transparent 50%);
}

#block-hunt {
    overflow-x: hidden;
    overflow-y: visible;
}

.game-section .container {
    position: relative;
    z-index: 1;
}

.game-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: rgba(0, 242, 255, 0.08);
    border-radius: 50%;
    filter: blur(10px);
}

.game-section::after {
    content: '';
    position: absolute;
    bottom: -140px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: rgba(255, 200, 87, 0.08);
    border-radius: 50%;
    filter: blur(10px);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-grid > *,
.game-lab > * {
    min-width: 0;
}

.game-card {
    background: rgba(8, 12, 22, 0.8);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.game-card--link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-card--link:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.game-card--interactive {
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.1);
}

.game-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.chip {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 242, 255, 0.15);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.theme-light .chip {
    background: rgba(0, 0, 0, 0.06);
}

.game-intro {
    margin: 0.75rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.75);
}

body.theme-light .game-intro {
    color: rgba(13, 27, 42, 0.75);
}

.game-board {
    background: rgba(0, 0, 0, 0.35);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-light .game-board {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(13, 27, 42, 0.08);
}

.game-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.status-pill {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-light .status-pill {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(13, 27, 42, 0.08);
    color: #0d1b2a;
}

.network-status[data-state="accepted"] {
    color: var(--success-color);
}

.network-status[data-state="rejected"] {
    color: var(--danger-color);
}

.network-status[data-state="conflict"] {
    color: var(--warning-color);
}

.game-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.game-panel {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ledger-list {
    list-style: none;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.ledger-list li + li {
    margin-top: 0.5rem;
}

.node-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.node {
    background: rgba(10, 14, 23, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.node-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.node-status {
    font-size: 0.9rem;
    font-weight: 600;
}

.node.is-ready .node-status {
    color: rgba(255, 255, 255, 0.7);
}

.node.is-accepted {
    border-color: rgba(33, 210, 155, 0.6);
    background: rgba(33, 210, 155, 0.1);
}

.node.is-accepted .node-status {
    color: var(--success-color);
}

.node.is-rejected {
    border-color: rgba(255, 107, 107, 0.6);
    background: rgba(255, 107, 107, 0.1);
}

.node.is-rejected .node-status {
    color: var(--danger-color);
}

.node.is-conflict {
    border-color: rgba(255, 200, 87, 0.6);
    background: rgba(255, 200, 87, 0.1);
}

.node.is-conflict .node-status {
    color: var(--warning-color);
}

.game-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-secondary {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(45deg, #ffc857, #ff6b6b);
    color: #0a0e17;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    font-family: inherit;
}

.btn-secondary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn-ghost {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    font-family: inherit;
}

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

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-ghost:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.game-log {
    margin-top: 1.5rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.game-list {
    list-style: none;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.75);
}

.game-list li + li {
    margin-top: 0.75rem;
}

.game-card .learn-more-card {
    margin-top: 1.5rem;
}

/* Oyunlar sayfasına özel */
.page-games .game-section {
    padding-top: 4rem;
}

.games-hero {
    min-height: 80vh;
    padding: 7rem 1rem 5rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.games-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 242, 255, 0.2), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 200, 87, 0.18), transparent 55%),
        radial-gradient(circle at 50% 80%, rgba(189, 0, 255, 0.15), transparent 60%);
    opacity: 0.9;
    background-size: 200% 200%;
    animation: gradientDrift 18s ease infinite;
}

.games-hero-content {
    position: relative;
    z-index: 1;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-metrics {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.metric {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.game-section--lab {
    background: radial-gradient(circle at 20% 20%, rgba(0, 242, 255, 0.15), transparent 55%);
}

.game-lab {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    gap: 2rem;
    align-items: start;
}

.game-flow {
    background: rgba(8, 12, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.flow-steps {
    list-style: none;
    margin: 1.5rem 0 1rem;
    padding: 0;
    display: grid;
    gap: 1.2rem;
    position: relative;
}

.flow-steps::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.flow-step {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 0.75rem;
    align-items: start;
    position: relative;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    margin-top: 4px;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.flow-step.is-active .step-dot {
    transform: scale(1.15);
    border-color: var(--primary-color);
    background: rgba(0, 242, 255, 0.3);
}

.flow-step.is-complete .step-dot {
    border-color: var(--success-color);
    background: rgba(33, 210, 155, 0.3);
}

.flow-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.35);
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.game-grid--wide {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.micro-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.consensus-board {
    display: grid;
    gap: 1.5rem;
}

.consensus-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.consensus-count {
    font-size: 1.6rem;
    font-weight: 600;
}

.consensus-status {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.consensus-meter {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.consensus-meter-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.8), rgba(189, 0, 255, 0.8));
    transition: width 0.3s ease;
}

.consensus-node-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.consensus-node {
    background: rgba(10, 14, 23, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}

.consensus-node:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.35);
}

.consensus-node.vote-yes {
    border-color: rgba(33, 210, 155, 0.6);
    background: rgba(33, 210, 155, 0.12);
}

.consensus-node.vote-no {
    border-color: rgba(255, 107, 107, 0.6);
    background: rgba(255, 107, 107, 0.12);
}

.consensus-node .node-vote {
    font-weight: 600;
}

.consensus-board.is-accepted .consensus-status {
    color: var(--success-color);
}

.consensus-board.is-rejected .consensus-status {
    color: var(--danger-color);
}

.mining-board {
    display: grid;
    gap: 1.5rem;
    position: relative;
    overflow: visible;
}

.mining-display {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem;
    border-radius: 12px;
}

.mining-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mining-stat--network {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.mining-value,
.mining-target {
    font-size: 1.2rem;
    font-weight: 600;
}

.mining-select {
    display: block;
    width: 100%;
    max-width: 180px;
    min-width: 0;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: inherit;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.35rem 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.mining-hashrate {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem;
    border-radius: 12px;
}

.mining-hashrate-stat,
.mining-hashrate-input {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mining-hashrate-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.mining-hashrate-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mining-input {
    width: 100%;
    min-width: 120px;
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
}

.mining-hashrate-unit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.mining-hash {
    font-family: monospace;
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mining-progress {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.mining-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 200, 87, 0.9), rgba(255, 107, 107, 0.9));
    transition: width 0.2s ease;
}

.mining-board.is-mining .mining-bar {
    box-shadow: 0 0 12px rgba(255, 200, 87, 0.6);
}

.mining-chain {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: visible;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.mining-block {
    position: relative;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.mining-block[data-tooltip] {
    cursor: help;
}

.mining-block[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translate(-50%, 10px);
    background: rgba(8, 12, 22, 0.95);
    color: #fff;
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.4;
    white-space: normal;
    width: max-content;
    max-width: 220px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.mining-block[data-tooltip-format="list"]::before {
    white-space: pre-line;
}

.mining-block[data-tooltip]:hover::before {
    opacity: 1;
    transform: translate(-50%, 0);
}

.mining-block::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    width: 0.75rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 1;
}

.mining-block:last-child::after {
    display: none;
}

.mining-block.is-mined {
    background: rgba(33, 210, 155, 0.35);
    border-color: rgba(33, 210, 155, 0.8);
    color: #fff;
    box-shadow: 0 0 12px rgba(33, 210, 155, 0.4);
}

.mining-block.is-rival {
    background: var(--rival-bg, rgba(255, 184, 82, 0.3));
    border-color: var(--rival-border, rgba(255, 184, 82, 0.8));
    color: var(--rival-text, #fff);
    box-shadow: 0 0 12px var(--rival-shadow, rgba(255, 184, 82, 0.35));
}

.mining-block.is-latest {
    animation: confirmPulse 1.6s ease-in-out infinite;
}

.mining-block--genesis {
    background: rgba(0, 242, 255, 0.18);
    border-color: rgba(0, 242, 255, 0.6);
    color: #fff;
}

.mining-reward {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: visible;
    position: relative;
    z-index: 2;
}

.mining-reward-value {
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
}

.mining-reward-value[data-tooltip] {
    cursor: help;
}

.mining-reward-value[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translate(-50%, 10px);
    background: rgba(8, 12, 22, 0.95);
    color: #fff;
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.4;
    white-space: normal;
    width: max-content;
    max-width: 220px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.mining-reward-value[data-tooltip-format="list"]::after {
    white-space: pre-line;
}

.mining-reward-value[data-tooltip]:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.finality-board {
    display: grid;
    gap: 1.5rem;
}

.finality-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.finality-status {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.finality-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.finality-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.8), rgba(33, 210, 155, 0.9));
    transition: width 0.3s ease;
}

.finality-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.finality-block {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.finality-block.is-confirmed {
    background: rgba(33, 210, 155, 0.4);
    border-color: rgba(33, 210, 155, 0.8);
    transform: translateY(-2px);
    animation: confirmPulse 2.2s ease-in-out infinite;
}

.finality-block.is-latest {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 0 12px rgba(0, 242, 255, 0.6);
    border-color: rgba(0, 242, 255, 0.8);
}

.finality-block.is-lost {
    background: rgba(255, 107, 107, 0.45);
    border-color: rgba(255, 107, 107, 0.9);
    animation: forkPulse 0.7s ease;
}

.finality-board.is-forked {
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.3);
}

.finality-board.is-fork-failed {
    animation: forkShake 0.35s ease;
}

.finality-board.is-safe .finality-status {
    color: var(--success-color);
}

.finality-board.is-risk .finality-status {
    color: var(--danger-color);
}

.gas-board {
    display: grid;
    gap: 1.4rem;
}

.gas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.gas-value {
    font-size: 1.4rem;
    font-weight: 600;
}

.gas-speed {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.gas-range {
    width: 100%;
    accent-color: var(--primary-color);
}

.gas-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.gas-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.7), rgba(255, 200, 87, 0.9));
    transition: width 0.2s ease;
}

.gas-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.gas-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.gas-state {
    display: block;
    margin-top: 0.35rem;
    font-weight: 600;
}

.gas-card[data-tooltip] {
    cursor: help;
}

.gas-card[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    transform: translate(-50%, 10px);
    background: rgba(8, 12, 22, 0.95);
    color: #fff;
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-size: 0.78rem;
    line-height: 1.4;
    white-space: normal;
    width: max-content;
    max-width: 260px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.gas-card[data-tooltip-format="list"]::after {
    white-space: pre-line;
}

.gas-card[data-tooltip]::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(100% + 6px);
    width: 12px;
    height: 12px;
    background: rgba(8, 12, 22, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    transform: translate(-50%, 8px) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1;
}

.gas-card[data-tooltip]:hover::after,
.gas-card[data-tooltip]:hover::before {
    opacity: 1;
    transform: translate(-50%, 0) rotate(45deg);
}

.gas-card[data-tooltip]:hover::after {
    transform: translate(-50%, 0);
}

.gas-board.gas-slow .gas-speed {
    color: var(--warning-color);
}

.gas-board.gas-mid .gas-speed {
    color: var(--primary-color);
}

.gas-board.gas-fast .gas-speed {
    color: var(--danger-color);
}

.privacy-board {
    display: grid;
    gap: 1.5rem;
}

.privacy-controls {
    display: grid;
    gap: 0.75rem;
}

.privacy-controls label {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.95rem;
}

.privacy-meter {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.privacy-meter-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.8), rgba(33, 210, 155, 0.8));
    transition: width 0.3s ease;
}

.privacy-status {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.privacy-orbit {
    position: relative;
    height: 120px;
}

.privacy-orbit span {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.6);
    animation: orbit 6s linear infinite;
}

.privacy-orbit span:nth-child(2) {
    width: 10px;
    height: 10px;
    background: rgba(255, 200, 87, 0.7);
    animation-duration: 4.5s;
}

.privacy-orbit span:nth-child(3) {
    width: 8px;
    height: 8px;
    background: rgba(189, 0, 255, 0.7);
    animation-duration: 5.5s;
}

@keyframes orbit {
    0% {
        transform: translate(10px, 20px);
    }

    50% {
        transform: translate(180px, 60px);
    }

    100% {
        transform: translate(10px, 20px);
    }
}

@keyframes gradientDrift {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 60%;
    }

    100% {
        background-position: 0% 0%;
    }
}

@keyframes confirmPulse {
    0% {
        box-shadow: 0 0 0 rgba(33, 210, 155, 0.0);
    }

    50% {
        box-shadow: 0 0 16px rgba(33, 210, 155, 0.35);
    }

    100% {
        box-shadow: 0 0 0 rgba(33, 210, 155, 0.0);
    }
}

@keyframes forkPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 107, 107, 0.0);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 12px rgba(255, 107, 107, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 107, 107, 0.0);
    }
}

@keyframes forkShake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-4px);
    }
    75% {
        transform: translateX(4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.is-loaded .hero-content,
    body.is-loaded .section-head,
    body.is-loaded .feature-grid .card,
    body.is-loaded .coin-grid .coin-card,
    body.is-loaded .game-card,
    body.is-loaded .tool-card,
    body.is-loaded .academic-card {
        animation: none;
    }

    .games-hero-bg,
    .finality-block.is-confirmed,
    .finality-block.is-lost,
    .finality-board.is-fork-failed {
        animation: none;
    }

    .game-card,
    .consensus-node,
    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        transition: none;
    }
}

/* Araçlar sayfasına özel */
.tool-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-form label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.tool-form input,
.tool-form select {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: inherit;
}

.btn-primary {
    padding: 0.8rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.result-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 50px;
    word-break: break-all;
    font-family: monospace;
}

/* Akademik sayfayı ayrı düzenledim */
.academic-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-image-placeholder {
    height: 150px;
    background: linear-gradient(45deg, #333, #444);
    margin: -2rem -2rem 1.5rem -2rem;
    /* İç boşluğu dengelemek için küçük düzeltme */
}

/* Kripto para detaylarına özel */
.coin-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.coin-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

.coin-icon-large {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.coin-icon-large-img {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stats-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.currency-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.currency-select {
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: inherit;
}

.stats-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

body.theme-light .currency-control {
    color: rgba(13, 27, 42, 0.75);
}

body.theme-light .currency-select {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(13, 27, 42, 0.12);
    color: #0d1b2a;
}

body.theme-light .stats-meta {
    color: rgba(13, 27, 42, 0.6);
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.stat-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.stat-card p {
    font-size: 1.2rem;
    font-weight: 600;
}

.stat-card[data-tooltip] {
    cursor: help;
}

.stat-card[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    transform: translate(-50%, 10px);
    background: rgba(8, 12, 22, 0.95);
    color: #fff;
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-size: 0.82rem;
    line-height: 1.4;
    white-space: normal;
    width: max-content;
    max-width: 280px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.stat-card[data-tooltip-format="list"]::after {
    white-space: pre-line;
    text-align: left;
    width: 90vw;
    max-width: 360px;
}

.stat-card[data-tooltip]::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(100% + 6px);
    width: 12px;
    height: 12px;
    background: rgba(8, 12, 22, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    transform: translate(-50%, 8px) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1;
}

.stat-card[data-tooltip]:hover::after,
.stat-card[data-tooltip]:hover::before {
    opacity: 1;
    transform: translate(-50%, 0) rotate(45deg);
}

.stat-card[data-tooltip]:hover::after {
    transform: translate(-50%, 0);
}

body.theme-light .stat-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 27, 42, 0.08);
}

body.theme-light .stat-card h4 {
    color: var(--secondary-color);
}

body.theme-light .stat-card[data-tooltip]::after {
    background: rgba(255, 255, 255, 0.98);
    color: #0d1b2a;
    border: 1px solid rgba(13, 27, 42, 0.12);
    box-shadow: 0 12px 20px rgba(13, 27, 42, 0.15);
}

body.theme-light .stat-card[data-tooltip]::before {
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(13, 27, 42, 0.12);
    border-top: 1px solid rgba(13, 27, 42, 0.12);
}

body.theme-light .gas-card[data-tooltip]::after {
    background: rgba(255, 255, 255, 0.98);
    color: #0d1b2a;
    border: 1px solid rgba(13, 27, 42, 0.12);
    box-shadow: 0 12px 20px rgba(13, 27, 42, 0.15);
}

body.theme-light .gas-card[data-tooltip]::before {
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(13, 27, 42, 0.12);
    border-top: 1px solid rgba(13, 27, 42, 0.12);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-color);
    border: 2px solid var(--secondary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid rgba(255, 255, 255, 0.05);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.05);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid rgba(255, 255, 255, 0.05);
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(255, 255, 255, 0.05) transparent transparent;
}

.right::after {
    left: -10px;
}

.content {
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Açık temayı biraz keskinleştiriyorum */
body.theme-light .game-section {
    background: radial-gradient(circle at top right, rgba(13, 117, 255, 0.12), transparent 55%),
        radial-gradient(circle at 10% 20%, rgba(255, 184, 82, 0.12), transparent 50%);
}

body.theme-light .game-section::before {
    background: rgba(13, 117, 255, 0.12);
}

body.theme-light .game-section::after {
    background: rgba(0, 217, 115, 0.12);
}

body.theme-light .games-hero-bg {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 184, 82, 0.2), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(13, 117, 255, 0.18), transparent 55%),
        radial-gradient(circle at 50% 80%, rgba(0, 217, 115, 0.16), transparent 60%);
}

body.theme-light .game-section--lab {
    background: radial-gradient(circle at 20% 20%, rgba(13, 117, 255, 0.12), transparent 55%);
}

body.theme-light .coin-hero {
    color: #0d1b2a;
}

body.theme-light .coin-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(247, 242, 232, 0.0) 0%, rgba(247, 242, 232, 0.94) 70%);
    mix-blend-mode: screen;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

body.theme-light .coin-hero::after {
    background: linear-gradient(to top, rgba(247, 242, 232, 0.95), transparent);
    z-index: 1;
}

body.theme-light .coin-hero .container {
    position: relative;
    z-index: 2;
}

body.theme-light .coin-hero h1 {
    color: #e6e6e6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

body.theme-light .coin-hero .lead-text {
    color: rgba(230, 230, 230, 0.9);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

body.theme-light .coin-icon-large,
body.theme-light .coin-icon-large-img {
    filter: drop-shadow(0 0 8px rgba(13, 27, 42, 0.2));
}

body.theme-light .game-card--interactive {
    border-color: rgba(13, 117, 255, 0.35);
    box-shadow: 0 20px 40px rgba(13, 117, 255, 0.12);
}

body.theme-light .card p,
body.theme-light .coin-card p,
body.theme-light .tool-card p,
body.theme-light .academic-card p,
body.theme-light .ledger-list,
body.theme-light .game-list {
    color: rgba(13, 27, 42, 0.75);
}

body.theme-light .game-panel,
body.theme-light .game-flow,
body.theme-light .flow-note,
body.theme-light .game-log,
body.theme-light .metric,
body.theme-light .mining-display,
body.theme-light .mining-hashrate,
body.theme-light .mining-hash,
body.theme-light .mining-chain,
body.theme-light .mining-reward,
body.theme-light .gas-card,
body.theme-light .content {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 27, 42, 0.08);
    color: var(--text-color);
}

body.theme-light .mining-select,
body.theme-light .mining-input {
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-color);
    border: 1px solid rgba(13, 27, 42, 0.2);
}

body.theme-light .mining-hashrate-unit {
    color: rgba(13, 27, 42, 0.6);
}

body.theme-light .node:not(.is-accepted):not(.is-rejected):not(.is-conflict) {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 27, 42, 0.08);
}

body.theme-light .node-title,
body.theme-light .node.is-ready .node-status,
body.theme-light .metric-label,
body.theme-light .micro-label,
body.theme-light .privacy-status {
    color: rgba(13, 27, 42, 0.7);
}

body.theme-light .flow-steps::before {
    background: rgba(13, 27, 42, 0.12);
}

body.theme-light .step-dot {
    border-color: rgba(13, 27, 42, 0.3);
    background: rgba(13, 27, 42, 0.08);
}

body.theme-light .flow-step.is-active .step-dot {
    background: rgba(255, 140, 0, 0.25);
}

body.theme-light .consensus-node:not(.vote-yes):not(.vote-no) {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 27, 42, 0.12);
}

body.theme-light .consensus-node:hover {
    border-color: rgba(13, 27, 42, 0.35);
}

body.theme-light .consensus-status,
body.theme-light .finality-status,
body.theme-light .gas-speed {
    background: rgba(13, 27, 42, 0.08);
}

body.theme-light .consensus-meter,
body.theme-light .finality-track,
body.theme-light .gas-track,
body.theme-light .privacy-meter,
body.theme-light .mining-progress {
    background: rgba(13, 27, 42, 0.1);
}

body.theme-light .consensus-meter-fill {
    background: linear-gradient(90deg, rgba(13, 117, 255, 0.85), rgba(0, 217, 115, 0.85));
}

body.theme-light .mining-bar {
    background: linear-gradient(90deg, rgba(255, 184, 82, 0.9), rgba(255, 140, 0, 0.9));
}

body.theme-light .mining-board.is-mining .mining-bar {
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.35);
}

body.theme-light .mining-block {
    background: rgba(13, 27, 42, 0.08);
    border: 1px solid rgba(13, 27, 42, 0.2);
    color: rgba(13, 27, 42, 0.75);
}

body.theme-light .mining-block[data-tooltip]::before {
    background: rgba(255, 255, 255, 0.98);
    color: rgba(13, 27, 42, 0.9);
    border: 1px solid rgba(13, 27, 42, 0.12);
    box-shadow: 0 12px 24px rgba(13, 27, 42, 0.18);
}

body.theme-light .mining-reward-value[data-tooltip]::after {
    background: rgba(255, 255, 255, 0.98);
    color: rgba(13, 27, 42, 0.9);
    border: 1px solid rgba(13, 27, 42, 0.12);
    box-shadow: 0 12px 24px rgba(13, 27, 42, 0.18);
}

body.theme-light .mining-block::after {
    background: rgba(13, 27, 42, 0.2);
}

body.theme-light .mining-block.is-mined {
    background: rgba(0, 217, 115, 0.25);
    border-color: rgba(0, 217, 115, 0.6);
    color: rgba(13, 27, 42, 0.95);
    box-shadow: 0 0 10px rgba(0, 217, 115, 0.25);
}

body.theme-light .mining-block.is-rival {
    background: var(--rival-bg, rgba(255, 184, 82, 0.3));
    border-color: var(--rival-border, rgba(255, 184, 82, 0.7));
    color: var(--rival-text, rgba(13, 27, 42, 0.95));
    box-shadow: 0 0 10px var(--rival-shadow, rgba(255, 184, 82, 0.25));
}

body.theme-light .mining-block--genesis {
    background: rgba(13, 117, 255, 0.2);
    border-color: rgba(13, 117, 255, 0.5);
    color: rgba(13, 27, 42, 0.95);
}

body.theme-light .gas-fill {
    background: linear-gradient(90deg, rgba(13, 117, 255, 0.8), rgba(255, 184, 82, 0.9));
}

body.theme-light .privacy-meter-fill {
    background: linear-gradient(90deg, rgba(13, 117, 255, 0.8), rgba(0, 217, 115, 0.8));
}

body.theme-light .privacy-orbit span {
    background: rgba(13, 117, 255, 0.55);
}

body.theme-light .privacy-orbit span:nth-child(2) {
    background: rgba(255, 184, 82, 0.7);
}

body.theme-light .privacy-orbit span:nth-child(3) {
    background: rgba(0, 217, 115, 0.7);
}

body.theme-light .finality-block {
    background: rgba(13, 27, 42, 0.08);
    border: 1px solid rgba(13, 27, 42, 0.2);
}

body.theme-light .finality-block.is-confirmed {
    background: rgba(0, 217, 115, 0.35);
    border-color: rgba(0, 217, 115, 0.7);
    box-shadow: 0 0 10px rgba(0, 217, 115, 0.25);
}

body.theme-light .finality-block.is-latest {
    box-shadow: 0 0 12px rgba(13, 117, 255, 0.4);
    border-color: rgba(13, 117, 255, 0.7);
}

body.theme-light .finality-block.is-lost {
    background: rgba(255, 140, 0, 0.35);
    border-color: rgba(255, 140, 0, 0.75);
}

body.theme-light .finality-fill {
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.8), rgba(0, 217, 115, 0.9));
}

body.theme-light .finality-board.is-forked {
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.35);
}

body.theme-light .finality-board.is-fork-failed {
    box-shadow: 0 0 0 2px rgba(13, 117, 255, 0.2);
}

body.theme-light .btn-secondary {
    background: linear-gradient(45deg, #ffb852, #ff8c00);
    color: #0d1b2a;
}

body.theme-light .btn-ghost {
    border-color: rgba(13, 27, 42, 0.2);
    color: #0d1b2a;
}

body.theme-light .btn-ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.theme-light .tool-form label {
    color: rgba(13, 27, 42, 0.7);
}

body.theme-light .tool-form input,
body.theme-light .tool-form select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(13, 27, 42, 0.12);
    color: #0d1b2a;
}

body.theme-light .result-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(13, 27, 42, 0.12);
    color: #0d1b2a;
}

body.theme-light .card-image-placeholder {
    background: linear-gradient(45deg, #f2f4f7, #e0e6ee);
}

body.theme-light .left::before {
    border-color: transparent transparent transparent rgba(13, 27, 42, 0.08);
}

body.theme-light .right::before {
    border-color: transparent rgba(13, 27, 42, 0.08) transparent transparent;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .feature-grid,
    .coin-grid {
        grid-template-columns: 1fr;
    }

    .game-grid,
    .game-grid--wide {
        grid-template-columns: 1fr;
    }

    .game-card {
        padding: 1.5rem;
        min-width: 0;
    }

    .game-actions {
        flex-direction: column;
    }

    .game-status {
        flex-direction: column;
    }

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

    .game-lab {
        grid-template-columns: 1fr;
    }

    .consensus-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .mining-display {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .mining-stat--network {
        flex-direction: column;
        align-items: flex-start;
    }

    .mining-hashrate {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        width: 100%;
    }

    .finality-header,
    .gas-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gas-cards {
        grid-template-columns: 1fr;
    }

    .stats-controls {
        justify-content: flex-start;
    }

    .stats-meta {
        width: 100%;
        justify-content: space-between;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .left::after,
    .right::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }
}
