:root {
  --color-bg-primary: #0f1117;
  --color-bg-secondary: #0d111b;
  --color-bg-alt: #141923;
  --color-border: #1f2330;
  --color-border-light: #242a36;
  --color-text-primary: #ffffff;
  --color-text-secondary: #c4cbda;
  --color-text-muted: #9aa3b8;
  --color-accent: #ff2d46;
  --color-accent-hover: #ff3b5a;
  --color-accent-secondary: #f5c542;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

.dk-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.dk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

.dk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.dk-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dk-menu-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-alt);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 0 8px;
  cursor: pointer;
}

.dk-menu-btn span {
  height: 2px;
  width: 100%;
  background: var(--color-text-secondary);
  border-radius: 2px;
}

.dk-logo img {
  height: 32px;
  width: auto;
}

.dk-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.dk-nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dk-nav-link {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s;
}

.dk-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.dk-nav-link:hover {
  color: var(--color-text-primary);
}

.dk-nav-link:hover::after {
  opacity: 1;
}

.dk-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.dk-btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--color-text-primary);
}

.dk-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.dk-btn-primary {
  background: linear-gradient(90deg, #f8164e 0%, #ff3b66 100%);
  color: var(--color-text-primary);
  border: 0;
}

.dk-btn-primary:hover {
  background: linear-gradient(90deg, #ff2d5a 0%, #ff4a75 100%);
  box-shadow: 0 4px 12px rgba(255, 45, 70, 0.3);
}

.dk-btn-cta {
  background: var(--color-accent);
  color: var(--color-text-primary);
  padding: 12px 40px;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(255, 45, 70, 0.25);
}

.dk-btn-cta:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 12px 35px rgba(255, 45, 70, 0.35);
}

.dk-btn-full {
  width: 100%;
}

/* Mobile Menu */
.dk-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.dk-mobile-menu.active {
  display: block;
}

.dk-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 12, 0.6);
  backdrop-filter: blur(2px);
}

.dk-mobile-panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(360px, 85%);
  background: var(--color-bg-secondary);
  border-right: 1px solid var(--color-border);
  padding: 16px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.dk-mobile-menu.active .dk-mobile-panel {
  transform: translateX(0);
}

.dk-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 16px;
}

.dk-mobile-close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-alt);
  color: var(--color-text-secondary);
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 0;
}

.dk-mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.dk-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dk-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  border-radius: 8px;
  transition: background 0.2s;
}

.dk-mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.dk-mobile-link img {
  width: 24px;
  height: 24px;
}

/* Main */
.dk-main {
  flex: 1;
}

/* Hero */
.dk-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 16px;
  margin: 16px;
  border: 1px solid var(--color-border-light);
}

.dk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dk-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 8, 12, 0.92) 0%, rgba(6, 8, 12, 0.55) 46%, rgba(6, 8, 12, 0.18) 72%, rgba(6, 8, 12, 0.08) 100%);
  z-index: 1;
}

.dk-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.dk-hero-content {
  max-width: 580px;
  padding: 40px 0;
}

.dk-hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.dk-hero-text {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
  font-weight: 600;
}

/* Categories */
.dk-categories {
  padding: 16px 0;
}

.dk-categories-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.dk-categories-wrap {
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  background: var(--color-bg-alt);
  padding: 12px;
}

.dk-categories-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
}

.dk-categories-scroll::-webkit-scrollbar {
  height: 4px;
}

.dk-categories-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.dk-categories-scroll::-webkit-scrollbar-thumb {
  background: var(--color-border-light);
  border-radius: 4px;
}

.dk-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 92px;
  padding: 10px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: rgba(25, 31, 42, 0.8);
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  scroll-snap-align: start;
}

.dk-category:hover {
  border-color: var(--color-accent);
  color: var(--color-text-primary);
}

.dk-category img {
  width: 22px;
  height: 22px;
}

/* Sections */
.dk-section {
  padding: 48px 16px;
}

.dk-section-alt {
  background: var(--color-bg-secondary);
}

.dk-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dk-section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  text-align: center;
}

.dk-section-intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features */
.dk-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dk-feature {
  padding: 24px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
}

.dk-feature-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.dk-feature-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.dk-feature-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Bonuses */
.dk-bonuses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dk-bonus-card {
  padding: 24px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
  display: flex;
  flex-direction: column;
}

.dk-bonus-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent);
  color: var(--color-text-primary);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.dk-bonus-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--color-accent-secondary);
}

.dk-bonus-extras {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.dk-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.dk-bonus-list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  padding-left: 20px;
  position: relative;
}

.dk-bonus-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent-secondary);
  font-weight: 700;
}

/* Game Types */
.dk-game-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.dk-game-type-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}

