/**
 * PH365 Layout Stylesheet
 * All classes use gdc8- prefix for namespace isolation
 * Color palette: #F4A460 | #273746 | #CD853F | #FFF8DC | #DDA0DD
 * Mobile-first design, max-width 430px
 */

/* CSS Custom Properties */
:root {
  --gdc8-primary: #F4A460;
  --gdc8-bg: #273746;
  --gdc8-bg-dark: #1a2a36;
  --gdc8-bg-card: #2c3e50;
  --gdc8-accent: #CD853F;
  --gdc8-text: #FFF8DC;
  --gdc8-text-muted: #c4b99a;
  --gdc8-pink: #DDA0DD;
  --gdc8-white: #ffffff;
  --gdc8-border: #3d5166;
  --gdc8-success: #4CAF50;
  --gdc8-warning: #FF9800;
  --gdc8-radius: 8px;
  --gdc8-radius-sm: 4px;
  --gdc8-radius-lg: 16px;
  --gdc8-shadow: 0 2px 12px rgba(0,0,0,0.3);
  --gdc8-transition: all 0.3s ease;
  font-size: 62.5%;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--gdc8-bg);
  color: var(--gdc8-text);
  font-size: 1.6rem;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gdc8-primary);
  text-decoration: none;
  transition: var(--gdc8-transition);
}

a:hover {
  color: var(--gdc8-accent);
}

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

/* Container */
.gdc8-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
  width: 100%;
}

.gdc8-wrapper {
  max-width: 430px;
  margin: 0 auto;
  width: 100%;
}

/* ============ HEADER ============ */
.gdc8-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--gdc8-bg-dark) 0%, var(--gdc8-bg) 100%);
  border-bottom: 2px solid var(--gdc8-accent);
  padding: 0;
  height: 56px;
}

.gdc8-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 1rem;
}

.gdc8-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.gdc8-logo img {
  width: 28px;
  height: 28px;
  border-radius: var(--gdc8-radius-sm);
}

.gdc8-logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gdc8-primary);
  letter-spacing: 1px;
}

.gdc8-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gdc8-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: var(--gdc8-radius);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--gdc8-transition);
  text-decoration: none;
  min-height: 36px;
  min-width: 44px;
  text-align: center;
}

.gdc8-btn-register {
  background: linear-gradient(135deg, var(--gdc8-primary), var(--gdc8-accent));
  color: var(--gdc8-bg-dark);
}

.gdc8-btn-register:hover {
  background: linear-gradient(135deg, var(--gdc8-accent), var(--gdc8-primary));
  transform: scale(1.05);
  color: var(--gdc8-bg-dark);
}

.gdc8-btn-login {
  background: transparent;
  color: var(--gdc8-primary);
  border: 2px solid var(--gdc8-primary);
}

.gdc8-btn-login:hover {
  background: var(--gdc8-primary);
  color: var(--gdc8-bg-dark);
}

.gdc8-menu-toggle {
  background: none;
  border: none;
  color: var(--gdc8-text);
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.4rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ MOBILE MENU ============ */
.gdc8-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--gdc8-transition);
}

.gdc8-overlay-active {
  opacity: 1;
  visibility: visible;
}

.gdc8-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--gdc8-bg-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 2rem 0;
}

.gdc8-menu-active {
  right: 0;
}

.gdc8-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gdc8-text);
  font-size: 2.8rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gdc8-menu-links {
  list-style: none;
  padding: 1rem 0;
}

.gdc8-menu-links li {
  border-bottom: 1px solid var(--gdc8-border);
}

.gdc8-menu-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  color: var(--gdc8-text);
  font-size: 1.5rem;
  font-weight: 500;
  transition: var(--gdc8-transition);
}

.gdc8-menu-links a:hover {
  background: var(--gdc8-bg);
  color: var(--gdc8-primary);
  padding-left: 2.4rem;
}

.gdc8-menu-links .material-icons,
.gdc8-menu-links .fas,
.gdc8-menu-links .far,
.gdc8-menu-links .bi {
  font-size: 2rem;
  color: var(--gdc8-primary);
}

