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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== CAPTCHA SECTION ===== */
.captcha-section {
  min-height: 100vh;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.captcha-section.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

.captcha-page-header {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  text-align: center;
}
.equation {
  font-size: 0.78em;
  font-style: italic;
  color: #7a3d55;
  margin-top: 6px;
  margin-left: 28px;
  padding-left: 10px;
  border-left: 2px solid rgba(122, 61, 85, 0.4);
}

.lock-icon {
  font-size: 14px;
}

.captcha-page-footer {
  font-size: 11px;
  color: #999;
  margin-top: 24px;
  text-align: center;
}

/* ===== CAPTCHA CARD ===== */
.captcha-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 360px;
  overflow: hidden;
}

/* ===== ROBOT CHECKBOX ===== */
.robot-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.robot-check:hover {
  background: #fafafa;
}

.robot-check.checked {
  pointer-events: none;
}

.robot-check-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.checkbox-border {
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s;
}

.checkbox-inner {
  display: none;
}

.checkbox-inner.show {
  display: flex;
  animation: checkPop 0.3s ease;
}

.checkmark-svg {
  width: 20px;
  height: 20px;
}

@keyframes checkPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-top: 2px solid #4285f4;
  border-radius: 50%;
  position: absolute;
}

.spinner.active {
  display: block;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.robot-label {
  font-size: 14px;
  color: #555;
  user-select: none;
  flex: 1;
}

.recaptcha-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.recaptcha-logo {
  width: 32px;
  height: 32px;
}

.recaptcha-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 8px;
  color: #999;
  line-height: 1.3;
}

.recaptcha-terms {
  font-size: 7px;
  color: #bbb;
}

/* ===== CAPTCHA GRID SECTION ===== */
.captcha-grid-section {
  border-top: 1px solid #e0e0e0;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 600px;
  }
}

.captcha-grid-header {
  background: #4285f4;
  color: white;
  padding: 14px 16px;
}

.grid-instruction {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.grid-subtext {
  font-size: 11px;
  opacity: 0.85;
  font-style: italic;
}

.captcha-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 2px;
  background: #e0e0e0;
}

.grid-cell {
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  background: #ddd;
  transition: transform 0.15s;
}

.grid-cell:active {
  transform: scale(0.95);
}

.grid-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-cell .cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(66, 133, 244, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.grid-cell.selected .cell-overlay {
  opacity: 1;
}

.cell-overlay .check-icon {
  width: 32px;
  height: 32px;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkPop 0.3s ease;
}

.cell-overlay .check-icon svg {
  width: 18px;
  height: 18px;
}

/* Hint pulse for tricky images */
.grid-cell.hint-pulse {
  animation: hintGlow 1.5s ease-in-out infinite;
}

@keyframes hintGlow {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(66, 133, 244, 0); }
  50% { box-shadow: inset 0 0 8px 2px rgba(66, 133, 244, 0.4); }
}

/* ===== CAPTCHA FOOTER ===== */
.captcha-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid #e0e0e0;
}

.attempts-display {
  font-size: 12px;
  color: #666;
}

#attempts-count {
  font-weight: 700;
  color: #d93025;
}

