* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #f5f5f5;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #111;
  border-bottom: 3px solid #ff8c00;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ff8c00;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px;
}

.site-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.logo-text span {
  color: #ff8c00;
  font-size: 30px;
  font-weight: bold;
}

.main-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #f5f5f5;
  text-decoration: none;
  background: #2a2a2a;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
}

.main-nav a:hover {
  background: #3a3f46;
  color: #ff8c00;
}

.hero-section {
  height: auto;
  min-height: 0;
  background:
    linear-gradient(rgba(0,0,0,0.12), rgba(0,0,0,0.22)),
    url("../images/site/county-compass-hero.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #111;
  aspect-ratio: 1920 / 700;
}

.page-banner {
  width: 100%;
  border-bottom: 2px solid #ff8c00;
  background: #111;
  line-height: 0;
}

.page-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.page-section,
.home-section {
  padding: 34px 24px 60px;
}

.section-title,
.page-section h1 {
  position: relative;
  color: #ff8c00;
  font-size: 42px;
  margin-bottom: 40px;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 140px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    #00d9ff,
    #ff9800,
    transparent
  );
}

.page-intro {
  max-width: 950px;
  margin: 0 auto 40px auto;
  padding: 22px 28px;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
  color: #f5f5f5;
  background:
    linear-gradient(
      145deg,
      rgba(34,34,34,0.96),
      rgba(18,18,18,0.98)
    );
  border: 2px solid rgba(255,140,0,0.55);
  border-radius: 18px;
  box-shadow:
    0 0 18px rgba(255,140,0,0.22),
    0 0 30px rgba(0,217,255,0.08);
  letter-spacing: 0.2px;
}

/* SPONSOR ADS - HORIZONTAL SCROLL */
#homepageAds,
#businessesAds,
#couponsAds,
#eventsAds,
#hiringAds {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 18px;
  margin: 30px 0 45px;
  padding: 0 0 35px;
  border-bottom: 2px solid rgba(0, 200, 255, 0.35);
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
}

#homepageAds::after,
#businessesAds::after,
#couponsAds::after,
#eventsAds::after,
#hiringAds::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #00d9ff,
    transparent
  );
  border-radius: 999px;
}

.site-ad {
  display: block;
  flex: 0 0 auto;
  width: 220px;
  max-width: 220px;
  overflow: visible;
  border-radius: 18px;
  border: 2px solid #3a3a3a;
  background: #111;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
  scroll-snap-align: start;
  padding: 6px;
}

.site-ad-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #111;
  border-radius: 14px;
}

/* FEATURED BUSINESS IMAGE-ONLY ROW */
.featured-heading-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 20px;
}

.featured-heading-img {
  width: 640px;
  max-width: 80%;
  height: auto;
  display: block;
}

#featuredBusinesses {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 22px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0 30px;
  margin-bottom: 45px;
}

#featuredBusinesses .site-ad {
  flex: 0 0 180px;
  width: 180px;
  max-width: 180px;
  overflow: visible;
  padding: 8px;
}

/* HOME PAGE LINK CARDS */
.home-info-section {
  margin-top: 50px;
}

.home-link-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.home-link-card {
  width: 240px;
  min-height: 160px;
}

.home-link-card {
  display: block;
  background: #1e1e1e;
  border: 2px solid #333;
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
  color: #f5f5f5;
}

.home-link-card:hover {
  border-color: #ff8c00;
}

.home-link-card h3 {
  color: #ff8c00;
  margin: 0 0 12px;
  font-size: 22px;
}

.home-link-card p {
  color: #ddd;
  margin: 0;
  line-height: 1.45;
}
.community-intro-box {
  max-width: 1000px;
  margin: 0 auto 40px auto;
  padding: 28px;
  background: linear-gradient(145deg, #1e1e1e, #141414);
  border: 2px solid rgba(255,140,0,0.45);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 22px rgba(255,140,0,0.12);
}

.community-intro-box h3 {
  margin-top: 0;
  margin-bottom: 18px;
  color: #ff8c00;
  font-size: 34px;
}

.community-intro-box p {
  margin: 0;
  color: #ddd;
  font-size: 18px;
  line-height: 1.8;
}

.submit-feature-wrap {
  text-align: center;
  margin: 40px auto 10px auto;
}

.submit-feature-button {
  display: inline-block;
  background: linear-gradient(90deg, #ff8c00, #ffaa33);
  color: #111;
  padding: 18px 34px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255,140,0,0.30);
  transition: 0.2s ease;
}

.submit-feature-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(255,140,0,0.45);
}

