/* ============================================
   EVA Play Casino — Styles
   ============================================ */

:root {
  --bg-body: #0a0a12;
  --bg-surface: #12121e;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222240;
  --bg-elevated: #252542;

  --accent: #f7b731;
  --accent-hover: #f5a623;
  --accent-glow: rgba(247, 183, 49, 0.25);
  --accent-2: #e84393;
  --accent-3: #6c5ce7;
  --green: #00b894;
  --red: #e74c3c;

  --text-primary: #f0f0f5;
  --text-secondary: #9090b0;
  --text-muted: #606080;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px var(--accent-glow);

  --font-primary: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-max: 1280px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #e8a020);
  color: #0a0a12;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(247, 183, 49, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ============================================
   Top Bar
   ============================================ */

.top-bar {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 6px 0;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar__link:hover {
  color: var(--accent);
}

/* ============================================
   Header
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: #fff;
}

.logo__accent {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav__link--active {
  color: var(--accent);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: var(--accent-2);
  top: -200px;
  right: -100px;
}

.hero__glow--2 {
  width: 500px;
  height: 500px;
  background: var(--accent-3);
  bottom: -200px;
  left: -100px;
}

.hero__particles {
  position: absolute;
  inset: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(247, 183, 49, 0.12);
  border: 1px solid rgba(247, 183, 49, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-value {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__cards {
  position: relative;
  width: 300px;
  height: 380px;
}

.hero__card {
  position: absolute;
  width: 180px;
  height: 260px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  animation: cardFloat 4s ease-in-out infinite;
}

.hero__card--1 {
  background: linear-gradient(135deg, #1a1a3e, #2a2a55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  top: 20px;
  left: 0;
  transform: rotate(-12deg);
  z-index: 1;
  color: var(--text-primary);
  animation-delay: 0s;
}

.hero__card--2 {
  background: linear-gradient(135deg, #3a1030, #5a1848);
  border: 1px solid rgba(255, 255, 255, 0.08);
  top: 0;
  left: 60px;
  transform: rotate(2deg);
  z-index: 2;
  color: var(--accent-2);
  animation-delay: 0.5s;
}

.hero__card--3 {
  background: linear-gradient(135deg, var(--accent), #e8a020);
  top: 40px;
  left: 120px;
  transform: rotate(14deg);
  z-index: 3;
  color: #0a0a12;
  animation-delay: 1s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-15px) rotate(var(--rot, 0deg)); }
}

.hero__card--1 { --rot: -12deg; }
.hero__card--2 { --rot: 2deg; }
.hero__card--3 { --rot: 14deg; }

/* ============================================
   Ticker
   ============================================ */

.ticker {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  padding: 10px 0;
  overflow: hidden;
}

.ticker__track {
  display: flex;
}

.ticker__content {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  color: #0a0a12;
  font-weight: 600;
  font-size: 0.9rem;
}

.ticker__sep {
  opacity: 0.5;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Categories
   ============================================ */

.categories {
  padding: 60px 0 20px;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.category-card__icon {
  font-size: 2.5rem;
}

.category-card__name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.category-card__count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   Section Header
   ============================================ */

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 700;
}

.section-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
}

.section-link:hover {
  text-decoration: underline;
}

/* Tabs */
.section-tabs {
  display: flex;
  gap: 8px;
}

.tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.tab:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.tab--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a12;
}

/* ============================================
   Games Grid
   ============================================ */

.games-section {
  padding: 40px 0 60px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.game-card__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.game-card:hover .game-card__overlay {
  opacity: 1;
}

.game-card__info {
  padding: 12px;
}

.game-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card__provider {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.game-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
}

.game-card__badge--hot {
  background: var(--red);
  color: #fff;
}

.game-card__badge--new {
  background: var(--green);
  color: #fff;
}

.game-card__badge--jackpot {
  background: var(--accent);
  color: #0a0a12;
}

/* ============================================
   Providers
   ============================================ */

.providers {
  padding: 40px 0 60px;
}

.providers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.provider-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.provider-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ============================================
   Bonuses
   ============================================ */

.bonuses {
  padding: 40px 0 60px;
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.bonus-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.bonus-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.bonus-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: rgba(247, 183, 49, 0.15);
  border: 1px solid rgba(247, 183, 49, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.bonus-card__visual {
  font-size: 3rem;
  margin-bottom: 8px;
}

.bonus-card__title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.bonus-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex-grow: 1;
}

/* ============================================
   Winners
   ============================================ */

.winners {
  padding: 40px 0 60px;
}

.winners__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.winner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s;
}

.winner-item:hover {
  border-color: var(--green);
}

.winner-item__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.winner-item__info {
  flex-grow: 1;
  min-width: 0;
}

.winner-item__name {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-item__game {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.winner-item__amount {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--green);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ============================================
   Features
   ============================================ */

.features {
  padding: 40px 0 60px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card__title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   Payments
   ============================================ */

.payments {
  padding: 40px 0 60px;
}

.payments__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.payment-badge {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer__about {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer__links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__badge {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   SEO Text
   ============================================ */

.seo {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.seo__content {
  max-width: 960px;
  margin: 0 auto;
}

.seo__title {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.seo__content h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 14px;
}

.seo__content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.seo__content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.seo__content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.seo__content ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 8px;
}

.seo__content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  top: 3px;
}

/* ============================================
   Particles (decorative dots in hero)
   ============================================ */

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
  animation: particlePulse 3s ease-in-out infinite;
}

@keyframes particlePulse {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.3); }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .nav.open {
    display: flex;
  }

  .nav__link {
    padding: 12px 16px;
    width: 100%;
    text-align: left;
    border-radius: var(--radius-sm);
  }

  .burger {
    display: flex;
  }

  .header__actions .btn--outline {
    display: none;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero {
    padding: 50px 0 40px;
    min-height: auto;
  }

  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .category-card {
    padding: 16px 10px;
  }

  .category-card__icon {
    font-size: 1.8rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bonuses__grid {
    grid-template-columns: 1fr;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-tabs {
    overflow-x: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__stats {
    gap: 24px;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .game-card__info {
    padding: 8px 10px;
  }

  .game-card__name {
    font-size: 0.82rem;
  }
}

/* ============================================
   Scrollbar
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ============================================
   Selection
   ============================================ */

::selection {
  background: var(--accent);
  color: #0a0a12;
}
