* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-gradient: linear-gradient(90deg, #8a2be2, #ff1493);
  --dark-bg: #000000;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent-pink: #ff1493;
  --accent-purple: #8a2be2;
  --hover-gray: #2a2a2a;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-primary);
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}

.header {
  background: linear-gradient(
    90deg,
    var(--accent-purple),
    var(--dark-bg),
    var(--accent-pink)
  );
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-search-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
}

.search-container {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  width: 384px;
}

.search-container .search-icon {
  color: #666;
  margin-right: 0.5rem;
  font-size: 16px;
}

.search-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.875rem;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.game-icons {
  display: flex;
  gap: 0.5rem;
}

.game-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.game-icon:hover {
  transform: scale(1.1);
}

.divider {
  width: 1px;
  height: 48px;
  background: #666;
}

.hot-games {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-size: 1.5rem;
  font-weight: 700;
}

.hot-icon {
  height: 48px;
}

.owl-container {
  display: flex;
  align-items: center;
  position: relative;
  height: 48px;
}

.owl-icon {
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.owl-games-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 48px;
  z-index: 5;
}

.owl-games-scroll::-webkit-scrollbar {
  display: none;
}

.owl-game-item {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  text-align: center;
  position: relative;
}

.owl-game-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 1px solid transparent;
}

.owl-game-circle:hover {
  transform: scale(1);
  border-color: #ff1493;
  z-index: 20;
}

.owl-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.owl-game-image:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.owl-game-tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-bg);
  color: var(--text-primary);
  padding: 0.3rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 9px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1000;
  border: 1px solid var(--accent-pink);
}

.owl-game-tooltip::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid var(--accent-pink);
}

.owl-game-item:hover .owl-game-tooltip {
  opacity: 1;
  visibility: visible;
}

.owl-game-rank {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--accent-pink);
  color: white;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: bold;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

.mobile-menu-content {
  padding: 1rem;
  border-top: 1px solid #333;
  background: var(--dark-bg);
}

/* Main Content */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.view-all {
  color: var(--text-secondary);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Top 10 Games Slider */
.top-games-slider {
  margin-bottom: 2rem;
  position: relative;
}

.top-games-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
}

.top-games-scroll::-webkit-scrollbar {
  display: none;
}

.top-game-item {
  flex: 0 0 auto;
  width: 80px;
  text-align: center;
  position: relative;
}

.top-game-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--card-bg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 3px solid transparent;
}

.top-game-circle:hover {
  transform: scale(1.1);
  border-color: #ff1493;
}

.top-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.top-game-image:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.top-game-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-bg);
  color: var(--text-primary);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 10;
  border: 1px solid var(--accent-pink);
}

.top-game-tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--accent-pink);
}

.top-game-item:hover .top-game-tooltip {
  opacity: 1;
  visibility: visible;
}

.top-game-rank {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-pink);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.popular-games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.more-games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.top-picks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Card Styles */
.game-card {
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  cursor: pointer;
}

.game-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
  display: block;
}

.game-card .game-image {
  transition: transform 0.3s ease;
}

.game-card:hover .game-image {
  transform: scale(1.03);
  cursor: pointer;
}

.game-card > div:first-child {
  position: relative;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  background: transparent;
  overflow: hidden;
}

.game-card:hover > div:first-child {
  border: 3px solid #ff1493;
}
.game-card:hover .rating-badge {
  opacity: 1;
}

.rating-badge {
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50px;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 12px;
  transition: all 0.3s ease;
  z-index: 2;
}

.game-card:hover .rating-badge {
  transform: scale(1.1);
}

.star-rating {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: #ffd700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.game-card:hover .star-rating {
  opacity: 1;
}

.hot-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: linear-gradient(45deg, #ff8c00, #ff4500);
  border-radius: 50px;
  padding: 0.25rem 0.5rem;
  font-size: 12px;
}

.game-info {
  padding: 0 0.75rem 0.75rem 0.75rem;
}

