:root {
  --primary-color: #dc9609;
  --container-width: 1536px;
  --border-color: #e5e7eb;
  --bg-surface: #ffffff;
  --bg-muted: #f9fafb;
  --bg-body: #ffffff;
  --text-color: #002b50;
  --text-muted: #6b7280;
  --bg-hover: #f3f4f6;
  --scrollbar-bg: #f1f5f9;
  --bg-card: #fff;
  /* slate-100 */
  --scrollbar-thumb: #cbd5e1;
  /* slate-300 */
  color-scheme: light;
  --card-game-border-radius: 8px;
  --shadow-angle: 1px 2px 3px 1px #5d6b8433;
  --shadow-close: 0px 3px 5px 3px #5d6b8433;
  --shadow-mid: 0px 7px 10px 4px #5d6b844d;
  --shadow-hover: 0px 12px 16px 8px #5d6b844d;
  --shadow-far: 0px 20px 24px 14px #5d6b843d;
  --button-play-bg: #F6B832;
  --text-warning: #dc9609;
  --text-danger: #dc3545;
}

html.dark:root {
  --border-color: #374151;
  --bg-surface: #111827;
  --bg-muted: #0b1220;
  --bg-body: #0b1220;
  --text-color: #e5e7eb;
  --text-muted: #9ca3af;
  --bg-hover: #1a2439;
  --scrollbar-bg: #0f172a;
  --scrollbar-thumb: #334155;
  color-scheme: dark;
  --shadow-mid: 0px 7px 10px 4px #060c19;
  --shadow-angle: 1px 2px 3px 1px #060c19;
  --bg-card: #182234;
  --bg-card-hover: #212b3d;
}

html {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-bg);
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-body);
  color: var(--text-color);
  font-family: system-ui, sans-serif;
}

.site-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  background: var(--bg-surface);
  box-shadow: var(--shadow-angle);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.brand {
  font-size: 16px;
  font-weight: 700;
}

.search-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: var(--bg-hover);
}

.theme-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 34px;
  height: 34px;
}

.theme-toggle-btn svg {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

/* Icon sun - ẩn mặc định, hiển thị khi light mode */
.theme-icon-sun {
  opacity: 0;
  transform: scale(0.3) rotate(-180deg);
}

.theme-toggle-btn:not(.is-dark) .theme-icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Icon moon - ẩn mặc định, hiển thị khi dark mode */
.theme-icon-moon {
  opacity: 0;
  transform: scale(0.3) rotate(180deg);
}

.theme-toggle-btn.is-dark .theme-icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Animation khi chuyển đổi - icon cũ zoom nhỏ và xoay */
.theme-toggle-btn.is-dark .theme-icon-sun {
  opacity: 0;
  transform: scale(0.3) rotate(180deg);
}

.theme-toggle-btn:not(.is-dark) .theme-icon-moon {
  opacity: 0;
  transform: scale(0.3) rotate(-180deg);
}

/* Hiệu ứng khi hover - icon phóng to nhẹ */
.theme-toggle-btn:not(.is-dark):hover .theme-icon-sun {
  transform: scale(1.15) rotate(0deg);
}

.theme-toggle-btn.is-dark:hover .theme-icon-moon {
  transform: scale(1.15) rotate(0deg);
}

.site-main {
  min-height: calc(100dvh - 56px);
  margin-top: 66px;
}

/* WebKit scrollbar */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

*::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border-radius: 8px;
  border: 2px solid var(--scrollbar-bg);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-surface);
}

.btn {
  height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-muted);
  cursor: pointer;
}

.btn:hover {
  background: var(--bg-hover);
}

.card-game,
.search-history-game {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--card-game-border-radius);
  overflow: hidden;
  background: var(--bg-muted);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s ease-in-out;
  box-shadow: var(--shadow-mid);
}

.card-game:hover,
.search-history-game:hover {
  transform: translateY(-4px);
}

.card-game img,
.search-history-game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--card-game-border-radius);
  background: var(--bg-surface);
}

