:root {
  --tk-bg: #050506;
  --tk-bg-2: #0b0c10;
  --tk-panel: rgba(16, 18, 23, .94);
  --tk-panel-2: #11131a;
  --tk-line: rgba(255, 207, 98, .28);
  --tk-red: #e92735;
  --tk-red-2: #ff4b55;
  --tk-gold: #ffcf62;
  --tk-gold-2: #c98f23;
  --tk-cyan: #22d7cf;
  --tk-pink: #ff4cc9;
  --tk-text: #fff7e7;
  --tk-muted: #c9c0b4;
  --tk-dark-text: #120d08;
  --tk-shadow: 0 22px 64px rgba(0, 0, 0, .48);
  --tk-radius: 8px;
  --tk-font: "Noto Sans Bengali", "Hind Siliguri", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--tk-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(233, 39, 53, .2), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(34, 215, 207, .11), transparent 28%),
    linear-gradient(180deg, #050506 0%, #0b0c10 46%, #050506 100%);
  font-family: var(--tk-font);
  line-height: 1.68;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.tk999-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.tk999-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 10, 12, .96);
  border-bottom: 1px solid rgba(255, 207, 98, .22);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .42);
  backdrop-filter: blur(14px);
}

.tk999-topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.tk999-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--tk-gold);
  font-size: 42px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(233, 39, 53, .34);
}

.tk999-logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--tk-radius);
  color: #fff;
  font-size: 18px;
  background:
    linear-gradient(135deg, rgba(255, 207, 98, .26), transparent 34%),
    linear-gradient(135deg, #990612, #ef2a39);
  border: 1px solid rgba(255, 207, 98, .6);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .22), 0 12px 24px rgba(233, 39, 53, .24);
}

.tk999-logo strong {
  color: var(--tk-red-2);
}

.tk999-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tk999-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--tk-radius);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tk999-btn:hover {
  transform: translateY(-2px);
}

.tk999-btn-red {
  background: linear-gradient(135deg, #b90816, var(--tk-red-2));
  box-shadow: 0 14px 28px rgba(233, 39, 53, .34);
}

.tk999-btn-gold {
  color: var(--tk-dark-text);
  background: linear-gradient(135deg, #fff0a8, var(--tk-gold), var(--tk-gold-2));
  box-shadow: 0 16px 32px rgba(255, 207, 98, .24);
}

.tk999-btn-ghost {
  color: var(--tk-gold);
  border-color: rgba(255, 207, 98, .58);
  background: rgba(255, 255, 255, .04);
}

.tk999-nav {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, #ed3340, #9a0612);
  overflow-x: auto;
  scrollbar-width: none;
}

.tk999-nav::-webkit-scrollbar {
  display: none;
}

.tk999-nav-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.tk999-nav a {
  flex: 0 0 auto;
  padding: 17px 18px;
  color: #fff3f1;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.tk999-nav a:hover,
.tk999-nav a.is-active {
  color: var(--tk-gold);
  background: rgba(0, 0, 0, .18);
  border-bottom-color: var(--tk-gold);
}

.tk999-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .98) 0%, rgba(5, 5, 6, .78) 38%, rgba(5, 5, 6, .18) 100%),
    url("tk999-hero.png") right center / cover no-repeat;
}

.tk999-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 207, 98, .62), transparent);
}

.tk999-hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(280px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 56px 0 62px;
}

.tk999-hero-copy {
  position: relative;
  z-index: 2;
}

.tk999-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--tk-gold);
  font-size: 58px;
  font-weight: 1000;
  line-height: 1.08;
  letter-spacing: 0;
}

.tk999-hero h1 span {
  display: block;
  color: #fff;
}

.tk999-hero p {
  max-width: 610px;
  margin: 0 0 28px;
  color: #f2e5d2;
  font-size: 19px;
  font-weight: 650;
}

.tk999-hero-actions,
.tk999-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tk999-official {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 207, 98, .32);
  border-radius: var(--tk-radius);
  background: rgba(8, 9, 12, .72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .32);
}