.ad-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  justify-items: center;
}

.ad-preview-card {
  width: 100%;
  max-width: 250px;
  background: #1e1e1e;
  border: 2px solid #333;
  border-radius: 14px;
  padding: 8px;
  overflow: visible;
}

.ad-preview-card a {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  border: 2px solid #3a3a3a;
  background: #111;
}

.ad-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ad-preview-card.ad-banner {
  grid-column: 1 / -1;
  max-width: 1100px;
}

.ad-preview-card.ad-banner a {
  aspect-ratio: 16 / 5;
}

.ad-preview-card.ad-square a {
  aspect-ratio: 1 / 1;
}

.ad-preview-card.ad-tall {
  max-width: 320px;
}

.ad-preview-card.ad-tall a {
  aspect-ratio: 3 / 4;
}

.business-grid,
.coupon-grid,
.ad-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
}

.business-card,
.coupon-card {
  width: 100%;
  max-width: 250px;
  justify-self: center;
  background: #1e1e1e;
  border: 2px solid #333;
  border-radius: 14px;
  padding: 8px;
  overflow: visible;
}

.coupon-card {
  border: 2px dashed #ff8c00;
}

.business-card:hover,
.coupon-card:hover {
  border-color: #ff8c00;
}


.card-image-link {
  position: relative;
  display: block !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 auto 10px auto !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
}

