:root {
  --ui-primary: #ff0000;
  --ui-primary-600: #cc0000;
  --ui-primary-700: #b30000;
  --ui-gold: #f5c84c;
  --ui-accent: #ff0000;
  --ui-bg: #f9f9f9;
  --ui-surface: #ffffff;
  --ui-text: #0f0f0f;
  --ui-muted: #606060;
  --ui-border: #e5e5e5;
  --ui-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  --ui-radius: 12px;
  --ui-radius-lg: 16px;
  --ui-radius-pill: 999px;
  --ui-focus: 0 0 0 3px rgba(0, 0, 0, 0.18);
  --theme-color: var(--ui-primary);
  --theme-color-rgb: 255, 0, 0;
  --primary-color: var(--ui-primary);
}

body {
  font-family: "Manrope", "Tajawal", "DM Sans", sans-serif;
  background-color: var(--ui-bg);
  color: var(--ui-text);
  letter-spacing: 0.2px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ui-text);
  letter-spacing: 0.2px;
}

p, label, small, .text-muted {
  color: var(--ui-muted) !important;
}

a {
  color: var(--ui-primary);
}

a:hover,
a:focus {
  color: var(--ui-primary-600);
}

.card,
.modal-content,
.dropdown-menu,
.select2-container--default .select2-selection--single {
  background-color: var(--ui-surface) !important;
  border: 1px solid var(--ui-border) !important;
  border-radius: var(--ui-radius-lg) !important;
  box-shadow: var(--ui-shadow);
}

.btn,
button.btn {
  border-radius: var(--ui-radius-pill) !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
}

.btn.btn-solid,
.btn.btn-primary,
.btn-primary {
  background: var(--ui-primary) !important;
  color: #ffffff !important;
  border-color: var(--ui-primary) !important;
}

.btn.btn-solid:hover,
.btn.btn-primary:hover,
.btn-primary:hover {
  background: var(--ui-primary-600) !important;
  color: #ffffff !important;
}

.btn.btn-outline,
.btn.btn-outline-primary,
.btn-outline-primary {
  background: #ffffff !important;
  color: var(--ui-primary) !important;
  border-color: var(--ui-border) !important;
}

.btn.btn-outline:hover,
.btn.btn-outline-primary:hover,
.btn-outline-primary:hover {
  background: var(--ui-primary) !important;
  color: #ffffff !important;
  border-color: var(--ui-primary) !important;
}

.btn.btn-outline-secondary,
.btn-outline-secondary {
  background: #ffffff !important;
  color: #111827 !important;
  border-color: #d1d5db !important;
}

.btn.btn-outline-secondary:hover,
.btn-outline-secondary:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

.btn-light,
.btn-light:disabled,
.btn-light.disabled {
  background-color: #f3f4f6 !important;
  color: #111827 !important;
  border-color: #e5e7eb !important;
  opacity: 1 !important;
}

.badge,
.badge.rounded-pill {
  border-radius: var(--ui-radius-pill) !important;
}

.form-control,
.form-select,
.select2-container--default .select2-selection--single {
  border-radius: var(--ui-radius) !important;
  border-color: var(--ui-border) !important;
  background-color: #ffffff !important;
  color: var(--ui-text) !important;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--ui-primary) !important;
  box-shadow: var(--ui-focus) !important;
}

.table {
  border-color: var(--ui-border) !important;
}

.table thead th {
  background-color: #f3f4f6 !important;
  color: var(--ui-text) !important;
  border-color: var(--ui-border) !important;
}

.table tbody tr:nth-child(even) {
  background-color: #fafafa !important;
}

.section-bg {
  background-color: #f3f4f6 !important;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25) !important;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.45) !important;
}

.title:before,
.title-1:before {
  background-color: var(--ui-primary) !important;
}

.theme-bg-color {
  background: var(--ui-primary) !important;
  color: #ffffff !important;
}

.theme-color {
  color: var(--ui-primary) !important;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: var(--ui-primary) !important;
  color: #ffffff !important;
}

.pagination .page-item.active .page-link {
  background: var(--ui-primary) !important;
  border-color: var(--ui-primary) !important;
  color: #ffffff !important;
}

.pagination .page-link {
  color: var(--ui-text) !important;
}

.pagination .page-link:hover {
  color: var(--ui-primary) !important;
}