.card-game-title,
.search-history-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: 0;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  border-radius: var(--card-game-border-radius);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.search-history-title {
  font-size: 11px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  line-height: 1.4;
}

.card-game:hover .card-game-title,
.search-history-game:hover .search-history-title {
  opacity: 1;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.menu-item {
  background: var(--bg-card);
  box-shadow: var(--shadow-mid);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 8px;
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--card-game-border-radius);
  padding-right: 8px;
  line-height: 1.6;
  color: var(--text-muted);
}

.menu-item:hover {
  background: var(--bg-card-hover);
}

.menu-title {
  flex: 1;
}

.game-about {
  background: var(--bg-card);
  box-shadow: var(--shadow-mid);
  border-radius: var(--card-game-border-radius);
  padding: 1rem;
}

.article-content p,
.article-content li {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.game-about-title {
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}

.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  margin-top: 1rem;
  padding: 2rem 0;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-color);
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-color);
  text-transform: uppercase;
}

.footer-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}


.footer-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.game-about-content {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.game-about-content p {
  line-height: 1.6;
}

.game-about-content a {
  color: var(--primary-color);
}

.game-about-content h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
}

.button-exit {
  background: var(--text-danger);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: var(--shadow-close);
  letter-spacing: 0.1em;
  display: none;
}

.is-mobile .button-exit {
  display: block;
}

.is-hidden {
  display: none !important;
}

.game-about-header {
  margin-top: 0;
}

:where(h1) {
  margin-block: 0.67em;
  font-size: 2em;
}

/* Footer Styles */
.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--text-color);
}

@media (min-width: 768px) {
  .footer-brand {
    justify-content: flex-start;
  }
}

.footer-title-text {
  font-size: 1.25rem;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.875rem;
  gap: 0.5rem 1.5rem;
}

.footer-menu-link {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu-link:hover {
  color: var(--primary-color);
}

.footer-copyright-text {
  text-align: center;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-copyright-text {
    text-align: left;
  }
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-right {
    align-items: flex-end;
  }
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.footer-social-link {
  color: var(--text-muted);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--primary-color);
}

.footer-social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.body_text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Search Styles */
.search-portal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  /* visibility: hidden; */
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-portal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-portal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.search-portal.is-open .search-portal-overlay {
  opacity: 1;
}

.search-portal-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 688px;
  height: 100%;
  background: var(--bg-surface);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  visibility: hidden;
  display: flex;
  flex-direction: column;
}

.search-portal.is-open .search-portal-content {
  transition: transform 0.3s ease;
  transform: translateX(0);
  visibility: visible;
}

.search-portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  gap: 0.5rem;
  flex-shrink: 0;
}

.search-portal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.search-portal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  border: 3px solid var(--border-color);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.search-portal-close:hover {
  border-color: var(--primary-color);
  color: var(--text-primary);
}

.search-portal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Search Input */
.search-input-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
}

.search-input {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 16px;
  border-radius: 22px;
  background: var(--bg-muted);
  color: var(--text-color);
  font-size: 16px;
  outline: none;
  border: 3px solid var(--border-color);
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
  font-weight: 600;
}

.search-input:focus {
  border-color: var(--primary-color);
  background: var(--bg-surface);
}

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

.search-input-icon {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  z-index: 1;
}

.search-input-icon:hover {
  color: var(--text-color);
}

.search-input-icon svg {
  display: block;
}

/* Search Results */
.search-results {
  flex: 1;
  min-height: 0;
}

.search-results-header {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.search-results-header p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.search-result-item:hover {
  background: var(--bg-hover);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-mid);
}

.search-result-image {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-muted);
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 24px;
}

.search-result-content {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  margin: 0 0 0.25rem 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-rating {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Empty State */
.search-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
  min-height: 300px;
  color: var(--text-muted);
}

.search-empty-state svg {
  margin-bottom: 1rem;
  opacity: 0.5;
}

.search-empty-state p {
  margin: 0;
  font-size: 16px;
}

/* Loading State */
.search-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  gap: 1rem;
  min-height: 300px;
  color: var(--text-muted);
}