.dk-game-type-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Games Grid */
.dk-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.dk-game-card {
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dk-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dk-game-image {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1f2e 0%, #0f1319 100%);
}

.dk-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.dk-game-card:hover .dk-game-image img {
  transform: scale(1.05);
}

.dk-game-card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding: 20px 20px 12px;
}

.dk-game-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  padding: 0 20px 20px;
}

.dk-game-card .dk-btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* Reviews */
.dk-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dk-rating-summary {
  max-width: 600px;
  margin: 0 auto 48px;
}

.dk-rating-box {
  padding: 32px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
  text-align: center;
}

.dk-rating-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-text-primary);
}

.dk-rating-score {
  margin: 0 0 24px;
}

.dk-rating-score strong {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-accent-secondary);
  margin-bottom: 8px;
}

.dk-rating-stars {
  display: block;
  font-size: 24px;
  color: var(--color-accent-secondary);
  margin-bottom: 8px;
}

.dk-rating-count {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
}

.dk-rating-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dk-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.dk-rating-row > span:first-child {
  width: 40px;
  text-align: right;
  color: var(--color-text-secondary);
}

.dk-rating-row > span:last-child {
  width: 40px;
  color: var(--color-text-secondary);
}

.dk-rating-bar {
  flex: 1;
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.dk-rating-bar-fill {
  height: 100%;
  background: var(--color-accent-secondary);
  border-radius: 4px;
  transition: width 0.3s;
}

.dk-rating-bar-mid {
  background: #f5a623;
}

.dk-rating-bar-low {
  background: #e74c3c;
}

.dk-reviews-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dk-reviews-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
}

.dk-reviews-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.dk-reviews-carousel .dk-review {
  min-width: 100%;
  width: 100%;
  padding: 32px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
  flex-shrink: 0;
  box-sizing: border-box;
}

.dk-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dk-review-author {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--color-text-primary);
}

.dk-review-stars {
  font-size: 18px;
  color: var(--color-accent-secondary);
  margin: 0;
}

.dk-review-location {
  font-size: 14px;
  color: var(--color-text-muted);
}

.dk-review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.dk-review-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-alt);
  color: var(--color-text-primary);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.dk-review-nav-btn:hover:not(:disabled) {
  border-color: var(--color-accent);
  background: rgba(255, 45, 70, 0.1);
  transform: scale(1.05);
}

.dk-review-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.dk-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dk-review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border-light);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.dk-review-dot:hover {
  background: var(--color-text-muted);
}

.dk-review-dot.active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 5px;
}

.dk-review {
  padding: 24px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
}

/* FAQ */
.dk-faq {
  max-width: 800px;
  margin: 0 auto;
}

.dk-faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
  margin-bottom: 12px;
  overflow: hidden;
}

.dk-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  color: var(--color-text-primary);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.dk-faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.dk-faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.dk-faq-item.active .dk-faq-icon {
  transform: rotate(45deg);
}

.dk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dk-faq-item.active .dk-faq-answer {
  max-height: 500px;
}

.dk-faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Footer */
.dk-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 32px 16px;
}

.dk-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dk-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.dk-footer-logo img {
  height: 28px;
  width: auto;
}

.dk-footer-social {
  display: flex;
  gap: 10px;
}

.dk-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.dk-social-link:hover {
  border-color: var(--color-accent);
  background: rgba(255, 45, 70, 0.1);
}

.dk-social-link img {
  width: 18px;
  height: 18px;
}

.dk-footer-divider {
  height: 1px;
  background: var(--color-border);
  margin: 24px 0;
}

.dk-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.dk-footer-col-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.dk-footer-link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}

.dk-footer-link:hover {
  color: var(--color-text-primary);
}

.dk-footer-payments,
.dk-footer-reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
}

.dk-payment-img,
.dk-review-img {
  height: 22px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(0.3);
  transition: all 0.2s;
}

.dk-payment-img:hover,
.dk-review-img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.dk-footer-legal {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dk-footer-age {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.dk-footer-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

.dk-footer-copyright {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 16px 0 0;
}

/* Registration */
.dk-reg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.dk-reg-block {
  padding: 28px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
}

.dk-reg-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
}

.dk-reg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.dk-reg-list li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.dk-reg-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.dk-reg-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 16px 0 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

/* Payments */
.dk-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.dk-payment-block {
  padding: 28px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
}

.dk-payment-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
}

.dk-payment-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
}

.dk-payment-text:last-child {
  margin-bottom: 0;
}

/* Responsible Gaming */
.dk-responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.dk-responsible-item {
  padding: 28px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
}

.dk-responsible-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
}

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

.dk-responsible-list li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.dk-responsible-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent-secondary);
  font-weight: 700;
}

.dk-responsible-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Review Table */
.dk-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
}

.dk-review-table {
  width: 100%;
  border-collapse: collapse;
}