.tk999-official small {
  display: block;
  color: var(--tk-muted);
  font-size: 13px;
  font-weight: 800;
}

.tk999-official strong {
  display: block;
  color: var(--tk-cyan);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.tk999-hero-space {
  min-height: 1px;
}

.tk999-section {
  padding: 56px 0;
}

.tk999-section-dark {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 76, 201, .08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
}

.tk999-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.tk999-section-head h2,
.tk999-panel h2,
.tk999-link-panel h2,
.tk999-final h2,
.tk999-article-hero h1,
.tk999-sidebar h2 {
  margin: 0;
  color: var(--tk-pink);
  font-size: 36px;
  line-height: 1.18;
  font-weight: 1000;
  letter-spacing: 0;
}

.tk999-section-head p,
.tk999-panel p,
.tk999-link-panel p,
.tk999-final p {
  margin: 10px 0 0;
  color: var(--tk-muted);
}

.tk999-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 24px;
}

.tk999-panel,
.tk999-link-panel,
.tk999-game-card,
.tk999-post-card,
.tk999-step,
.tk999-faq-card,
.tk999-sidebar,
.tk999-article-card {
  border: 1px solid var(--tk-line);
  border-radius: var(--tk-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0)),
    var(--tk-panel);
  box-shadow: var(--tk-shadow);
}

.tk999-panel,
.tk999-link-panel {
  padding: 32px;
}

.tk999-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.tk999-benefits div {
  min-width: 0;
  padding: 18px 14px;
  border: 1px solid rgba(255, 207, 98, .2);
  border-radius: var(--tk-radius);
  background: rgba(255, 255, 255, .03);
}

.tk999-benefits b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: var(--tk-radius);
  color: #090606;
  background: linear-gradient(135deg, var(--tk-gold), var(--tk-red-2));
  font-size: 17px;
  font-weight: 1000;
}

.tk999-benefits strong {
  display: block;
  color: var(--tk-gold);
  font-size: 17px;
  line-height: 1.35;
}

.tk999-benefits p {
  margin: 8px 0 0;
  color: var(--tk-muted);
  font-size: 14px;
}

.tk999-category-page .tk999-benefits {
  grid-template-columns: 1fr;
}

.tk999-category-page .tk999-benefits div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  text-align: left;
}

.tk999-category-page .tk999-benefits b {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.tk999-category-page .tk999-benefits strong,
.tk999-category-page .tk999-benefits p {
  grid-column: 2;
}

.tk999-category-page .tk999-benefits p {
  font-size: 15px;
}

.tk999-link-panel {
  position: relative;
  overflow: hidden;
}

.tk999-link-panel::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(233, 39, 53, .28), transparent 68%);
  pointer-events: none;
}

.tk999-url {
  display: block;
  margin: 22px 0;
  padding: 14px 16px;
  border: 1px solid rgba(34, 215, 207, .38);
  border-radius: var(--tk-radius);
  color: var(--tk-cyan);
  background: rgba(34, 215, 207, .06);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.tk999-checklist {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.tk999-checklist li {
  position: relative;
  padding-left: 26px;
  color: #eee4d5;
  font-weight: 700;
}

.tk999-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tk-gold);
  box-shadow: 0 0 16px rgba(255, 207, 98, .7);
}

.tk999-game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tk999-game-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  padding: 174px 20px 20px;
  transition: transform .2s ease, border-color .2s ease;
}

.tk999-game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 207, 98, .62);
}

.tk999-game-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 150px;
  background: url("tk999-card-collage.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 207, 98, .26);
}

.tk999-game-card:nth-child(2)::before {
  background-position: 12% center;
}

.tk999-game-card:nth-child(3)::before {
  background-position: 70% center;
}

.tk999-game-card:nth-child(4)::before {
  background-position: 100% center;
}

.tk999-game-card strong {
  display: block;
  color: var(--tk-gold);
  font-size: 20px;
  line-height: 1.32;
  font-weight: 1000;
}