.card-image-link:hover {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.card-image-link img {
  margin-bottom: 0 !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card-image-link:hover img {
  transform: translateY(-2px);
  border-color: #ff8c00;
  box-shadow:
    0 0 12px rgba(255,140,0,0.55),
    0 8px 18px rgba(0,0,0,0.45);
}

.card-link-badge {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 20;
  background: rgba(17, 17, 17, 0.92);
  color: #ff8c00;
  border: 1px solid rgba(255,140,0,0.85);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
  pointer-events: none;

  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.card-image-link:hover .card-link-badge {
  opacity: 1;
  transform: translateY(0);
}


.business-card-image,
.business-image-preview {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: #111111;
  border-radius: 14px;
  border: 2px solid #333;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  margin: 0 auto 16px auto;
}

.business-card h2,
.coupon-card h2 {
  color: #ff8c00;
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.1;
}

.business-card p,
.coupon-card p {
  color: #ddd;
  margin: 0 0 4px;
  line-height: 1.25;
  font-size: 14px;
}

.business-description {
  line-height: 1.45;
  overflow: visible;
  display: block;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.business-card a,
.business-card button,
.coupon-card a,
.coupon-card button {
  display: inline-block;
  text-decoration: none;
  background: #ff8c00;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 8px;
  margin-right: 8px;
  border: none;
  cursor: pointer;
}

.business-card a:hover,
.business-card button:hover,
.coupon-card a:hover,
.coupon-card button:hover {
  background: #ffaa33;
}

/* COMPACT BUSINESS CARDS */
.compact-business-card {
  max-width: 250px;
  padding: 10px;
}

.compact-business-image {
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
}

.compact-business-card h2 {
  font-size: 19px;
  margin-bottom: 8px;
}

.business-category,
.business-address,
.business-phone {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 6px;
}

.compact-description {
  font-size: 13px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.business-button-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.compact-button {
  display: inline-block;
  text-decoration: none;
  background: #2b2b2b !important;
  color: #fff !important;
  padding: 7px 11px !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  border: 1px solid #444;
  transition: all 0.2s ease;
  margin-top: 4px !important;
  margin-right: 0 !important;
}

.compact-button:hover {
  background: #ff8c00 !important;
  color: #000 !important;
  border-color: #ffb347;
  box-shadow:
    0 0 10px rgba(255,140,0,0.7),
    0 0 18px rgba(255,140,0,0.35);
}

.search-box {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.search-box input,
.search-box select {
  width: 100%;
  max-width: 500px;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  background: #2b2b2b;
  color: #fff;
}

.load-more-wrap {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 18px;
}

.load-more-wrap button {
  background: #ff8c00;
  color: #000;
  border: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.load-more-wrap button:hover {
  background: #ffaa33;
}

.empty-message {
  text-align: center;
  color: #ccc;
  font-size: 18px;
}

/* ADMIN */
#adminLogin {
  max-width: 760px;
  margin: 0 auto;
}

#adminContent .page-section {
  max-width: 1500px;
  margin: 0 auto;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  align-items: start;
}

.admin-card {
  background: #1e1e1e;
  border: 2px solid #333;
  border-radius: 14px;
  padding: 24px;
}

.admin-card h2 {
  color: #ff8c00;
  margin-top: 0;
}

.admin-card input,
.admin-card textarea,
.admin-card select,
#adminBusinessSearch {
  width: 100%;
  display: block;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #2b2b2b;
  color: #fff;
  font-size: 15px;
}

.admin-card textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-card button,
#adminLogin button {
  display: inline-block;
  background: #ff8c00;
  color: #000;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.edit-button {
  background: #444 !important;
  color: #fff !important;
}

.delete-button {
  background: #b00020 !important;
  color: #fff !important;
}

.admin-preview-section {
  margin-top: 42px;
}

.admin-preview-section h2,
.admin-preview-section > h2 {
  color: #ff8c00;
}

.image-upload-label {
  display: block;
  margin: 12px 0 8px;
  color: #ff8c00;
  font-weight: bold;
}

/* ADVERTISE PAGE */
.ad-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 34px 0 50px;
}

.ad-card {
  background: #1e1e1e;
  border: 2px solid #333;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.ad-card:hover {
  border-color: #ff8c00;
}

.ad-card h2 {
  color: #ff8c00;
  margin: 0 0 14px;
  font-size: 24px;
}

.ad-card p {
  color: #ddd;
  line-height: 1.45;
  margin: 0 0 12px;
}

.ad-card button {
  background: #ff8c00;
  color: #000;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
}

.ad-card button:hover {
  background: #ffaa33;
}

.ad-request-section {
  max-width: 1000px;
  margin: 0 auto;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.ad-request-section h2 {
  color: #ff8c00;
  margin-top: 0;
  text-align: center;
  font-size: 34px;
}

.ad-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.ad-request-form input,
.ad-request-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #444;
  border-radius: 10px;
  background: #2b2b2b;
  color: #fff;
  font-size: 15px;
}

.ad-request-form textarea {
  grid-column: 1 / -1;
  min-height: 130px;
  resize: vertical;
}

.ad-request-form button {
  grid-column: 1 / -1;
  justify-self: center;
  background: #ff8c00;
  color: #000;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.ad-request-form button:hover {
  background: #ffaa33;
}

@media (max-width: 1100px) {
  .business-grid,
  .coupon-grid,
  .ad-preview-grid,
  .ad-options {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .home-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .main-nav a {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }

  .section-title,
  .page-section h1 {
    font-size: 32px;
  }

 .logo-text span {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #f28c00;
  text-shadow:
    0 2px 0 #111,
    0 0 8px rgba(255, 140, 0, 0.45),
    0 0 18px rgba(255, 140, 0, 0.18);
}

  .site-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 140, 0, 0.45));
}

  .hero-section {
    height: auto;
    aspect-ratio: 1920 / 700;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #111;
  }

  .page-banner {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #ff8c00;
    background: #111;
    line-height: 0;
  }

  .page-banner-img,
  .page-banner img {
    width: 100%;
    height: auto;
    display: block;
  }

 .business-grid,
.coupon-grid,
.ad-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
}

  .home-link-grid {
    grid-template-columns: 1fr;
  }

  .ad-request-form {
    grid-template-columns: 1fr;
  }

  #featuredBusinesses .site-ad {
    flex-basis: 150px;
    width: 150px;
    max-width: 150px;
  }

  .compact-business-card {
    max-width: 100%;
  }

  .page-intro {
    font-size: 18px;
    padding: 18px 16px;
  }
}
@media (max-width: 768px) {

  .business-grid,
  .coupon-grid,
  .ad-preview-grid,
  .home-link-grid {
    grid-template-columns: 1fr !important;
  }

  .business-card,
  .coupon-card,
  .event-card,
  .hiring-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

}
.logo-text span {
  font-size: 42px !important;
  font-weight: 900 !important;
  letter-spacing: 1.5px !important;
  color: #f28c00 !important;

  text-shadow:
    0 2px 0 #111,
    0 0 8px rgba(255, 140, 0, 0.45),
    0 0 18px rgba(255, 140, 0, 0.18) !important;
}

.site-logo {
  width: 58px !important;
  height: 58px !important;
  object-fit: contain;

  filter:
    drop-shadow(0 0 6px rgba(255, 140, 0, 0.45));
}
.logo-text span {
  font-size: 36px !important;
  font-weight: 900 !important;
  letter-spacing: 1px !important;
  color: #cfd3d8 !important;
  -webkit-text-stroke: 0.45px #ff8c00;
  text-shadow:
    0 2px 2px #000,
    0 0 5px rgba(255, 140, 0, 0.28);
}