.search-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.search-loading p {
  margin: 0;
  font-size: 14px;
}

/* Search History Grid */
.search-history-header {
  margin-bottom: 1rem;
}

.search-history-section-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.search-history-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.search-history-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 32px;
}

@media (max-width: 1024px) {
  .search-history-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .search-portal-content {
    max-width: 100%;
  }

  .search-result-image {
    width: 56px;
    height: 56px;
  }

  .search-result-title {
    font-size: 14px;
  }

  .search-history-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .search-history-section-title {
    font-size: 16px;
  }
}

.clear-icon {
  background-color: var(--bg-card);
  border-radius: 50%;
  padding: 4px;
}

/* Language Selector */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--text-color);
  border-radius: 22px;
  background: var(--bg-muted);
  color: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.language-selector-btn:hover {
  background: var(--bg-hover);
  border-color: var(--primary-color);
}

.language-selector-btn:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-mid);
}

.language-selector-icon {
  display: flex;
  align-items: center;
  opacity: 0.8;
}

.language-selector-text {
  font-weight: 500;
}

.language-selector-arrow {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.language-selector-btn[aria-expanded="true"] .language-selector-arrow {
  transform: rotate(180deg);
}

.language-selector-popup {
  position: fixed;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-mid);
  z-index: 1000;
  min-width: 280px;
  max-width: 600px;
  max-height: 500px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transform-origin: top left;
  transition: opacity 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.language-selector-popup.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.language-selector-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.25rem;
  padding: 0.75rem;
  overflow-y: auto;
  max-height: 500px;
}

/* Multi-column layout trên PC */
@media (min-width: 640px) {
  .language-selector-popup {
    min-width: 500px;
    max-width: 700px;
  }

  .language-selector-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
  }
}

@media (min-width: 1024px) {
  .language-selector-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.language-selector-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.625rem 0.875rem;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s ease, transform 0.1s ease;
  font-family: inherit;
  text-align: left;
  width: 100%;
  gap: 0.5rem;
}

.language-selector-item:hover {
  background: var(--bg-hover);
}

.language-selector-item:active {
  transform: scale(0.98);
}

.language-selector-item:focus {
  outline: none;
  background: var(--bg-hover);
}

.language-selector-item.active {
  background: var(--bg-hover);
  font-weight: 600;
  color: var(--primary-color);
}

.language-selector-item-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-selector-item-check {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  margin-left: auto;
  flex-shrink: 0;
  animation: checkIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.language-selector-item-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes checkIn {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .language-selector-popup {
    min-width: 280px;
    max-width: calc(100vw - 2rem);
    max-height: 400px;
  }

  .language-selector-list {
    grid-template-columns: repeat(1, 1fr);
    padding: 0.5rem;
    max-height: 400px;
  }

  .language-selector-item {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }

  .language-selector-item-flag {
    width: 18px;
    height: 18px;
  }
}

/* Ad Container Styles */
.ad-container {
  width: 100%;
}

.ad-container .adsbygoogle {
  width: 100%;
  display: block;
}

/* Ad Label Styles */
.ad-label {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.is-mobile {
  display: none;
}

@media (max-width: 48rem) {
  .is-mobile {
    display: block;
  }
}

ins.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}

.ads-title1, .ads-title2, .ads-title3 {
  display: none !important;
}

.ads1:has(ins.adsbygoogle[data-ad-status="filled"]) .ads-title1 {
  display: block !important;
}

.ads2:has(ins.adsbygoogle[data-ad-status="filled"]) .ads-title2 {
  display: block !important;
}

.ads3:has(ins.adsbygoogle[data-ad-status="filled"]) .ads-title3 {
  display: block !important;
}
.ads:has(ins.adsbygoogle[data-ad-status="unfilled"]),
.ads1:has(ins.adsbygoogle[data-ad-status="unfilled"]),
.ads2:has(ins.adsbygoogle[data-ad-status="unfilled"]),
.ads3:has(ins.adsbygoogle[data-ad-status="unfilled"]) {
  display: none !important;
}