:root {
  --tk-terra: #4A7C6F;
  --tk-terra-dark: #2A3028;
  --tk-terra-light: #6A9C8F;
  --tk-tile: #7A7068;
  --tk-tile-light: #9A9088;
  --tk-loam: #F5F0E8;
  --tk-ink: #1E2826;
  --tk-muted: #5A6E68;
  --tk-wash: #EAE5DC;
  --tk-border: #D8D2C8;
  --tk-font-display: 'Playfair Display', serif;
  --tk-font-ui: 'Nunito Sans', sans-serif;
  --tk-radius: 8px;
  --tk-shadow: 0 2px 12px rgba(30,40,38,0.08);
  --tk-shadow-lg: 0 8px 32px rgba(30,40,38,0.12);
  --tk-transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--tk-font-ui);
  background: var(--tk-loam);
  color: var(--tk-ink);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--tk-terra); text-decoration: none; transition: color var(--tk-transition); }
a:hover { color: var(--tk-terra-dark); }

img { max-width: 100%; display: block; }

ul, ol { list-style: none; }

h1, h2, h3, h4 { font-family: var(--tk-font-display); font-weight: 700; line-height: 1.3; color: var(--tk-ink); }

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

.tk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 24px; border: none; border-radius: var(--tk-radius);
  font-family: var(--tk-font-ui); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all var(--tk-transition);
}
.tk-btn-primary { background: var(--tk-terra); color: #fff; }
.tk-btn-primary:hover { background: var(--tk-terra-dark); transform: translateY(-1px); }
.tk-btn-outline { background: transparent; color: var(--tk-terra); border: 2px solid var(--tk-terra); }
.tk-btn-outline:hover { background: var(--tk-terra); color: #fff; }
.tk-btn-sm { padding: 6px 16px; font-size: 13px; }

.tk-site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,240,232,0.95);
  transition: transform 0.35s ease, background 0.3s ease;
}
.tk-site-header.tk-hidden { transform: translateY(-100%); }

.tk-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: flex-end; gap: 0;
}

.tk-header-logo {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px 12px 0; text-decoration: none; flex-shrink: 0;
}
.tk-header-logo img { height: 40px; width: auto; }
.tk-header-logo span {
  font-family: var(--tk-font-display); font-size: 13px;
  color: var(--tk-tile); font-weight: 600; white-space: nowrap;
}

.tk-header-arch {
  position: relative; display: flex; align-items: flex-end;
}

.tk-header-nav {
  display: flex; align-items: stretch; height: 52px;
}
.tk-header-nav a {
  display: flex; align-items: center; padding: 0 18px;
  font-size: 14px; font-weight: 600; color: var(--tk-tile);
  text-decoration: none; position: relative;
  transition: color var(--tk-transition);
}
.tk-header-nav a::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); width: 1px; height: 18px;
  background: var(--tk-border);
}
.tk-header-nav a:last-child::after { display: none; }
.tk-header-nav a:hover, .tk-header-nav a.tk-active { color: var(--tk-terra); }
.tk-header-nav a.tk-active::before {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px;
  height: 3px; background: var(--tk-terra); border-radius: 3px 3px 0 0;
}

.tk-nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; flex-shrink: 0;
}
.tk-nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--tk-terra);
  position: absolute; left: 7px; transition: all 0.3s;
}
.tk-nav-toggle span:nth-child(1) { top: 10px; }
.tk-nav-toggle span:nth-child(2) { top: 17px; }
.tk-nav-toggle span:nth-child(3) { top: 24px; }
.tk-nav-toggle.tk-open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.tk-nav-toggle.tk-open span:nth-child(2) { opacity: 0; }
.tk-nav-toggle.tk-open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.tk-nav-mobile {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--tk-loam); border-bottom: 2px solid var(--tk-border);
  padding: 12px 24px; z-index: 99;
}
.tk-nav-mobile.tk-show { display: block; }
.tk-nav-mobile a {
  display: block; padding: 10px 0; font-size: 15px; font-weight: 600;
  color: var(--tk-tile); border-bottom: 1px solid var(--tk-border);
}
.tk-nav-mobile a:last-child { border-bottom: none; }
.tk-nav-mobile a:hover, .tk-nav-mobile a.tk-active { color: var(--tk-terra); }

