/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #1a1a2e;
  --bg-secondary: #16213e;
  --bg-card: #1c1c36;
  --bg-dark: #0f0f23;
  --bg-input: #2a2a4a;
  --accent-blue: #2d7cf6;
  --accent-green: #00c853;
  --accent-purple: #9c27b0;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  --border-color: #2a2a4a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.header--scrolled {
  background: rgba(15, 15, 35, 0.98);
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link--active {
  background: var(--accent-blue);
  color: #fff;
}

.nav-link--active:hover {
  background: #3585ff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn--primary {
  background: var(--accent-green);
  color: #fff;
}

.btn--primary:hover {
  background: #00e05a;
  transform: translateY(-1px);
}

.btn--blue {
  background: var(--accent-blue);
  color: #fff;
}

.btn--blue:hover {
  background: #3585ff;
  transform: translateY(-1px);
}

/* ========== MAIN CONTENT ========== */
.main {
  padding-top: 68px;
}

/* ========== SUB NAV ========== */
.subnav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 24px 0;
  display: flex;
  gap: 8px;
}

.subnav-link {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.subnav-link:hover {
  color: #fff;
}

.subnav-link--active {
  background: var(--accent-blue);
  color: #fff;
}

/* ========== HERO SECTION ========== */
.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
}

.hero-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
}

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

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.hero-banner-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 400px;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: #fff;
  color: #000;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
  transition: all 0.2s ease;
}

.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.hero-sidebar {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-sidebar-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-sidebar-provider {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 16px;
  opacity: 0.85;
}

.game-of-week {
  width: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.game-of-week:hover {
  transform: scale(1.04);
}

.game-of-week img {
  width: 100%;
}

.banner-play-btn {
  width: 100%;
  padding: 14px;
  background: rgba(255,255,255,0.95);
  color: #1a1a2e;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.banner-play-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ========== SEARCH BAR ========== */
.search-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.search-bar {
  flex: 1;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-bar input:focus {
  border-color: var(--accent-blue);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.providers-btn {
  padding: 14px 24px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.providers-btn:hover {
  border-color: var(--accent-blue);
  color: #fff;
}

/* ========== CATEGORY TABS ========== */
.category-tabs {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 20px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-input);
  border: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.category-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.category-tab--active {
  background: var(--accent-blue);
  color: #fff;
}

.category-tab img {
  width: 18px;
  height: 18px;
}

/* ========== GAME SECTIONS ========== */
.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 32px;
}

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

.section-title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title img {
  height: 22px;
}

.section-title-icon {
  width: 24px;
  height: 24px;
}

.section-see-all {
  padding: 8px 20px;
  background: var(--bg-input);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.section-see-all:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.game-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.game-card:hover .game-card-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.game-card-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s ease;
}

.game-card:hover .game-card-play {
  opacity: 1;
  transform: scale(1);
}

.game-card-play svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 3px;
}

/* ========== JACKPOT SECTION ========== */
.jackpot {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 32px;
}

.jackpot-banner {
  background: linear-gradient(135deg, #e91e63, #9c27b0, #7b1fa2);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.jackpot-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.jackpot-info {
  position: relative;
  z-index: 1;
}

.jackpot-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 8px;
}

.jackpot-amount {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.jackpot-btn {
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.jackpot-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.jackpot-games {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.jackpot-game {
  width: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.jackpot-game:hover {
  transform: translateY(-4px);
}

.jackpot-game img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ========== SEO TEXT ========== */
.seo-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 24px;
}

.seo-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border-color);
}

.seo-content h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.3;
  background: linear-gradient(135deg, #fff 60%, var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-content > h1 + p {
  margin-bottom: 32px;
}

.seo-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text-primary);
  padding-left: 16px;
  border-left: 3px solid var(--accent-blue);
  line-height: 1.3;
}

.seo-content h2:first-of-type {
  margin-top: 28px;
}

.seo-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: #c8c8e0;
}

.seo-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.seo-content strong {
  color: var(--accent-green);
  font-weight: 700;
}

/* SEO Table */
.seo-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-content thead th {
  background: var(--accent-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
  text-align: left;
  letter-spacing: 0.02em;
}

.seo-content tbody td {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-content tbody tr:last-child td {
  border-bottom: none;
}

.seo-content tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.seo-content tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.15);
}

.seo-content tbody tr:hover {
  background: rgba(45, 124, 246, 0.08);
}

.seo-content tbody td:first-child {
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .seo-content thead th,
  .seo-content tbody td {
    padding: 10px 14px;
    font-size: 13px;
  }
  .seo-content tbody td:first-child {
    white-space: normal;
  }
}

/* SEO Lists */
.seo-content ol,
.seo-content ul {
  margin: 12px 0 16px;
  padding-left: 24px;
  color: var(--text-secondary);
}

.seo-content ol {
  list-style: decimal;
}

.seo-content ul {
  list-style: disc;
}

.seo-content li {
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 6px;
  padding-left: 4px;
}

.seo-content li::marker {
  color: var(--accent-blue);
}

.seo-block-text ol,
.seo-block-text ul {
  margin: 10px 0 14px;
  padding-left: 22px;
}

/* SEO Date (top of content) */
.seo-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(45, 124, 246, 0.08);
  border: 1px solid rgba(45, 124, 246, 0.15);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
}

.seo-date svg {
  flex-shrink: 0;
  color: var(--accent-blue);
}

.seo-date time {
  color: var(--text-secondary);
}

/* Two-column blocks: image + text side by side */
.seo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin: 32px 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.seo-block--reverse {
  direction: rtl;
}

.seo-block--reverse > * {
  direction: ltr;
}

.seo-block-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 600px;
  cursor: pointer;
  aspect-ratio: 3 / 2;
}

