/* default.css - Modernizat pentru Tailwind */

/* Setări de bază pentru corp */
body {
    overflow-x: hidden; /* Previne scroll orizontal accidental */
}

/* Animație pentru butonul Telegram (Bounce In) */
@keyframes bounceInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate-bounce-in {
  animation: bounceInUp 0.5s ease-out forwards;
}

/* Stiluri specifice pentru steaguri, dacă nu sunt gestionate inline */
.flag-icon {
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Ascunde scrollbar-ul urât la Iframe-uri dar permite scroll */
iframe::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Ajustări pentru AdSense să fie centrat */
.adsbygoogle {
    display: block;
    text-align: center;
    margin: 1rem auto;
}