.tk999-game-card p {
  margin: 10px 0 0;
  color: var(--tk-muted);
  font-size: 15px;
}

.tk999-game-card em {
  display: inline-block;
  margin-top: 14px;
  color: var(--tk-cyan);
  font-style: normal;
  font-weight: 900;
}

.tk999-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tk999-step {
  padding: 24px;
}

.tk999-step b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: var(--tk-radius);
  color: #fff;
  background: linear-gradient(135deg, #8b0610, var(--tk-red-2));
}

.tk999-step h3,
.tk999-faq-card h3,
.tk999-post-card h3 {
  margin: 0;
  color: var(--tk-gold);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 1000;
  letter-spacing: 0;
}

.tk999-step p,
.tk999-faq-card p {
  margin: 10px 0 0;
  color: var(--tk-muted);
}

.tk999-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tk999-post-card {
  overflow: hidden;
}

.tk999-post-thumb {
  display: block;
  min-height: 178px;
  background: url("tk999-card-collage.png") center / cover no-repeat;
}

.tk999-post-card:nth-child(2) .tk999-post-thumb {
  background-position: left center;
}

.tk999-post-card:nth-child(3) .tk999-post-thumb {
  background-position: right center;
}

.tk999-post-body {
  padding: 20px;
}

.tk999-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--tk-cyan);
  font-size: 13px;
  font-weight: 900;
}

.tk999-post-card p {
  margin: 10px 0 0;
  color: var(--tk-muted);
  font-size: 15px;
}

.tk999-readmore {
  display: inline-flex;
  margin-top: 14px;
  color: var(--tk-gold);
  font-weight: 900;
}

.tk999-pagination,
.tk999-pagebreak {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.tk999-pagination a,
.tk999-pagination span,
.tk999-pagination li,
.tk999-pagebreak a,
.tk999-pagebreak span,
.tk999-pagebreak li {
  min-width: 42px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 207, 98, .34);
  border-radius: var(--tk-radius);
  color: var(--tk-gold);
  background: rgba(255, 255, 255, .04);
  list-style: none;
  font-weight: 900;
}

.tk999-pagination .thisclass,
.tk999-pagination a:hover,
.tk999-pagebreak a:hover {
  color: var(--tk-dark-text);
  background: var(--tk-gold);
}

.tk999-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tk999-faq-card {
  padding: 24px;
}

.tk999-final {
  padding: 42px 0;
  background:
    linear-gradient(90deg, rgba(233, 39, 53, .88), rgba(8, 9, 12, .9)),
    url("tk999-card-collage.png") center / cover no-repeat;
}

.tk999-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tk999-final h2 {
  color: #fff;
}

.tk999-final p {
  max-width: 720px;
  color: #fff2df;
}

.tk999-footer {
  padding: 42px 0 24px;
  color: var(--tk-muted);
  background: #070709;
  border-top: 1px solid rgba(255, 207, 98, .22);
}

.tk999-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, .7fr));
  gap: 28px;
}

.tk999-footer .tk999-logo {
  margin-bottom: 14px;
  font-size: 34px;
}

.tk999-footer h3 {
  margin: 0 0 12px;
  color: var(--tk-gold);
  font-size: 18px;
}

.tk999-footer a:not(.tk999-logo) {
  display: block;
  margin: 8px 0;
  color: var(--tk-muted);
}

.tk999-footer a:hover {
  color: var(--tk-gold);
}

.tk999-copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  font-size: 14px;
}

.tk999-article-hero {
  padding: 58px 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .96), rgba(5, 5, 6, .65)),
    url("tk999-hero.png") right center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 207, 98, .22);
}

.tk999-article-hero h1 {
  max-width: 860px;
  color: var(--tk-gold);
}

.tk999-article-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #f4e7d6;
  font-size: 18px;
  font-weight: 650;
}

.tk999-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

.tk999-article-card {
  padding: 34px;
}