.verify-btn {
  background: #4285f4;
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.verify-btn:hover {
  background: #3367d6;
}

.verify-btn:active {
  background: #2a56c6;
}

/* ===== PROGRESS BAR ===== */
.progress-bar-container {
  height: 3px;
  background: #e0e0e0;
}

.progress-bar {
  height: 100%;
  background: #4285f4;
  width: 0%;
  transition: width 0.3s ease;
}

/* ===== FAILURE MESSAGE ===== */
.failure-message {
  padding: 14px 16px;
  background: #fce8e6;
  color: #d93025;
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid #f5c6c2;
  animation: shakeIn 0.4s ease;
}

@keyframes shakeIn {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ===== SUCCESS STATE ===== */
.success-state {
  text-align: center;
  padding: 30px 20px;
}

.success-header {
  background: #34a853;
  color: white;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.success-subtitle {
  font-size: 13px;
  color: #555;
  margin-top: 12px;
  font-style: italic;
}

.loading-bar-container {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin: 20px 0 12px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  background: linear-gradient(90deg, #4285f4, #34a853, #ea4335, #fbbc04);
  background-size: 200% 100%;
  width: 0%;
  border-radius: 2px;
  transition: width 0.3s ease;
  animation: gradientShift 1s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.loading-text {
  font-size: 12px;
  color: #888;
  transition: opacity 0.3s;
}

/* ===== HIDDEN UTILITY ===== */
.hidden {
  display: none !important;
}

/* ===== VALENTINE SECTION ===== */
.valentine-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #8b1a3a 0%, #c94b7c 25%, #e8a0b4 50%, #c94b7c 75%, #8b1a3a 100%);
  background-size: 400% 400%;
  padding: 40px 20px 120px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease, gradientMove 12s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FLOATING HEARTS ===== */
.floating-hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  bottom: -40px;
  font-size: 20px;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) scale(0.5);
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) rotate(360deg) scale(1);
  }
}

/* ===== VALENTINE HERO ===== */
.valentine-hero {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.hero-photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 182, 203, 0.5);
  animation: photoGlow 3s ease-in-out infinite;
}

@keyframes photoGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 182, 203, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 182, 203, 0.8), 0 0 60px rgba(255, 75, 110, 0.3); }
}

.hero-photo-placeholder svg,
.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.valentine-title {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  color: white;
  line-height: 1.3;
  background: linear-gradient(90deg, #fff 0%, #fff 40%, #ffe0e8 50%, #fff 60%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.2));
}

@keyframes titleShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.title-hearts {
  font-size: 24px;
  margin-top: 8px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
}

/* ===== LOVE LETTER ===== */
.love-letter-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 500px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(139, 26, 58, 0.15);
  position: relative;
  z-index: 1;
}

.letter-header {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  color: #8b1a3a;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0d0d8;
}

.letter-body {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  min-height: 120px;
}

.letter-body .cursor {
  display: inline-block;
  width: 2px;
  height: 18px;
  background: #8b1a3a;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.letter-signature {
  font-size: 14px;
  color: #666;
  margin-top: 24px;
  line-height: 1.6;
  text-align: right;
}

.signature-name {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  color: #8b1a3a;
}

/* ===== INTERACTIVE CARDS ===== */
.interactive-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 24px 20px;
  max-width: 500px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(139, 26, 58, 0.15);
  text-align: center;
  position: relative;
  z-index: 1;
}

.card-title {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  color: #8b1a3a;
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

/* ===== LOVE METER ===== */
.slider-container {
  padding: 10px 0;
}

.love-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e0e0e0, #ff6b8a);
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}

.love-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff4b6e;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(255, 75, 110, 0.4);
  font-size: 20px;
  transition: transform 0.3s;
}

.love-slider::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff4b6e;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(255, 75, 110, 0.4);
}

.love-slider.snap-back {
  animation: sliderBounce 0.5s ease;
}

@keyframes sliderBounce {
  0% { transform: scaleX(1); }
  30% { transform: scaleX(1.02); }
  60% { transform: scaleX(0.99); }
  100% { transform: scaleX(1); }
}

.slider-value {
  font-size: 48px;
  font-weight: 700;
  color: #ff4b6e;
  margin-top: 8px;
  transition: all 0.3s;
}

.slider-message {
  font-size: 13px;
  color: #d93025;
  margin-top: 8px;
  min-height: 20px;
  transition: opacity 0.3s;
}

/* ===== STAR RATING ===== */
.stars-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.star {
  font-size: 42px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.star:hover,
.star.hovered {
  transform: scale(1.15);
}

.star.active {
  color: #fbbc04;
}

.star.active.pop {
  animation: starPop 0.3s ease;
}

@keyframes starPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4) rotate(15deg); }
  100% { transform: scale(1); }
}

