/* ================================
   7-STAR GLOBAL CSS
   File: /assets/css/global.css
   Safe prefix: sevenstar-
================================ */

/* FAVICON / GLOBAL FOOTER LINK NAV */

.sevenstar-quick-links {
  max-width: 1320px;

  margin: 70px auto 70px;

  padding: 0 20px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 14px;
}

.sevenstar-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 14px 22px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.04)
    );

  border: 1px solid rgba(255,255,255,0.12);

  color: #ffffff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;

  backdrop-filter: blur(10px);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.sevenstar-quick-links a:hover {
  background:
    linear-gradient(
      135deg,
      #8a4af3,
      #6d28d9
    );

  border-color: rgba(138,74,243,0.5);

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(138,74,243,0.28);

  color: #ffffff;
}

.sevenstar-quick-links a:focus-visible {
  outline: 3px solid rgba(138,74,243,0.65);
  outline-offset: 4px;
}

/* GLOBAL FOOTER STYLE */

.sevenstar-footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 24px 16px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sevenstar-footer p {
  margin: 0;
  line-height: 1.8;
}

.sevenstar-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  transition: color 0.25s ease;
}

.sevenstar-footer a:hover {
  color: #8a4af3;
}

.sevenstar-footer-divider {
  margin: 0 10px;
  color: rgba(255,255,255,0.25);
}

/* GLOBAL FAVICON/SEO QUICK LINKS MOBILE */

@media (max-width: 620px) {

  .sevenstar-quick-links {
    gap: 10px;
    margin-bottom: 50px;
    padding: 0 14px;
  }

  .sevenstar-quick-links a {
    width: calc(50% - 10px);
    min-height: 44px;
    padding: 12px 10px;
    font-size: 12px;
  }

  .sevenstar-footer {
    font-size: 12px;
    padding: 20px 14px;
  }

  .sevenstar-footer-divider {
    display: block;
    margin: 4px 0;
  }

}


/* =========================================
   7-STAR GLOBAL COUNTERFEIT POPUP
========================================= */

.sevenstar-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sevenstar-popup-visible {
  opacity: 1;
  visibility: visible;
}

.sevenstar-popup-content {
  position: relative;

  width: 100%;
  max-width: 760px;

  padding: 38px;

  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(16, 16, 16, 0.98),
    rgba(24, 24, 24, 0.96)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);

  text-align: center;

  transform: translateY(20px) scale(0.96);

  transition: transform 0.35s ease;
}

.sevenstar-popup-visible .sevenstar-popup-content {
  transform: translateY(0) scale(1);
}

.sevenstar-warning-popup h2 {
  margin-bottom: 18px;

  color: #ffffff;

  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
}

.sevenstar-popup-text {
  max-width: 640px;

  margin: 0 auto 24px;

  color: #d0d0d0;

  font-size: 17px;
  line-height: 1.8;
}

.sevenstar-popup-text strong {
  color: #ffffff;
}

.sevenstar-warning-popup-img {
  display: block;

  width: 100%;
  max-width: 560px;
  height: auto;

  margin: 0 auto 28px;

  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.sevenstar-popup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 190px;

  padding: 14px 26px;

  border: 0;
  border-radius: 999px;

  background: linear-gradient(135deg, #dc2626, #ff3b3b);

  color: #ffffff;

  font-size: 15px;
  font-weight: 900;

  cursor: pointer;

  box-shadow: 0 14px 34px rgba(220, 38, 38, 0.28);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sevenstar-popup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(220, 38, 38, 0.38);
}

.sevenstar-popup-close-btn {
  position: absolute;

  top: 16px;
  right: 18px;

  width: 42px;
  height: 42px;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  color: #ffffff;

  font-size: 26px;
  line-height: 1;

  cursor: pointer;

  transition: background 0.25s ease, transform 0.25s ease;
}

.sevenstar-popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(90deg);
}

@media (max-width: 620px) {
  .sevenstar-popup-overlay {
    padding: 12px;
  }

  .sevenstar-popup-content {
    width: 94%;
    max-width: 94%;

    padding: 24px 16px;

    border-radius: 22px;
  }

  .sevenstar-warning-popup h2 {
    font-size: 28px;
  }

  .sevenstar-popup-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .sevenstar-warning-popup-img {
    width: 100%;
    max-width: 100%;

    margin-bottom: 22px;
  }

  .sevenstar-popup-button {
    width: 100%;
    min-width: auto;
    min-height: 48px;

    font-size: 14px;
  }

  .sevenstar-popup-close-btn {
    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;

    font-size: 22px;
  }
}