.game-title {
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-card {
  background: #333;
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.category-card:hover {
  background: #444;
}

.category-icon {
  font-size: 20px;
}
.category-icon img{
  width: 33px;
  height: 33px;
}

.category-text {
  font-size: 14px;
}

.video-card,
.blog-card,
.top-pick-card {
  background: var(--card-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}

.content-image {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.content-image:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.content-info {
  padding: 1rem;
}

.content-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.content-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* What is now.gg section */
.about-section {
  background: var(--card-bg);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.about-content {
  margin-top: 1.5rem;
}

.about-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  padding-left: 1rem;
}

.about-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: var(--accent-pink);
  border-radius: 2px;
}

.about-advantages {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.advantage-item {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
}

.advantage-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-pink);
  font-weight: bold;
}

.about-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.about-advantages {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.advantage-item {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.advantage-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-pink);
  font-weight: bold;
}

/* FAQ Section */
.faq-item {
  background: var(--card-bg);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.faq-header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question {
  font-weight: 500;
  flex: 1;
}

.faq-arrow {
  transition: transform 0.2s ease;
  font-size: 16px;
}

.faq-arrow.active {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 1rem 1rem 1rem;
  border-top: 1px solid #333;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

.faq-answer.show {
  display: block;
}

.show-more {
  background: var(--accent-pink);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  display: block;
  margin: 2rem auto;
}

.show-more:hover {
  background: #e00077;
}

@media (min-width: 640px) {
  .popular-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .more-games-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-picks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .search-container {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .header-container {
    padding: 1rem 2rem;
  }

  .game-icons {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .mobile-search-btn {
    display: none;
  }
}

@media (min-width: 1024px) {
  .popular-games-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .more-games-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blogs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .top-picks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .categories-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (max-width: 767px) {
  .rating-badge {
    opacity: 1;
  }

  .nav-icons {
    gap: 1rem;
  }

  .game-icons {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu-content {
    display: none;
  }

  .mobile-menu.active .mobile-menu-content {
    display: block;
  }

  /* Mobile Search */
  .search-form {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--dark-bg);
    border-top: 1px solid #333;
    display: none;
  }

  .search-form.active {
    display: block;
  }

  .search-container {
    width: 100%;
  }

  .mobile-search-btn {
    display: block;
  }
}

/* --- Hot Games Module Styling --- */
.hot-games-section {
  background-color: #0f1014;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.hot-games-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  height: 60px;
}

.hot-label-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0; 
  cursor: default;
}

.hot-text-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.text-hot {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.text-games {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.icon-gamepad {
  color: #ff0055; 
  width: 18px;
  height: 18px;
  display: flex;
  animation: pulse 2s infinite;
}

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

.hot-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 20px;
  flex-shrink: 0;
}

.hot-scroll-container {
  flex-grow: 1;
  overflow-x: auto; 
  overflow-y: hidden;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 2%,
    black 95%,
    transparent 100%
  ); 
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 2%,
    black 95%,
    transparent 100%
  );
}

.hot-scroll-container::-webkit-scrollbar {
  display: none;
}

.hot-icon-track {
  display: flex;
  gap: 12px;
  padding: 5px 5px;
  width: max-content; 
}

.game-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.game-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.game-circle:hover {
  transform: scale(1.15) translateY(-2px);
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
  z-index: 2;
}

.bg-gradient-1 {
  background: radial-gradient(circle at 30% 30%, #ff9a9e 0%, #fecfef 100%);
}
.bg-gradient-2 {
  background: radial-gradient(circle at 30% 30%, #a18cd1 0%, #fbc2eb 100%);
}
.bg-gradient-3 {
  background: radial-gradient(circle at 30% 30%, #84fab0 0%, #8fd3f4 100%);
}
.bg-gradient-4 {
  background: radial-gradient(circle at 30% 30%, #e0c3fc 0%, #8ec5fc 100%);
}
.bg-gradient-5 {
  background: radial-gradient(circle at 30% 30%, #ffecd2 0%, #fcb69f 100%);
}
.bg-gradient-6 {
  background: radial-gradient(circle at 30% 30%, #ff9a9e 0%, #fecfef 100%);
}
.bg-gradient-7 {
  background: radial-gradient(circle at 30% 30%, #f6d365 0%, #fda085 100%);
}
.bg-gradient-8 {
  background: radial-gradient(circle at 30% 30%, #5ee7df 0%, #b490ca 100%);
}

.game-tooltip {
  position: fixed; 
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  pointer-events: none; 
  opacity: 0;
  transform: translateY(10px) translateX(-50%);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 9999;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
}

.game-tooltip.visible {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
}

@media (max-width: 768px) {
  .hot-games-inner {
    padding: 0 15px;
  }
  .hot-divider {
    margin-right: 15px;
  }
}

/* --- Category Page Module Styling --- */

.category-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.category-hero-section {
  position: relative;
  padding: 30px 0 30px;
  text-align: center;
  overflow: hidden;
}

.category-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  z-index: -1;
}

.hero-text-container {
  position: relative;
  z-index: 1;
}

.hero-main-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 30px;
}

.hero-divider {
  height: 3px;
  margin: 0 auto 30px;
  border-radius: 2px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(
      0.25turn,
      rgba(56, 2, 155, 0),
      rgb(255, 0, 128),
      rgba(56, 2, 155, 0)
    )
    1 / 1 / 0 stretch;
}

.hero-description,
.hero-description-cn {
  max-width: 800px;
  margin: 0 auto 10px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.category-game-list {
  margin-bottom: 0;
  padding-top: 20px;
}

.category-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
 
}

@media (max-width: 900px) {
  .hero-main-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .category-hero-section {
    padding: 40px 0 30px;
  }
  .hero-main-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .hero-description,
  .hero-description-cn {
    font-size: 0.95rem;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ad-banner {
  max-width: 1400px;
  width: 100%;
  text-align: center;
  background-color: #333;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 15px;
}
.ad-banner img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.isheight-ad-banner { 
  height: 300px;
}