/* ============ CAROUSEL ============ */
.gdc8-carousel {
  position: relative;
  width: 100%;
  margin-top: 56px;
  overflow: hidden;
  border-radius: 0 0 var(--gdc8-radius) var(--gdc8-radius);
}

.gdc8-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.gdc8-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.gdc8-slide-active {
  opacity: 1;
}

.gdc8-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gdc8-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gdc8-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,248,220,0.4);
  border: none;
  cursor: pointer;
  transition: var(--gdc8-transition);
}

.gdc8-dot-active {
  background: var(--gdc8-primary);
  transform: scale(1.3);
}

/* ============ MAIN CONTENT ============ */
.gdc8-main {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .gdc8-main {
    padding-bottom: 80px;
  }
}

.gdc8-section {
  padding: 1.5rem 0;
}

.gdc8-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gdc8-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gdc8-accent);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gdc8-section-title .material-icons,
.gdc8-section-title .fas,
.gdc8-section-title .bi {
  font-size: 2.2rem;
}

/* ============ GAME GRID ============ */
.gdc8-game-section {
  margin-bottom: 2rem;
}

.gdc8-game-section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gdc8-primary);
  margin-bottom: 1rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(90deg, var(--gdc8-accent), transparent);
  border-radius: var(--gdc8-radius-sm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gdc8-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.gdc8-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--gdc8-transition);
  padding: 0.4rem;
  border-radius: var(--gdc8-radius);
}

.gdc8-game-card:hover {
  background: var(--gdc8-bg-card);
  transform: translateY(-2px);
}

.gdc8-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--gdc8-radius);
  border: 2px solid var(--gdc8-border);
  transition: var(--gdc8-transition);
}

.gdc8-game-card:hover img {
  border-color: var(--gdc8-primary);
}

.gdc8-game-name {
  font-size: 1.1rem;
  color: var(--gdc8-text);
  margin-top: 0.3rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

/* ============ CONTENT CARDS ============ */
.gdc8-card {
  background: var(--gdc8-bg-card);
  border-radius: var(--gdc8-radius);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--gdc8-border);
  box-shadow: var(--gdc8-shadow);
}

.gdc8-card h2,
.gdc8-card h3 {
  color: var(--gdc8-primary);
  margin-bottom: 0.8rem;
}