.dk-review-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  line-height: 1.6;
}

.dk-review-table tr:last-child td {
  border-bottom: 0;
}

.dk-table-label {
  font-weight: 700;
  color: var(--color-text-primary);
  width: 35%;
  vertical-align: top;
}

.dk-table-value {
  color: var(--color-text-secondary);
  width: 65%;
}

/* Legal Pages */
.dk-legal-container {
  max-width: 900px;
}

.dk-legal-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 32px;
  text-align: center;
}

.dk-legal-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.dk-legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 40px 0 20px;
}

.dk-legal-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 32px 0 16px;
}

.dk-legal-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 24px 0 12px;
}

.dk-legal-content p {
  margin: 0 0 16px;
}

.dk-legal-content ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.dk-legal-content li {
  margin-bottom: 8px;
}

.dk-legal-content strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

/* Contact Page */
.dk-contact-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 32px;
  text-align: center;
}

.dk-contact-hero {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.dk-contact-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.dk-contact-image img {
  width: 100%;
  height: auto;
  display: block;
}

.dk-contact-subtitle {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--color-text-primary);
}

.dk-contact-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
}

.dk-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.dk-contact-method {
  padding: 32px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
  text-align: center;
}

.dk-contact-method-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.dk-contact-method-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-text-primary);
}

.dk-contact-method-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
}

.dk-contact-email {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 16px;
  text-decoration: none;
}

.dk-contact-email:hover {
  color: var(--color-accent-hover);
}

.dk-contact-method-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 16px 0 0;
}

.dk-help-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.dk-help-topic {
  padding: 28px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
}

.dk-help-topic-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-text-primary);
}

.dk-help-topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dk-help-topic-list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.dk-help-topic-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.dk-before-contact-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 32px;
  text-align: center;
}

.dk-info-checklist {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.dk-checklist-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
}

.dk-checklist-icon {
  font-size: 32px;
  color: var(--color-accent-secondary);
  flex-shrink: 0;
}

.dk-checklist-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-text-primary);
}

.dk-checklist-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.dk-commitment-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 32px;
  text-align: center;
}

.dk-commitment-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.dk-commitment-feature {
  padding: 24px;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-alt);
  text-align: center;
}

.dk-commitment-feature-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-text-primary);
}

.dk-commitment-feature-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .dk-nav {
    display: none;
  }

  .dk-hero-title {
    font-size: 32px;
  }

  .dk-hero-text {
    font-size: 16px;
  }

  .dk-footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .dk-reg-grid,
  .dk-payment-grid,
  .dk-responsible-grid {
    grid-template-columns: 1fr;
  }

  .dk-table-label {
    width: 40%;
  }

  .dk-table-value {
    width: 60%;
  }

  .dk-legal-title {
    font-size: 32px;
  }

  .dk-legal-content h2 {
    font-size: 24px;
  }

  .dk-legal-content h3 {
    font-size: 20px;
  }

  .dk-contact-title {
    font-size: 32px;
  }

  .dk-contact-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dk-contact-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .dk-contact-subtitle {
    font-size: 24px;
  }

  .dk-help-topics,
  .dk-contact-methods,
  .dk-commitment-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dk-hero {
    min-height: 480px;
    align-items: flex-end;
  }

  .dk-hero::before {
    background: linear-gradient(180deg, rgba(6, 8, 12, 0.78) 0%, rgba(6, 8, 12, 0.35) 55%, rgba(6, 8, 12, 0.2) 100%);
  }

  .dk-hero-content {
    padding: 24px 0;
  }

  .dk-hero-title {
    font-size: 28px;
  }

  .dk-section {
    padding: 32px 16px;
  }

  .dk-section-title {
    font-size: 28px;
  }

  .dk-section-intro {
    font-size: 16px;
  }

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

  .dk-footer-legal {
    flex-direction: column;
  }

  .dk-reviews-carousel {
    flex-direction: column;
    gap: 20px;
  }

  .dk-review-nav-btn {
    display: none;
  }

  .dk-reviews-viewport {
    width: 100%;
  }

  .dk-reviews-carousel .dk-review {
    padding: 24px;
  }

  .dk-review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .dk-review-author {
    font-size: 16px;
  }

  .dk-review-stars {
    font-size: 16px;
  }

  .dk-rating-box {
    padding: 24px;
  }

  .dk-rating-score strong {
    font-size: 36px;
  }

  .dk-rating-stars {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .dk-header-inner {
    padding: 10px 12px;
  }

  .dk-menu-btn {
    width: 34px;
    height: 34px;
  }

  .dk-logo img {
    height: 28px;
  }

  .dk-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .dk-hero {
    margin: 12px;
  }

  .dk-categories {
    padding: 12px 0;
  }

  .dk-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