.seo-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.seo-block-image:hover img {
  transform: scale(1.03);
}

.seo-block-text h2 {
  margin-top: 0;
}

.seo-block-text h3:first-child {
  margin-top: 0;
}

/* Plain text sections between blocks */
.seo-plain {
  margin: 8px 0;
}

@media (max-width: 900px) {
  .seo-block {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .seo-block--reverse {
    direction: ltr;
  }
  .seo-block-image {
    max-width: 100%;
  }
  .seo-content {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .seo-content {
    padding: 20px;
  }
  .seo-block {
    padding: 16px;
    gap: 20px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Support bar */
.footer-support {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  margin-bottom: 40px;
}

.support-card {
  background: var(--bg-input);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.support-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.support-info h4,
.support-title {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-card-info h4,
.app-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.support-badge {
  background: var(--accent-green);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.support-info p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.support-btn {
  padding: 12px 28px;
  background: var(--accent-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.support-btn:hover {
  background: #3585ff;
  transform: translateY(-1px);
}

.contact-card {
  background: var(--bg-input);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-card-email {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* Footer columns */
.footer-columns {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-blue);
}

.footer-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* App download */
.footer-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.app-card {
  background: linear-gradient(135deg, #7c4dff, #b388ff);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.app-card::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.app-card-info {
  position: relative;
  z-index: 1;
}

.app-card-info p {
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 14px;
}

.app-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a2e;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.app-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

.app-card-image {
  position: relative;
  z-index: 1;
}

.app-card-image img {
  height: 120px;
  width: auto;
}

/* Social & bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

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

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  overflow: hidden;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link svg {
  width: 42px;
  height: 42px;
  display: block;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-age {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-blue);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr 280px;
  }
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .jackpot-games {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-sidebar {
    display: none;
  }
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-support {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-apps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 10px 16px;
  }
  .hero {
    padding: 12px 16px;
  }
  .hero-banner {
    min-height: 220px;
  }
  .hero-banner-title {
    font-size: 22px;
  }
  .hero-banner-overlay {
    padding: 24px;
  }
  .section {
    padding: 0 16px 24px;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .jackpot-banner {
    padding: 28px 20px;
  }
  .jackpot-amount {
    font-size: 28px;
  }
  .search-section {
    padding: 16px;
  }
  .category-tabs {
    padding: 0 16px 16px;
  }
  .seo-content {
    padding: 24px;
  }
  .footer-inner {
    padding: 28px 16px;
  }
}