.gdc8-card p {
  color: var(--gdc8-text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.gdc8-card ul {
  padding-left: 2rem;
  margin-bottom: 0.8rem;
}

.gdc8-card li {
  color: var(--gdc8-text-muted);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

/* ============ PROMO CTA ============ */
.gdc8-promo-cta {
  background: linear-gradient(135deg, var(--gdc8-primary), var(--gdc8-accent));
  border-radius: var(--gdc8-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
  box-shadow: var(--gdc8-shadow);
}

.gdc8-promo-cta h3 {
  font-size: 2rem;
  color: var(--gdc8-bg-dark);
  margin-bottom: 0.8rem;
}

.gdc8-promo-cta p {
  color: var(--gdc8-bg);
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.gdc8-btn-promo {
  background: var(--gdc8-bg-dark);
  color: var(--gdc8-primary);
  padding: 1rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  border-radius: var(--gdc8-radius);
  border: 2px solid var(--gdc8-primary);
  cursor: pointer;
  transition: var(--gdc8-transition);
  display: inline-block;
  min-height: 48px;
}

.gdc8-btn-promo:hover {
  background: var(--gdc8-primary);
  color: var(--gdc8-bg-dark);
  transform: scale(1.05);
}

/* ============ STATS TABLE ============ */
.gdc8-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.gdc8-stat-item {
  background: var(--gdc8-bg-dark);
  border-radius: var(--gdc8-radius);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--gdc8-border);
}

.gdc8-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gdc8-primary);
}

.gdc8-stat-label {
  font-size: 1.2rem;
  color: var(--gdc8-text-muted);
  margin-top: 0.3rem;
}

/* ============ TESTIMONIALS ============ */
.gdc8-testimonial {
  background: var(--gdc8-bg-dark);
  border-radius: var(--gdc8-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--gdc8-primary);
}

.gdc8-testimonial-text {
  font-style: italic;
  color: var(--gdc8-text);
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.gdc8-testimonial-author {
  font-size: 1.2rem;
  color: var(--gdc8-accent);
  font-weight: 600;
}

/* ============ WINNERS ============ */
.gdc8-winner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gdc8-border);
}

.gdc8-winner-name {
  color: var(--gdc8-text);
  font-weight: 600;
  font-size: 1.3rem;
}

.gdc8-winner-game {
  color: var(--gdc8-text-muted);
  font-size: 1.2rem;
}

.gdc8-winner-amount {
  color: var(--gdc8-primary);
  font-weight: 800;
  font-size: 1.4rem;
}

/* ============ FEATURES LIST ============ */
.gdc8-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.gdc8-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--gdc8-primary), var(--gdc8-accent));
  border-radius: var(--gdc8-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.gdc8-feature-text h4 {
  color: var(--gdc8-primary);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.gdc8-feature-text p {
  color: var(--gdc8-text-muted);
  font-size: 1.3rem;
  line-height: 1.4;
}

/* ============ FAQ ACCORDION ============ */
.gdc8-faq-item {
  background: var(--gdc8-bg-dark);
  border-radius: var(--gdc8-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--gdc8-border);
}

.gdc8-faq-q {
  padding: 1.2rem;
  font-weight: 700;
  color: var(--gdc8-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gdc8-faq-a {
  padding: 0 1.2rem 1.2rem;
  color: var(--gdc8-text-muted);
  font-size: 1.3rem;
  line-height: 1.6;
}

/* ============ PAYMENT GRID ============ */
.gdc8-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.gdc8-payment-item {
  background: var(--gdc8-bg-dark);
  border-radius: var(--gdc8-radius);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gdc8-border);
  font-size: 1.3rem;
  color: var(--gdc8-text);
}

/* ============ APP DOWNLOAD ============ */
.gdc8-app-cta {
  background: linear-gradient(135deg, var(--gdc8-bg-dark), var(--gdc8-bg-card));
  border-radius: var(--gdc8-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid var(--gdc8-accent);
  margin: 1.5rem 0;
}

.gdc8-app-cta h3 {
  color: var(--gdc8-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.gdc8-app-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gdc8-app-btn {
  background: var(--gdc8-primary);
  color: var(--gdc8-bg-dark);
  padding: 0.8rem 1.6rem;
  border-radius: var(--gdc8-radius);
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--gdc8-transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  min-height: 44px;
}

.gdc8-app-btn:hover {
  transform: scale(1.05);
  background: var(--gdc8-accent);
}

/* ============ FOOTER ============ */
.gdc8-footer {
  background: var(--gdc8-bg-dark);
  border-top: 2px solid var(--gdc8-accent);
  padding: 2rem 0 1rem;
}

.gdc8-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.gdc8-footer-brand p {
  color: var(--gdc8-text-muted);
  font-size: 1.3rem;
  line-height: 1.5;
  max-width: 360px;
  margin: 0.5rem auto;
}

.gdc8-footer-promo {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.gdc8-footer-promo .gdc8-btn {
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
}

.gdc8-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  margin-bottom: 1.5rem;
}

.gdc8-footer-links a {
  color: var(--gdc8-text-muted);
  font-size: 1.2rem;
  transition: var(--gdc8-transition);
}

.gdc8-footer-links a:hover {
  color: var(--gdc8-primary);
}

.gdc8-footer-copy {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gdc8-border);
  color: var(--gdc8-text-muted);
  font-size: 1.2rem;
}

/* ============ BOTTOM NAVIGATION ============ */
.gdc8-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--gdc8-bg-card) 0%, var(--gdc8-bg-dark) 100%);
  border-top: 2px solid var(--gdc8-accent);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.4);
}

.gdc8-bnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: none;
  border: none;
  color: var(--gdc8-text-muted);
  cursor: pointer;
  transition: var(--gdc8-transition);
  padding: 0.4rem;
  text-decoration: none;
  position: relative;
}

.gdc8-bnav-btn:hover,
.gdc8-bnav-active {
  color: var(--gdc8-primary);
  transform: scale(1.1);
}