.alert {
  border-radius: var(--ui-radius) !important;
}

/* YouTube-inspired layout (frontend) */
body.yt-theme .breadcrumb-section {
  display: none !important;
}

body.yt-theme .yt-page {
  background: #f9f9f9;
}

body.yt-theme .yt-page .container-fluid-lg {
  max-width: 1480px;
}

body.yt-theme .yt-page .cart,
body.yt-theme .yt-page .payment {
  background: #ffffff;
  border: 1px solid var(--ui-border);
  border-radius: var(--ui-radius-lg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

body.yt-theme .yt-page .cart-header,
body.yt-theme .yt-page .payment-header {
  background: #ffffff;
  border-bottom: 1px solid var(--ui-border);
  border-radius: var(--ui-radius-lg) var(--ui-radius-lg) 0 0;
  padding: 14px 18px;
}

body.yt-theme .yt-page .cart-body,
body.yt-theme .yt-page .payment-body {
  background: #ffffff;
}

body.yt-theme .yt-cart-page .cart-item {
  border: 1px solid #eef0f3;
  background: #fafafa;
  border-radius: 14px;
  padding: 12px;
}

body.yt-theme .yt-cart-page .cart-item + .cart-item {
  margin-top: 12px;
}

body.yt-theme .yt-cart-page .cart-action button {
  border: 1px solid var(--ui-border);
  background: #ffffff;
  border-radius: 10px;
  padding: 6px;
}

body.yt-theme .yt-cart-page .cart-action button:hover {
  border-color: var(--ui-primary);
  color: var(--ui-primary);
}

body.yt-theme .yt-cart-page .selected-img {
  border-radius: 12px;
}

body.yt-theme .yt-cart-page .price {
  color: var(--ui-text);
  font-weight: 700;
}

body.yt-theme .yt-checkout-page .payment {
  border: 1px solid var(--ui-border);
  border-radius: var(--ui-radius-lg);
}

body.yt-theme .yt-checkout-page .payment-option {
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.yt-theme .yt-checkout-page .payment-option:hover {
  border-color: var(--ui-primary);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

body.yt-theme .yt-checkout-page .payment-footer {
  border-top: 1px solid var(--ui-border);
  background: #fafafa;
  border-radius: 0 0 var(--ui-radius-lg) var(--ui-radius-lg);
  padding: 16px;
}

.rating li i,
.review-rating li i {
  color: var(--ui-gold) !important;
}

.favourite {
  background-color: var(--ui-primary) !important;
}

/* Phase 2: Premium surface polish (YouTube/Amazon/TikTok level) */
.yt-app {
  background: #f9f9f9;
}

.yt-side {
  background: #ffffff;
  border-right: 1px solid var(--ui-border);
  box-shadow: 8px 0 24px rgba(0, 0, 0, 0.06);
}

.yt-side__brand {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ui-border);
}

.yt-logo img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.12));
}

.yt-nav__item {
  border-radius: 12px;
  padding: 10px 12px;
  color: #111827;
  gap: 10px;
  transition: all 0.2s ease;
}

.yt-nav__item:hover {
  background: #f2f2f2;
  color: #0f0f0f;
}

.yt-nav__item.active {
  background: #e5e5e5;
  color: #0f0f0f;
  font-weight: 700;
}

.yt-sub {
  border-radius: 12px;
  padding: 8px 10px;
  transition: all 0.2s ease;
}

.yt-sub:hover {
  background: #f2f2f2;
}

.yt-topbar-shell {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--ui-border);
  border-radius: 18px;
  box-shadow: var(--ui-shadow);
  backdrop-filter: blur(16px);
}

.yt-topbar {
  padding: 12px 18px;
}

.yt-search {
  border-radius: var(--ui-radius-pill);
  border: 1px solid var(--ui-border);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.yt-search input {
  color: var(--ui-text);
  font-weight: 600;
}

.yt-search button {
  border-radius: 50%;
  background: var(--ui-primary);
  color: #ffffff;
  width: 38px;
  height: 38px;
}

.yt-actions .yt-icon {
  border-radius: 999px;
  border: 1px solid var(--ui-border);
  background: #ffffff;
  color: var(--ui-text);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yt-actions .yt-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.12);
}