.site-logo {
  width: 54px !important;
  height: 54px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.35));
}

/* NEEDS ATTENTION DASHBOARD */
.needs-attention-card {
  margin-bottom: 24px;
  border-color: rgba(255, 140, 0, 0.55);
}

.needs-attention-note {
  color: #ccc;
  margin-top: -6px;
}

.needs-attention-good {
  color: #8cff8c;
  font-weight: bold;
}

.needs-attention-item {
  background: #181818;
  border: 1px solid #444;
  border-left: 6px solid #ff8c00;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}

.needs-attention-item strong,
.needs-attention-item span,
.needs-attention-item small {
  display: block;
}

.needs-attention-item span {
  color: #f5f5f5;
  margin-top: 5px;
}

.needs-attention-item small {
  color: #aaa;
  margin-top: 3px;
}





/* FREE TESTING BANNER - HIGH VISIBILITY */
.free-now-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, #ffcc00 0%, #ff8c00 45%, #ff3b00 100%);
  border: 5px solid #fff200;
  border-radius: 24px;
  padding: 34px 24px;
  margin: 0 auto 32px auto;
  text-align: center;
  color: #111;
  box-shadow:
    0 0 0 4px rgba(0,0,0,0.85),
    0 0 26px rgba(255,140,0,0.95),
    0 0 60px rgba(255,60,0,0.55);
  animation: freeBannerGlow 1.35s ease-in-out infinite alternate;
}

.free-now-banner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.0) 35%,
      rgba(255,255,255,0.38) 50%,
      rgba(255,255,255,0.0) 65%,
      transparent 100%
    );
  transform: translateX(-45%);
  animation: freeBannerSweep 2.8s linear infinite;
  pointer-events: none;
}

.free-now-alert {
  position: relative;
  display: inline-block;
  background: #111;
  color: #fff200;
  border: 2px solid #fff200;
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  z-index: 1;
}

.free-now-big {
  position: relative;
  color: #111;
  font-size: 68px;
  font-weight: 1000;
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 #fff200,
    0 6px 0 rgba(0,0,0,0.18),
    0 0 16px rgba(255,255,255,0.75);
  z-index: 1;
}

.free-now-small {
  position: relative;
  max-width: 850px;
  margin: 16px auto 0 auto;
  color: #111;
  font-size: 26px;
  font-weight: 1000;
  line-height: 1.2;
  z-index: 1;
}

.free-now-bottom {
  position: relative;
  display: inline-block;
  max-width: 850px;
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(17,17,17,0.92);
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  z-index: 1;
}

@keyframes freeBannerGlow {
  from {
    box-shadow:
      0 0 0 4px rgba(0,0,0,0.85),
      0 0 20px rgba(255,140,0,0.72),
      0 0 42px rgba(255,60,0,0.35);
    transform: scale(1);
  }

  to {
    box-shadow:
      0 0 0 4px rgba(0,0,0,0.9),
      0 0 34px rgba(255,242,0,0.95),
      0 0 76px rgba(255,60,0,0.62);
    transform: scale(1.012);
  }
}

@keyframes freeBannerSweep {
  from {
    transform: translateX(-52%) rotate(8deg);
  }

  to {
    transform: translateX(52%) rotate(8deg);
  }
}

@media (max-width: 768px) {
  .free-now-banner {
    padding: 26px 16px;
    border-radius: 18px;
  }

  .free-now-alert {
    font-size: 14px;
  }

  .free-now-big {
    font-size: 42px;
  }

  .free-now-small {
    font-size: 20px;
  }

  .free-now-bottom {
    font-size: 15px;
    line-height: 1.3;
  }
}



/* RESTORE TAKE ME THERE LINKS */
.site-ad {
  position: relative;
}

.site-ad::after {
  content: "Take Me There ↗";
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 30;
  background: rgba(17,17,17,0.92);
  color: #ff8c00;
  border: 1px solid rgba(255,140,0,0.85);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.site-ad:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.card-link-badge {
  opacity: 0;
  transform: translateY(-4px);
}

.card-image-link:hover .card-link-badge {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .site-ad::after {
    opacity: 1;
    transform: none;
  }

  .card-link-badge {
    opacity: 1;
    transform: none;
  }
}