.rating-message {
  font-size: 14px;
  color: #555;
  min-height: 44px;
  line-height: 1.5;
  transition: opacity 0.3s;
}

/* ===== EMAIL FOOTER ===== */
.email-footer-section {
  max-width: 500px;
  margin: 40px auto 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.email-footer-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.unsubscribe-link,
.terms-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}

.unsubscribe-link:hover,
.terms-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.made-with-love {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  animation: modalSlideUp 0.3s ease;
}

.modal-card-large {
  max-width: 480px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.modal-date {
  font-size: 11px;
  color: #999;
  margin-bottom: 16px;
}

.modal-body {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-danger {
  background: #fce8e6;
  color: #d93025;
}

.btn-danger:hover {
  background: #f5c6c2;
}

.btn-safe {
  background: #e6f4ea;
  color: #1e8e3e;
  transition: all 0.3s ease;
}

.btn-safe:hover {
  background: #ceead6;
}

.modal-result {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
  animation: fadeIn 0.4s ease;
}

/* ===== TERMS SCROLL ===== */
.terms-scroll {
  overflow-y: auto;
  max-height: 45vh;
  padding-right: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #444;
  line-height: 1.7;
}

.terms-scroll h3 {
  font-size: 14px;
  color: #333;
  margin-top: 16px;
  margin-bottom: 8px;
}

.terms-scroll p {
  margin-bottom: 6px;
  padding-left: 8px;
}

.terms-buttons {
  align-items: center;
}

.btn-accept {
  background: #8b1a3a;
  color: white;
}

.btn-accept:hover {
  background: #a82050;
}

.btn-decline-wrapper {
  position: relative;
}

.btn-decline {
  background: #f0f0f0;
  color: #ccc;
  cursor: not-allowed;
}

.decline-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
}

.decline-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
}

.btn-decline-wrapper:hover .decline-tooltip {
  display: block;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-popup.slide-out {
  animation: slideOutDown 0.5s ease forwards;
}

@keyframes slideOutDown {
  to { transform: translateY(100%); }
}

.cookie-content {
  background: white;
  padding: 20px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  margin: 0 auto;
}

.cookie-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.cookie-subtitle {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.cookie-option {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.cookie-option input[type="checkbox"] {
  accent-color: #8b1a3a;
  width: 16px;
  height: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-accept {
  background: #8b1a3a;
  color: white;
}

.cookie-accept:hover {
  background: #a82050;
}

.cookie-manage {
  background: #f0f0f0;
  color: #555;
}

.cookie-manage:hover {
  background: #e0e0e0;
}

.cookie-result {
  font-size: 13px;
  color: #555;
  text-align: center;
  margin-top: 12px;
  animation: fadeIn 0.4s ease;
}

/* ===== FADE-IN CARDS ===== */
.fade-in-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  text-align: center;
  margin: 8px auto;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.section-divider::before {
  content: "\1F496";
  font-size: 20px;
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 480px) {
  .valentine-title {
    font-size: 44px;
  }

  .captcha-card {
    max-width: 400px;
  }
}

@media (min-width: 768px) {
  .valentine-title {
    font-size: 52px;
  }

  .valentine-section {
    padding: 60px 40px 140px;
  }

  .love-letter-card,
  .interactive-card {
    padding: 36px 32px;
  }

  .hero-photo-placeholder {
    width: 200px;
    height: 200px;
  }
}

/* ===== MAGGI RAIN ANIMATION ===== */
.maggi-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  overflow: hidden;
}

.maggi-item {
  position: absolute;
  top: -60px;
  font-size: 30px;
  animation: maggiFall linear forwards;
}

@keyframes maggiFall {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(110vh) rotate(360deg);
  }
}

/* ===== SCROLLBAR STYLING ===== */
.terms-scroll::-webkit-scrollbar {
  width: 6px;
}

.terms-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.terms-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.terms-scroll::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