.yt-avatar.lg {
  background: linear-gradient(135deg, #111827, #0f172a);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
  --Iconsax-Color: #ffffff;
}

.yt-avatar.lg .iconsax {
  --Iconsax-Color: #ffffff;
}

.yt-lang__btn,
.yt-zone__btn {
  border-radius: 999px;
  border: 1px solid var(--ui-border);
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
}

.yt-lang__menu,
.yt-user__menu,
.yt-zone__menu {
  border-radius: 14px;
  border: 1px solid var(--ui-border);
  box-shadow: var(--ui-shadow);
  background: #ffffff;
}

.yt-chip {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: var(--ui-text);
  transition: all 0.2s ease;
}

.yt-chip:hover {
  border-color: var(--ui-border);
  color: var(--ui-text);
}

.yt-chip.active {
  background: linear-gradient(135deg, var(--ui-primary), var(--ui-primary-700));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.yt-card,
.yt-channel-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yt-card:hover,
.yt-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.14);
}

.yt-card__thumb,
.yt-channel-card__thumb {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.yt-card__thumb img,
.yt-channel-card__thumb img,
.yt-channel-card__thumb video {
  transition: transform 0.4s ease;
}

.yt-card:hover .yt-card__thumb img,
.yt-channel-card:hover .yt-channel-card__thumb img,
.yt-channel-card:hover .yt-channel-card__thumb video {
  transform: scale(1.05);
}

.yt-card__meta {
  padding: 14px 16px 16px;
}

.yt-title {
  font-weight: 700;
  color: #0f172a;
}

.yt-channel,
.yt-stats,
.yt-why {
  color: var(--ui-muted);
}

.yt-cta,
.yt-quick-cta {
  border-radius: 999px;
  background: var(--ui-primary);
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.16);
}

.yt-cta:hover,
.yt-quick-cta:hover {
  background: var(--ui-primary-600);
  color: #ffffff;
}

.yt-section__head {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 10px;
}

.yt-section__title {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.yt-section__link {
  font-weight: 700;
  color: var(--ui-primary-700);
}

.payment-policy {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ui-muted);
}

.payment-policy a {
  color: var(--ui-primary-700);
  font-weight: 600;
}

.payment-breakdown-card {
  margin: 16px 0;
  padding: 16px 20px;
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  background: #ffffff;
}

.payment-breakdown {
  font-size: 14px;
  color: var(--ui-text);
}