.gdc8-bnav-btn .material-icons,
.gdc8-bnav-btn .fas,
.gdc8-bnav-btn .far,
.gdc8-bnav-btn .bi {
  font-size: 24px;
  margin-bottom: 2px;
}

.gdc8-bnav-btn ion-icon {
  font-size: 24px;
  margin-bottom: 2px;
}

.gdc8-bnav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.gdc8-bnav-active .gdc8-bnav-label {
  color: var(--gdc8-primary);
}

.gdc8-bnav-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--gdc8-primary);
  border-radius: 0 0 4px 4px;
}

/* Desktop: hide bottom nav */
@media (min-width: 769px) {
  .gdc8-bottom-nav {
    display: none;
  }
}

/* ============ TEXT STYLES ============ */
.gdc8-text-accent {
  color: var(--gdc8-primary);
}

.gdc8-text-muted {
  color: var(--gdc8-text-muted);
}

.gdc8-text-pink {
  color: var(--gdc8-pink);
}

.gdc8-promo-text {
  color: var(--gdc8-primary);
  font-weight: 700;
  cursor: pointer;
  transition: var(--gdc8-transition);
}

.gdc8-promo-text:hover {
  color: var(--gdc8-accent);
  text-decoration: underline;
}

/* ============ INTERNAL LINKS ============ */
.gdc8-internal-link {
  color: var(--gdc8-pink);
  text-decoration: underline;
  font-weight: 500;
}

.gdc8-internal-link:hover {
  color: var(--gdc8-primary);
}

/* ============ TRICKS/TIPS ============ */
.gdc8-trick-item {
  background: var(--gdc8-bg-dark);
  border-radius: var(--gdc8-radius);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border: 1px solid var(--gdc8-border);
}

.gdc8-trick-num {
  background: var(--gdc8-primary);
  color: var(--gdc8-bg-dark);
  font-weight: 800;
  font-size: 1.4rem;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gdc8-trick-content {
  font-size: 1.3rem;
  color: var(--gdc8-text-muted);
  line-height: 1.5;
}

/* ============ H1 HERO ============ */
.gdc8-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gdc8-primary);
  text-align: center;
  padding: 1.5rem 0;
  line-height: 1.3;
}

.gdc8-hero-subtitle {
  text-align: center;
  color: var(--gdc8-text-muted);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

/* ============ HELPER CLASSES ============ */
.gdc8-mt-1 { margin-top: 0.8rem; }
.gdc8-mt-2 { margin-top: 1.6rem; }
.gdc8-mb-1 { margin-bottom: 0.8rem; }
.gdc8-mb-2 { margin-bottom: 1.6rem; }
.gdc8-text-center { text-align: center; }
.gdc8-text-sm { font-size: 1.2rem; }
.gdc8-text-lg { font-size: 1.8rem; }
.gdc8-fw-bold { font-weight: 700; }
.gdc8-fw-normal { font-weight: 400; }
.gdc8-divider {
  border: none;
  border-top: 1px solid var(--gdc8-border);
  margin: 1.5rem 0;
}

/* ============ HELP PAGE STYLES ============ */
.gdc8-help-section {
  margin-bottom: 1.5rem;
}

.gdc8-help-section h2 {
  font-size: 1.8rem;
  color: var(--gdc8-primary);
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gdc8-accent);
}

.gdc8-help-section h3 {
  font-size: 1.5rem;
  color: var(--gdc8-accent);
  margin: 1rem 0 0.6rem;
}

.gdc8-help-section p {
  color: var(--gdc8-text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.gdc8-help-section ol,
.gdc8-help-section ul {
  padding-left: 2rem;
  margin-bottom: 0.8rem;
}

.gdc8-help-section li {
  color: var(--gdc8-text-muted);
  line-height: 1.6;
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 320px) {
  .gdc8-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gdc8-hero-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 431px) and (max-width: 768px) {
  .gdc8-container,
  .gdc8-wrapper {
    max-width: 430px;
  }
}

@media (min-width: 769px) {
  .gdc8-container,
  .gdc8-wrapper {
    max-width: 430px;
  }

  .gdc8-header-inner {
    max-width: 430px;
  }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gdc8-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gdc8-accent);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gdc8-primary);
}