.tk999-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tk999-article-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 207, 98, .28);
  border-radius: var(--tk-radius);
  color: var(--tk-cyan);
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
  font-weight: 900;
}

.tk999-article-body {
  color: #f2eadf;
  font-size: 18px;
}

.tk999-article-body h2,
.tk999-article-body h3,
.tk999-column-title {
  margin: 28px 0 12px;
  color: var(--tk-gold);
  line-height: 1.28;
  font-weight: 1000;
}

.tk999-article-body p {
  margin: 0 0 18px;
}

.tk999-article-body a {
  color: var(--tk-cyan);
  font-weight: 900;
}

.tk999-article-body img {
  max-width: 100%;
  height: auto;
  margin: 22px auto;
  border-radius: var(--tk-radius);
  border: 1px solid rgba(255, 207, 98, .26);
}

.tk999-prenext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.tk999-prenext div,
.tk999-article-tools a,
.tk999-article-tools button {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 207, 98, .28);
  border-radius: var(--tk-radius);
  color: var(--tk-gold);
  background: rgba(255, 255, 255, .04);
  font: inherit;
}

.tk999-article-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tk999-article-tools button {
  cursor: pointer;
}

.tk999-sidebar {
  position: sticky;
  top: 150px;
  align-self: start;
  padding: 24px;
}

.tk999-sidebar h2 {
  color: var(--tk-gold);
  font-size: 24px;
}

.tk999-sidebar ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tk999-sidebar li {
  padding: 12px;
  border: 1px solid rgba(255, 207, 98, .18);
  border-radius: var(--tk-radius);
  color: var(--tk-muted);
  background: rgba(255, 255, 255, .03);
}

.tk999-sidebar a {
  color: var(--tk-muted);
}

.tk999-sidebar a:hover {
  color: var(--tk-gold);
}

@media (max-width: 1060px) {
  .tk999-hero-grid,
  .tk999-overview,
  .tk999-article-layout {
    grid-template-columns: 1fr;
  }

  .tk999-hero-space {
    display: none;
  }

  .tk999-hero {
    background:
      linear-gradient(180deg, rgba(5, 5, 6, .94) 0%, rgba(5, 5, 6, .78) 56%, rgba(5, 5, 6, .94) 100%),
      url("tk999-hero.png") center / cover no-repeat;
  }

  .tk999-benefits,
  .tk999-game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tk999-news-grid,
  .tk999-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tk999-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tk999-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .tk999-container {
    width: min(100% - 28px, 1180px);
  }

  .tk999-topbar {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .tk999-logo {
    font-size: 34px;
  }

  .tk999-actions {
    width: 100%;
  }

  .tk999-actions .tk999-btn {
    flex: 1;
    min-width: 0;
    padding: 0 12px;
  }

  .tk999-nav-inner {
    justify-content: flex-start;
  }

  .tk999-hero-grid {
    min-height: auto;
    padding: 46px 0 48px;
  }

  .tk999-hero h1 {
    font-size: 38px;
  }

  .tk999-hero p {
    font-size: 17px;
  }

  .tk999-official {
    grid-template-columns: 1fr;
  }

  .tk999-section {
    padding: 42px 0;
  }

  .tk999-section-head {
    display: block;
  }

  .tk999-section-head h2,
  .tk999-panel h2,
  .tk999-link-panel h2,
  .tk999-final h2,
  .tk999-article-hero h1 {
    font-size: 29px;
  }

  .tk999-panel,
  .tk999-link-panel,
  .tk999-article-card {
    padding: 22px;
  }

  .tk999-benefits,
  .tk999-game-grid,
  .tk999-steps,
  .tk999-news-grid,
  .tk999-faq-grid,
  .tk999-footer-grid,
  .tk999-prenext {
    grid-template-columns: 1fr;
  }

  .tk999-game-card {
    min-height: 268px;
  }

  .tk999-final-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .tk999-article-hero {
    padding: 44px 0;
  }
}
