@charset "utf-8";
/* CSS Document */

    /* Basic reset */
    * {
      box-sizing: border-box;
    }

    /* Ad container */
    #slideAd {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      max-width: 400px;
      width: 90%;
      background-color: #fff;
      border: 2px solid #444;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      padding: 1rem;
      z-index: 1000;
      transform: translateY(100%);
      opacity: 0;
      transition: transform 0.5s ease, opacity 0.5s ease;
      border-radius: 0.5rem;
    }

    #slideAd.show {
      transform: translateY(0);
      opacity: 1;
    }

    #slideAd img {
      width: 100%;
      height: auto;
      border-radius: 0.25rem;
    }

    #slideAd p {
      margin-top: 0.5rem;
      font-size: 1rem;
      color: #222;
    }

    @media (max-width: 600px) {
      #slideAd {
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
      }
    }