.tk-site-footer {
  background: var(--tk-ink); color: rgba(245,240,232,0.7);
  padding: 48px 0 24px; margin-top: 64px;
}
.tk-footer-bricks {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.tk-footer-brick h4 {
  color: var(--tk-terra-light); font-size: 15px; margin-bottom: 16px;
  font-family: var(--tk-font-display);
}
.tk-footer-brick p, .tk-footer-brick a {
  font-size: 13px; line-height: 2; color: rgba(245,240,232,0.6);
}
.tk-footer-brick a:hover { color: var(--tk-terra-light); }
.tk-footer-bottom {
  text-align: center; padding: 24px 24px 0; margin-top: 32px;
  border-top: 1px solid rgba(245,240,232,0.1); font-size: 12px;
}
.tk-footer-bottom a { color: rgba(245,240,232,0.5); margin: 0 8px; }
.tk-footer-bottom a:hover { color: var(--tk-terra-light); }

.tk-hero {
  display: grid; grid-template-columns: 55% 45%;
  min-height: 480px; align-items: center;
  padding: 80px 0 0; position: relative; overflow: hidden;
}
.tk-hero-text { padding-right: 40px; }
.tk-hero-text h1 {
  font-size: 48px; color: var(--tk-ink); margin-bottom: 16px;
  line-height: 1.15;
}
.tk-hero-text h1 em {
  font-style: normal; color: var(--tk-terra);
}
.tk-hero-text p {
  font-size: 17px; color: var(--tk-muted); margin-bottom: 32px; line-height: 1.8;
}
.tk-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.tk-hero-globe {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.tk-hero-globe-glow {
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 45% 40%, rgba(106,156,143,0.35), rgba(74,124,111,0.15) 50%, transparent 70%);
  animation: tk-globe-pulse 4s ease-in-out infinite;
  position: relative;
}
.tk-hero-globe-glow::before {
  content: ''; position: absolute; inset: 30px; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(138,172,159,0.2), transparent 60%);
}
@keyframes tk-globe-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

.tk-hero-saw {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 40px; z-index: 2;
}

.tk-section { padding: 64px 0; }
.tk-section-title {
  font-size: 28px; margin-bottom: 8px; display: flex; align-items: center; gap: 12px;
}
.tk-section-title::before {
  content: ''; width: 4px; height: 28px; background: var(--tk-terra);
  border-radius: 2px; flex-shrink: 0;
}
.tk-section-sub { font-size: 14px; color: var(--tk-muted); margin-bottom: 32px; }