.yt-badge,
.yt-featured-badge,
.yt-ad-badge {
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (max-width: 991px) {
  .yt-topbar-shell {
    border-radius: 14px;
  }

  .yt-side {
    box-shadow: none;
  }
}

/* Phase 3: Page-level premium polish */
.yt-chips {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.yt-chip-group {
  gap: 10px;
}

.yt-chip-label {
  font-weight: 700;
  color: #0f172a;
}

.yt-subchips {
  margin-top: 10px;
}

.yt-subchips .yt-chip {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
}

.yt-section {
  margin-top: 22px;
}

.yt-section__head {
  align-items: center;
}

.yt-section__meta {
  color: var(--ui-muted);
  font-weight: 600;
}

.yt-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.yt-duration,
.yt-live,
.yt-ad-badge,
.yt-featured-badge {
  z-index: 2;
}

.yt-card__meta {
  gap: 10px;
}

.yt-cta {
  align-self: flex-start;
}

/* Service details */
.service-list-section {
  background: #f9f9f9;
}

.service-list-section .service-detail-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.service-list-section .service-detail-slider .service-img {
  border-radius: 20px;
  overflow: hidden;
}

.service-list-section .service-detail-slider .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details-content {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.service-details-content .title h3 {
  font-weight: 800;
  color: #0f172a;
}

.amount {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.1);
  background: #ffffff;
}

.amount-header {
  background: #f2f2f2;
  color: #0f172a;
}

.amount-header small {
  color: #0f172a;
}

.book-now-btn {
  width: 100%;
  border-radius: 999px !important;
  font-weight: 800;
}

.provider-detail {
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  background: #ffffff;
}

.provider-detail .profile-bg {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(17, 24, 39, 0.85));
}

.provider-detail .profile img {
  border: 3px solid #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

/* Auth pages */
.log-in-section {
  background: #f9f9f9;
}

.log-in-section .image-contain {
  background: linear-gradient(135deg, #0f172a, #111827);
}

.log-in-section .image-contain .logo {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.login-title h2 {
  font-weight: 800;
  color: #0f172a;
}

.log-in-section .login-detail {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
  padding: 22px 24px;
}

.log-in-section .login-detail .form-control {
  border-radius: 12px;
}

.log-in-section .login-detail .btn {
  width: 100%;
  border-radius: 999px !important;
}

.log-in-section .other-options {
  margin-top: 18px;
}

.log-in-section .social-media .social-icon {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

@media (max-width: 991px) {
  .service-details-content {
    padding: 18px 18px;
  }

  .log-in-section .login-detail {
    padding: 18px 18px;
  }
}

/* Global contrast polish */
:root {
  --ui-text: #0f0f0f;
  --ui-muted: #606060;
  --ui-border: #e5e5e5;
}

body,
.text-body {
  color: var(--ui-text) !important;
}

p,
label,
small,
.text-muted,
.text-secondary,
.form-text {
  color: var(--ui-muted) !important;
}

a.text-muted:hover,
a.text-secondary:hover {
  color: var(--ui-text) !important;
}

input::placeholder,
textarea::placeholder {
  color: #606060 !important;
}

.btn,
button.btn {
  color: #0f0f0f;
}

.btn.btn-solid,
.btn.btn-primary,
.btn-primary,
.btn-danger,
.btn-success,
.btn-info,
.btn-warning,
.btn-dark {
  color: #ffffff !important;
}

.btn.btn-outline,
.btn.btn-outline-primary,
.btn-outline-primary,
.btn.btn-outline-secondary,
.btn-outline-secondary {
  color: #0f0f0f !important;
  background: #ffffff !important;
  border-color: #e5e5e5 !important;
}

.btn.btn-outline:hover,
.btn.btn-outline-primary:hover,
.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover,
.btn-outline-secondary:hover {
  background: #f2f2f2 !important;
  color: #0f0f0f !important;
  border-color: #d6d6d6 !important;
}

.btn-secondary,
.btn.btn-secondary,
.btn-gray,
.btn.btn-gray,
.btn-solid-gray,
.btn.btn-solid-gray {
  background: #f2f2f2 !important;
  color: #0f0f0f !important;
  border-color: #e5e5e5 !important;
}

.btn-secondary:hover,
.btn.btn-secondary:hover,
.btn-gray:hover,
.btn.btn-gray:hover,
.btn-solid-gray:hover,
.btn.btn-solid-gray:hover {
  background: #e6e6e6 !important;
  color: #0f0f0f !important;
  border-color: #d1d1d1 !important;
}

.badge,
.badge.rounded-pill {
  color: #0f0f0f;
}

.badge.bg-primary,
.badge.bg-success,
.badge.bg-danger,
.badge.bg-info {
  color: #ffffff !important;
}

.badge.bg-warning {
  color: #0f0f0f !important;
}

.badge.bg-dark,
.badge.text-bg-dark {
  color: #ffffff !important;
}

.badge.bg-light,
.badge.text-bg-light {
  color: #0f0f0f !important;
}

.nav-tabs .nav-link,
.nav-pills .nav-link {
  color: #0f0f0f;
}

.nav-tabs .nav-link.active {
  color: #0f0f0f;
}

.dropdown-item {
  color: #0f0f0f;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #f2f2f2;
  color: #0f0f0f;
}

.yt-chip {
  color: #0f0f0f !important;
  background: #f2f2f2 !important;
  border-color: #e5e5e5 !important;
}

.yt-chip:hover {
  background: #eaeaea !important;
  border-color: #d6d6d6 !important;
  color: #0f0f0f !important;
}

.yt-chip.active,
.yt-chip--primary {
  background: #0f0f0f !important;
  border-color: #0f0f0f !important;
  color: #ffffff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.yt-cta,
.yt-quick-cta,
.btn.btn-solid,
.btn.btn-primary,
.btn-primary {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12) !important;
}

.yt-subchips .yt-chip {
  background: #f2f2f2 !important;
  color: #0f0f0f !important;
  border-color: #e5e5e5 !important;
}

.yt-subchips .yt-chip.active {
  background: #0f0f0f !important;
  color: #ffffff !important;
  border-color: #0f0f0f !important;
}

.yt-filter-pill {
  color: #0f0f0f !important;
}

.yt-section__meta,
.yt-channel,
.yt-stats,
.yt-why {
  color: var(--ui-muted) !important;
}

/* RTL/LTR alignment polish */
[dir="rtl"] .yt-topbar {
  direction: rtl;
}

[dir="rtl"] .yt-search input {
  text-align: right;
}

[dir="rtl"] .yt-zone__menu,
[dir="rtl"] .yt-lang__menu,
[dir="rtl"] .yt-user__menu {
  right: 0;
  left: auto;
}

[dir="rtl"] .yt-zone__option,
[dir="rtl"] .yt-zone__list button,
[dir="rtl"] .yt-lang__item,
[dir="rtl"] .yt-user__item {
  text-align: right;
}

/* YouTube palette + contrast enforcement */
body.yt-theme,
body.yt-theme .yt-page {
  background: #f9f9f9 !important;
  color: #0f0f0f !important;
}

body.yt-theme a {
  color: inherit;
}

.yt-topbar-shell {
  box-shadow: none !important;
}

.yt-search {
  border-color: #e5e5e5 !important;
  box-shadow: none !important;
}

.yt-search button {
  background: #f2f2f2 !important;
  color: #0f0f0f !important;
}

.yt-search button:hover {
  background: #e9e9e9 !important;
}

.yt-actions .yt-icon {
  background: #ffffff !important;
  border-color: #e5e5e5 !important;
  color: #0f0f0f !important;
  box-shadow: none !important;
}

.yt-actions .yt-icon .iconsax {
  --Iconsax-Color: #0f0f0f;
}

.yt-avatar.lg {
  background: #f2f2f2 !important;
  color: #0f0f0f !important;
  border: 1px solid #e5e5e5 !important;
  box-shadow: none !important;
}

.yt-avatar.lg .iconsax {
  --Iconsax-Color: #0f0f0f;
}

.yt-lang__item.active {
  background: #f2f2f2 !important;
  border-color: #e5e5e5 !important;
}

.yt-channel-tab {
  color: #606060 !important;
}

.yt-channel-tab.active {
  color: #0f0f0f !important;
}

.yt-subscribe-btn,
.yt-chip--cta {
  background: #0f0f0f !important;
  color: #ffffff !important;
  border-color: #0f0f0f !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.yt-subscribe-btn:hover,
.yt-chip--cta:hover {
  background: #1f1f1f !important;
  color: #ffffff !important;
}

.yt-cta,
.yt-quick-cta,
.yt-store-btn,
.yt-side-cta,
.btn.btn-solid,
.btn.btn-primary,
.btn-primary {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.yt-cta:hover,
.yt-quick-cta:hover,
.yt-store-btn:hover,
.yt-side-cta:hover,
.btn.btn-solid:hover,
.btn.btn-primary:hover,
.btn-primary:hover {
  background: #cc0000 !important;
  border-color: #cc0000 !important;
  color: #ffffff !important;
}

.yt-like-btn,
.yt-chat-btn,
.yt-share-btn {
  background: #f2f2f2 !important;
  border: 1px solid #e5e5e5 !important;
  color: #0f0f0f !important;
  box-shadow: none !important;
}

.yt-like-btn:hover,
.yt-chat-btn:hover,
.yt-share-btn:hover {
  background: #e9e9e9 !important;
}

.yt-like-btn.is-active {
  background: #0f0f0f !important;
  color: #ffffff !important;
  border-color: #0f0f0f !important;
}

.yt-cta *,
.yt-quick-cta *,
.yt-store-btn *,
.yt-side-cta *,
.yt-share-btn *,
.btn * {
  color: inherit !important;
}

.nav-pills .nav-link {
  background: #f2f2f2 !important;
  color: #0f0f0f !important;
  border-color: #e5e5e5 !important;
}

.nav-pills .nav-link.active {
  background: #0f0f0f !important;
  color: #ffffff !important;
  border-color: #0f0f0f !important;
}

/* Auth screen contrast on dark panel */
.log-in-section .auth-content,
.log-in-section .auth-content h2,
.log-in-section .auth-content p,
.log-in-section .auth-content span {
  color: #f9fafb !important;
}

.auth-lang__item.active {
  background: #f2f2f2 !important;
  border-color: #e5e5e5 !important;
  color: #0f0f0f !important;
}
