/* AdMob Banner Styles */
.admob-banner {
  width: 100%;
  min-height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.admob-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.admob-banner.loaded {
  background: transparent;
  border: none;
  min-height: auto;
}

.admob-banner.loaded::before {
  display: none;
}

.admob-banner.loaded span {
  display: none;
}

/* Banner positioning */
.top-banner {
  margin-top: 10px;
  margin-bottom: 20px;
}

.bottom-banner {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
  .admob-banner {
    min-height: 60px;
    margin: 10px 0;
  }
  
  .top-banner, .bottom-banner {
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  .admob-banner {
    min-height: 50px;
    border-radius: 6px;
  }
}

/* Hide banners in web version */
.web-version .admob-banner {
  display: none;
}