.tk-featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.tk-shard {
  background: #fff; border-radius: var(--tk-radius); overflow: hidden;
  box-shadow: var(--tk-shadow); transition: all var(--tk-transition);
  position: relative; display: block; text-decoration: none; color: inherit;
}
.tk-shard:hover { transform: translateY(-4px); box-shadow: var(--tk-shadow-lg); }
.tk-shard-glaze {
  height: 5px; width: 100%;
}
.tk-shard:nth-child(1) .tk-shard-glaze { background: linear-gradient(90deg, #4A7C6F, #6A9C8F); }
.tk-shard:nth-child(2) .tk-shard-glaze { background: linear-gradient(90deg, #5A8C7F, #4A7C6F); }
.tk-shard:nth-child(3) .tk-shard-glaze { background: linear-gradient(90deg, #3A6C5F, #5A8C7F); }
.tk-shard:nth-child(4) .tk-shard-glaze { background: linear-gradient(90deg, #6A9C8F, #8AAC9F); }
.tk-shard:nth-child(5) .tk-shard-glaze { background: linear-gradient(90deg, #2A5C4F, #4A7C6F); }
.tk-shard:nth-child(6) .tk-shard-glaze { background: linear-gradient(90deg, #5A8C7F, #7A9C8A); }

.tk-shard-img {
  width: 100%; height: 200px; object-fit: cover;
}
.tk-shard-body { padding: 16px; }
.tk-shard-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; font-family: var(--tk-font-display); }
.tk-shard-desc { font-size: 13px; color: var(--tk-muted); margin-bottom: 12px; line-height: 1.6; }
.tk-shard-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tk-shard-tag {
  font-size: 11px; padding: 2px 8px; border-radius: 10px;
  background: var(--tk-wash); color: var(--tk-tile);
}
.tk-shard-stamp {
  display: flex; align-items: center; gap: 4px; margin-top: 10px;
  font-size: 11px; color: var(--tk-tile-light); font-style: italic;
}
.tk-shard-stamp::before {
  content: '◈'; color: var(--tk-terra); font-style: normal;
}

.tk-comics-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}

.tk-update-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.tk-update-card {
  background: #fff; border-radius: var(--tk-radius); padding: 16px;
  border-left: 4px solid var(--tk-terra); box-shadow: var(--tk-shadow);
  transition: all var(--tk-transition); display: block; text-decoration: none; color: inherit;
}
.tk-update-card:hover { border-left-color: var(--tk-terra-dark); transform: translateX(4px); }
.tk-update-card h4 { font-size: 15px; margin-bottom: 4px; }
.tk-update-card p { font-size: 12px; color: var(--tk-muted); }
.tk-update-card .tk-update-chapter { font-size: 11px; color: var(--tk-terra); margin-top: 8px; font-weight: 600; }

.tk-rank-list { counter-reset: tk-rank; }
.tk-rank-item {
  counter-increment: tk-rank; display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--tk-border);
}
.tk-rank-item::before {
  content: counter(tk-rank); font-family: var(--tk-font-display);
  font-size: 22px; font-weight: 700; color: var(--tk-terra); min-width: 36px;
}
.tk-rank-item:nth-child(n+4)::before { color: var(--tk-tile); }
.tk-rank-info h4 { font-size: 15px; margin-bottom: 2px; }
.tk-rank-info span { font-size: 12px; color: var(--tk-muted); }

.tk-scroll-row {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.tk-scroll-row::-webkit-scrollbar { height: 4px; }
.tk-scroll-row::-webkit-scrollbar-thumb { background: var(--tk-border); border-radius: 2px; }
.tk-scroll-card {
  flex: 0 0 200px; scroll-snap-align: start; background: #fff;
  border-radius: var(--tk-radius); overflow: hidden; box-shadow: var(--tk-shadow);
  transition: transform var(--tk-transition);
}
.tk-scroll-card:hover { transform: scale(1.03); }
.tk-scroll-card img { width: 100%; height: 140px; object-fit: cover; }
.tk-scroll-card .tk-scroll-info { padding: 10px; }
.tk-scroll-card .tk-scroll-info h4 { font-size: 13px; margin-bottom: 2px; }
.tk-scroll-card .tk-scroll-info span { font-size: 11px; color: var(--tk-muted); }

.tk-cta-band {
  background: linear-gradient(135deg, var(--tk-terra-dark), var(--tk-terra));
  padding: 64px 0; text-align: center; color: #fff;
}
.tk-cta-band h2 { font-size: 32px; margin-bottom: 12px; }
.tk-cta-band p { font-size: 15px; opacity: 0.85; margin-bottom: 28px; }

.tk-page-header {
  padding: 48px 0 32px; border-bottom: 1px solid var(--tk-border); margin-bottom: 32px;
}
.tk-page-header h1 { font-size: 32px; }

.tk-comic-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.tk-detail-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 40px; }
.tk-detail-cover { border-radius: var(--tk-radius); overflow: hidden; box-shadow: var(--tk-shadow-lg); }
.tk-detail-cover img { width: 100%; }
.tk-detail-info h1 { font-size: 28px; margin-bottom: 8px; }
.tk-detail-info .tk-detail-author { color: var(--tk-tile); font-size: 14px; margin-bottom: 16px; }
.tk-detail-info .tk-detail-desc { color: var(--tk-muted); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.tk-detail-dims { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.tk-dim-badge {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 16px; background: var(--tk-wash); border-radius: var(--tk-radius);
  min-width: 80px;
}
.tk-dim-badge .tk-dim-label { font-size: 10px; color: var(--tk-tile); text-transform: uppercase; letter-spacing: 0.5px; }
.tk-dim-badge .tk-dim-value { font-size: 18px; font-weight: 700; color: var(--tk-terra); font-family: var(--tk-font-display); }

.tk-chapter-list { margin-top: 32px; }
.tk-chapter-list h3 { font-size: 18px; margin-bottom: 16px; }
.tk-chapters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tk-chapter-btn {
  padding: 10px; border: 1px solid var(--tk-border); border-radius: var(--tk-radius);
  background: #fff; cursor: pointer; font-size: 13px; text-align: center;
  transition: all var(--tk-transition); font-family: var(--tk-font-ui);
}
.tk-chapter-btn:hover { border-color: var(--tk-terra); color: var(--tk-terra); }
.tk-chapter-btn.tk-locked { opacity: 0.6; position: relative; }
.tk-chapter-btn.tk-locked::after { content: '🔒'; font-size: 10px; margin-left: 4px; }

.tk-reader-wrap { max-width: 800px; margin: 0 auto; padding: 24px; }
.tk-reader-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.tk-reader-header h2 { font-size: 18px; }
.tk-reader-page { width: 100%; margin-bottom: 4px; border-radius: 4px; }
.tk-reader-page img { width: 100%; display: block; }
.tk-reader-lock {
  text-align: center; padding: 64px 24px; background: var(--tk-wash);
  border-radius: var(--tk-radius); margin-top: 24px;
  border: 2px dashed var(--tk-border);
}
.tk-reader-lock p { font-size: 16px; color: var(--tk-muted); margin-bottom: 16px; }
.tk-reader-lock .tk-btn { margin-top: 8px; }
.tk-reader-unlock {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px; padding: 12px 32px; border: 2px solid var(--tk-terra);
  border-radius: var(--tk-radius); background: var(--terra);
  color: #fff; font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: var(--tk-font-ui); transition: all var(--tk-transition);
  background: var(--tk-terra);
}
.tk-reader-unlock:hover { background: var(--tk-terra-dark); transform: translateY(-2px); }

.tk-auth-page {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding: 0;
}
.tk-auth-decor {
  background: linear-gradient(160deg, #2A3028 0%, #3A5C50 50%, #4A7C6F 100%);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.tk-auth-decor::before {
  content: ''; position: absolute; inset: 40px; border: 2px solid rgba(106,156,143,0.3); border-radius: 50%;
  animation: tk-globe-pulse 6s ease-in-out infinite;
}
.tk-auth-decor::after {
  content: ''; position: absolute; inset: 80px; border: 1px solid rgba(106,156,143,0.15); border-radius: 50%;
}
.tk-auth-decor-globe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 240px; height: 240px; border-radius: 50%; opacity: 0.08;
  background: radial-gradient(circle at 45% 40%, rgba(106,156,143,1), rgba(74,124,111,0.3) 50%, transparent 70%);
}
.tk-auth-decor-text {
  color: rgba(245,240,232,0.85); text-align: center; z-index: 1; padding: 40px;
}
.tk-auth-decor-text h2 {
  font-family: var(--tk-font-display); font-size: 36px; margin-bottom: 12px;
  color: rgba(245,240,232,0.95); font-weight: 700;
}
.tk-auth-decor-text p {
  font-size: 14px; line-height: 1.8; color: rgba(245,240,232,0.6); max-width: 280px; margin: 0 auto;
}
.tk-auth-main {
  display: flex; align-items: center; justify-content: center;
  background: var(--tk-loam); padding: 40px; position: relative;
}
.tk-auth-back {
  position: fixed; top: 20px; left: 20px; display: flex; align-items: center; gap: 6px;
  color: var(--tk-tile); font-size: 14px; z-index: 10;
}
.tk-auth-back:hover { color: var(--tk-terra); }
.tk-auth-card {
  width: 100%; max-width: 380px; padding: 48px 36px;
  background: #fff; border-radius: var(--tk-radius);
  box-shadow: var(--tk-shadow-lg); position: relative; overflow: hidden;
}
.tk-auth-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--tk-terra), var(--tk-terra-light));
}
.tk-auth-card::after {
  content: ''; position: absolute; top: 5px; left: 0; width: 3px; height: 40px;
  background: var(--tk-terra); opacity: 0.4;
}
.tk-auth-card h1 {
  font-size: 24px; text-align: center; margin-bottom: 32px; color: var(--tk-ink);
}
.tk-form-group { margin-bottom: 20px; }
.tk-form-group label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--tk-tile);
}
.tk-form-input {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--tk-border);
  border-radius: var(--tk-radius); font-size: 14px; font-family: var(--tk-font-ui);
  transition: border-color var(--tk-transition); background: var(--tk-loam);
}
.tk-form-input:focus { outline: none; border-color: var(--tk-terra); }
.tk-form-check { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 20px; font-size: 13px; }
.tk-form-check input { margin-top: 2px; accent-color: var(--tk-terra); }
.tk-form-check a { color: var(--tk-terra); text-decoration: underline; }
.tk-form-submit {
  width: 100%; padding: 12px; border: none; border-radius: var(--tk-radius);
  background: var(--tk-terra); color: #fff; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: var(--tk-font-ui); transition: background var(--tk-transition);
}
.tk-form-submit:hover { background: var(--tk-terra-dark); }
.tk-form-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--tk-tile); }
.tk-form-footer a { color: var(--tk-terra); font-weight: 600; }
.tk-form-error { color: #c0392b; font-size: 12px; margin-top: 4px; display: none; }

.tk-recharge-page { padding: 0; }
.tk-recharge-hero {
  background: linear-gradient(135deg, var(--tk-terra-dark) 0%, #3A5C50 40%, var(--tk-terra) 100%);
  padding: 80px 0 64px; color: #fff; position: relative; overflow: hidden;
}
.tk-recharge-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 2px solid rgba(106,156,143,0.2);
}
.tk-recharge-hero::after {
  content: ''; position: absolute; bottom: -80px; left: 20%;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(106,156,143,0.12);
}
.tk-recharge-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.tk-recharge-hero h1 { font-size: 36px; margin-bottom: 8px; }
.tk-recharge-hero p { font-size: 15px; opacity: 0.8; }
.tk-recharge-balance {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  padding: 8px 20px; background: rgba(255,255,255,0.12); border-radius: 20px;
  font-size: 14px; color: rgba(255,255,255,0.9);
}
.tk-recharge-balance strong { font-size: 20px; font-family: var(--tk-font-display); }
.tk-recharge-body { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
.tk-recharge-coins {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 640px; margin: 0 auto 40px;
}
.tk-recharge-coin {
  padding: 24px 16px; border-radius: var(--tk-radius); margin: 0 auto;
  background: #fff; border: 2px solid var(--tk-border); display: flex; flex-direction: column;
  align-items: center; justify-content: center; cursor: pointer; width: 100%;
  transition: all var(--tk-transition); box-shadow: var(--tk-shadow);
  font-family: var(--tk-font-display); position: relative;
}
.tk-recharge-coin::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--tk-border); border-radius: var(--tk-radius) var(--tk-radius) 0 0;
  transition: background var(--tk-transition);
}
.tk-recharge-coin:hover { border-color: var(--tk-terra); transform: translateY(-3px); box-shadow: var(--tk-shadow-lg); }
.tk-recharge-coin:hover::before { background: var(--tk-terra); }
.tk-recharge-coin.tk-selected { border-color: var(--tk-terra); background: linear-gradient(180deg, rgba(74,124,111,0.06), #fff); box-shadow: var(--tk-shadow-lg); }
.tk-recharge-coin.tk-selected::before { background: var(--tk-terra); }
.tk-recharge-coin .tk-coin-amount { font-size: 28px; font-weight: 700; color: var(--tk-ink); }
.tk-recharge-coin .tk-coin-label { font-size: 11px; color: var(--tk-tile); margin-top: 2px; }
.tk-recharge-coin .tk-coin-price { font-size: 14px; color: var(--tk-terra); font-weight: 600; margin-top: 8px; }
.tk-recharge-coin .tk-coin-original { font-size: 11px; color: var(--tk-tile-light); text-decoration: line-through; }
.tk-recharge-qr { text-align: center; margin-top: 32px; }
.tk-recharge-qr #tk-qr-container { display: inline-block; padding: 16px; background: #fff; border-radius: var(--tk-radius); box-shadow: var(--tk-shadow); }
.tk-recharge-status { margin-top: 16px; font-size: 14px; color: var(--tk-tile); }

.tk-article-body {
  max-width: 800px; margin: 0 auto; padding: 32px 0;
  font-size: 15px; line-height: 2; color: var(--tk-ink);
}
.tk-article-body h2 { font-size: 22px; margin: 32px 0 12px; color: var(--tk-terra-dark); }
.tk-article-body h3 { font-size: 18px; margin: 24px 0 8px; }
.tk-article-body p { margin-bottom: 16px; }
.tk-article-body ul { padding-left: 24px; margin-bottom: 16px; list-style: disc; }
.tk-article-body ol { padding-left: 24px; margin-bottom: 16px; list-style: decimal; }
.tk-article-body li { margin-bottom: 6px; }

.tk-about-section { padding: 48px 0; }
.tk-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.tk-about-card { background: #fff; padding: 24px; border-radius: var(--tk-radius); box-shadow: var(--tk-shadow); }
.tk-about-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--tk-terra); }
.tk-about-card p { font-size: 14px; line-height: 1.8; color: var(--tk-muted); }

.tk-firing-bar {
  display: inline-flex; align-items: center; gap: 3px;
}
.tk-firing-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--tk-border);
}
.tk-firing-dot.tk-hot { background: var(--tk-terra); }

.tk-toast {
  position: fixed; top: 20px; right: 20px; z-index: 9999;
  padding: 12px 24px; border-radius: var(--tk-radius);
  background: var(--tk-ink); color: #fff; font-size: 14px;
  transform: translateX(120%); transition: transform 0.4s ease;
}
.tk-toast.tk-show { transform: translateX(0); }

@media (max-width: 768px) {
  .tk-hero { grid-template-columns: 1fr; min-height: auto; padding: 40px 0 0; }
  .tk-hero-text { padding-right: 0; }
  .tk-hero-text h1 { font-size: 32px; }
  .tk-hero-globe { min-height: 200px; }
  .tk-hero-globe-glow { width: 200px; height: 200px; }
  .tk-featured-grid, .tk-comics-grid, .tk-update-grid, .tk-comic-list { grid-template-columns: 1fr; }
  .tk-chapters { grid-template-columns: repeat(3, 1fr); }
  .tk-detail-wrap { grid-template-columns: 1fr; }
  .tk-footer-bricks { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .tk-recharge-coins { grid-template-columns: repeat(2, 1fr); }
  .tk-about-grid { grid-template-columns: 1fr; }
  .tk-header-nav { display: none; }
  .tk-nav-toggle { display: block; }
  .tk-site-header { position: relative; }
  .tk-site-header .tk-header-inner { flex-wrap: wrap; position: relative; }
  .tk-auth-page { grid-template-columns: 1fr; }
  .tk-auth-decor { display: none; }
}
@media (max-width: 480px) {
  .tk-hero-text h1 { font-size: 26px; }
  .tk-section-title { font-size: 22px; }
  .tk-auth-card { padding: 36px 24px; }
  .tk-recharge-coins { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}