* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #02040a;
  color: white;
  overflow-x: hidden;
}

:root {
  --border: 1px solid rgba(8, 96, 136, 0.555);
}

/* BACKGROUND */

.bg-gradient {
  position: fixed;
  inset: 0;
  background: #02040a;
  z-index: -3;
}

.mouse-glow {
  display: none;
  /* Removed: Expensive filter on fixed element */
}

/* NAVBAR */

.navbar {
  width: 100%;
  height: 55px;
  position: fixed;
  /* top: 10px; */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(10, 2, 35, 0.886);
  border-bottom: var(--border);
  z-index: 1000;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to right, #fff, #7033fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo img {
  width: 45px;
  margin: -10px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: .3s;
  position: relative;
}

.nav-links a:hover {
  color: #a855f7;
}

/* =========================
   CATEGORY BUTTONS
========================= */

.category-buttons-section {
  padding: 90px 7%;
  text-align: center;
}

/* TITLE */

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 15px;
  background:
    linear-gradient(135deg, #fff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {

  color: #cbd5e1;

  font-size: 17px;

  max-width: 650px;

  margin: auto;

  line-height: 1.8;
}

/* BUTTON WRAPPER */

.category-buttons {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 22px;
}

/* BUTTON */

.category-btn {

  position: relative;

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 16px 32px;

  border-radius: 16px;

  text-decoration: none;

  color: white;

  font-size: 1.1rem;

  font-weight: 700;

  overflow: hidden;

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

  border: var(--border);

  transition:
    transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-color .4s ease,
    box-shadow .4s ease,
    background .4s ease;
}

/* ICON */

.category-btn span {
  font-size: 24px;
}

/* HOVER */

.category-btn:hover {

  transform:
    translateY(-8px) scale(1.02);

  border-color:
    rgba(168, 85, 247, 0.6);
  box-shadow: none;

  background:
    rgba(168, 85, 247, 0.08);
}

/* MOBILE */

@media(max-width:768px) {

  .category-buttons-section {
    padding: 70px 5%;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .category-btn {

    width: 100%;

    justify-content: center;

    font-size: 17px;

    padding: 18px 24px;
  }

}

/* CARDS */

/* =========================
   CINePORTAL PREMIUM CARDS
========================= */

.cards-section {
  padding: 20px;
}

.cards-container {
  display: grid;
  grid-template-columns:
    repeat(auto-fill, minmax(220px, 220px));

  justify-content: center;
  gap: 22px;
}

/* CARD */

.site-card-shell {
  position: relative;
  height: 150px;
  border-radius: 22px;
}

.site-card-shell .movie-card {
  width: 100%;
  height: 100%;
}

.report-flag {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #7890a7;
  font-size: 23px;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, color .2s ease;
}

.report-flag:hover {
  transform: translateY(-2px) scale(1.04);
  color: #e8f4ff;
}

.trusted-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  min-width: 54px;
  padding: 0 9px;
  border: 1px solid #23c9ff;
  border-radius: 999px;
  background: #042437;
  color: #69dcff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .7px;
  line-height: 1;
  text-transform: uppercase;
}

.skeleton-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(145deg, rgba(18, 18, 25, .94), rgba(8, 8, 12, .98));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.skeleton-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .08) 45%, transparent 70%);
  transform: translateX(-100%);
  animation: skeletonShimmer 1.25s ease-in-out infinite;
}

.skeleton-logo,
.skeleton-line {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.skeleton-logo {
  width: 58%;
  height: 34px;
  margin: auto auto 22px;
}

.skeleton-line {
  width: 72%;
  height: 10px;
  margin-top: 10px;
}

.skeleton-line.short {
  width: 46%;
}

.category-empty-state {
  grid-column: 1 / -1;
  padding: 34px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  color: #b8c7d8;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

@keyframes skeletonShimmer {
  to {
    transform: translateX(100%);
  }
}

.movie-card {
  position: relative;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  background:
    #030013;

  border: var(--border);

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

  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s ease;

  cursor: pointer;
  isolation: isolate;

  text-decoration: none;
}

/* SOFT INNER GLOW */

.movie-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top left,
      rgba(112, 51, 254, 0.2),
      transparent 45%);

  opacity: .7;

  z-index: 0;
}

/* HOVER LIGHT */

.movie-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0));

  opacity: 0;

  transition: .35s ease;
}

/* CARD HOVER */

.movie-card:hover {

  transform:
    translateY(-10px) scale(1.03);

  border-color:
    rgba(168, 85, 247, 0.8);

  border: 1px solid #a855f7;
  box-shadow: none;

  background:
    rgba(168, 85, 247, 0.05);
}

.movie-card:hover::after {
  opacity: 1;
}

/* IMAGE */

.movie-card img {
  position: relative;
  z-index: 2;

  width: 72%;
  max-height: 72px;

  object-fit: contain;
  transition: transform .3s ease;
}

.movie-card:hover img {
  transform: scale(1.06);
}

/* OVERLAY */

.card-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 18px;

  background:
    linear-gradient(to top,
      rgba(2, 4, 10, 0.95) 0%,
      rgba(2, 4, 10, 0.4) 100%,
      transparent);

  opacity: 0;

  transition:
    opacity .2s ease,
    transform .2s ease;

  transform: translateY(12px);

  z-index: 3;
}

.movie-card:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* TITLE */

.card-overlay h3 {
  color: white;

  font-size: 1.1rem;
  font-weight: 700;

  margin-bottom: 6px;

  letter-spacing: .3px;
}

/* CATEGORY */

.card-overlay p {
  color: #c4b5fd;

  font-size: 13px;

  margin-bottom: 10px;
}

/* TAGS */

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tags span {
  padding: 5px 10px;

  border-radius: 999px;

  background:
    rgba(168, 85, 247, .16);

  border:
    1px solid rgba(168, 85, 247, .28);

  color: #e9d5ff;

  font-size: 11px;
  font-weight: 600;
  background: rgba(168, 85, 247, .9);
}



/* ACTIVE STATE */

.movie-card.active {
  border-color:
    #a855f7;

  box-shadow:
    0 0 25px rgba(168, 85, 247, .3);
}

/* REVEAL ANIMATION */

.site-card-shell {
  opacity: 0;
  transform:
    translateY(34px) scale(.965);

  animation: cardReveal .4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.site-card-shell.active {
  animation: cardReveal .4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.site-card-shell .movie-card {
  opacity: 1;
  transform: none;
  animation: none;
}

.site-card-shell:nth-child(1) {
  animation-delay: .05s;
}

.site-card-shell:nth-child(2) {
  animation-delay: .1s;
}

.site-card-shell:nth-child(3) {
  animation-delay: .15s;
}

.site-card-shell:nth-child(4) {
  animation-delay: .2s;
}

.site-card-shell:nth-child(5) {
  animation-delay: .25s;
}

.site-card-shell:nth-child(6) {
  animation-delay: .3s;
}

.site-card-shell:nth-child(7) {
  animation-delay: .35s;
}

.site-card-shell:nth-child(8) {
  animation-delay: .4s;
}

.site-card-shell:nth-child(9) {
  animation-delay: .45s;
}

.site-card-shell:nth-child(10) {
  animation-delay: .5s;
}

@keyframes cardReveal {

  0% {
    opacity: 0;
    transform:
      translateY(34px) scale(.965);
  }

  58% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform:
      translateY(0) scale(1);
  }

}

@media (prefers-reduced-motion: reduce) {
  .site-card-shell {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }
}

/* MOBILE */

@media(max-width:768px) {

  .site-card-shell {
    height: 120px;
    border-radius: 18px;
  }

  .cards-container {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 16px;
  }

  .movie-card {
    height: 120px;
    border-radius: 18px;
  }

  .movie-card img {
    width: 75%;
    max-height: 52px;
  }

  .movie-card.featured {
    grid-column: span 1;
    /* Forces it to stay in one column */
    height: 120px;
    /* Matches the standard card height for uniformity */
  }

  .featured-shell {
    grid-column: span 1;
    height: 120px;
  }

  .report-flag {
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    font-size: 21px;
  }

  .trusted-badge {
    top: 10px;
    left: 10px;
    height: 17px;
    min-width: 50px;
    padding: 0 8px;
    font-size: 7px;
  }

  .card-overlay {
    padding: 14px;
  }

  .card-overlay h3 {
    font-size: 14px;
  }

  .card-overlay p {
    font-size: 11px;
  }

  .card-tags span {
    font-size: 10px;
    padding: 4px 8px;
  }

}

/* SMALL MOBILE */

@media(max-width:480px) {

  .cards-container {
    gap: 14px;
  }

  .site-card-shell {
    height: 105px;
  }

  .movie-card {
    height: 105px;
  }

  .movie-card img {
    max-height: 42px;
  }

}

.community-section-compact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

.community-links {
  display: flex;
  gap: 30px;
}

.standard-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.inline-icon {
  height: 22px;
  width: auto;
  margin: 0 6px;
  vertical-align: middle;
}

/* =========================
   MODERN CINEPORTAL FOOTER
========================= */

.cine-footer {
  background:
    linear-gradient(to bottom,
      #060532,
      #080808);
  border-top: var(--border);
  margin-top: 100px;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-bottom: 70px;
}

/* TOP */
.cine-footer-top {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding:
    70px 0 50px;
  display: grid;
  grid-template-columns:
    320px 1fr;
  gap: 70px;
}

/* BRAND */
.cine-footer-brand img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin-bottom: 18px;
}

.cine-footer-brand h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.cine-footer-brand p {
  color: #9f9f9f;
  line-height: 1.8;
  font-size: 0.97rem;
}

/* GRID */
.cine-footer-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(10px, 1fr));
  gap: 40px;
}

/* BOX */
.cine-footer-box h3 {
  color: #fff;
  margin-bottom: 22px;
  font-size: 1.1rem;
  position: relative;
}

.cine-footer-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 35px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
}

.cine-footer-box a {
  display: block;
  color: #9f9f9f;
  text-decoration: none;
  margin-bottom: 14px;
  transition: 0.25s ease;
}

.cine-footer-box a:hover {
  color: #fff;
  transform: translateX(6px);
}

.cine-footer-box p {
  color: #9f9f9f;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* BOTTOM */
.cine-footer-bottom {
  border-top: 1px solid #1c1c1c;
  padding: 22px;
  text-align: center;
}

.cine-footer-bottom p {
  color: #6f6f6f;
  font-size: 0.9rem;
}

/* MOBILE */
@media(max-width:900px) {
  .cine-footer-top {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media(max-width:600px) {
  .cine-footer {
    margin-top: 60px;
  }

  .cine-footer-top {
    width: 92%;
    padding: 15px 0 30px;
  }

  .cine-footer-brand h2 {
    font-size: 1.5rem;
  }
}

/* MOBILE */

/* =========================
   SLIDE-IN SIDEBAR MENU
========================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 140px;
  max-width: 85%;
  height: 100vh;
  background:
    linear-gradient(180deg,
      rgba(16, 16, 25, 0.98),
      rgba(8, 8, 14, 0.98));
  border-left:
    1px solid rgba(29, 28, 29, 0.763);
  box-shadow: -5px 0 20px rgba(0, 0, 0, .5);
  display: flex;
  flex-direction: column;
  padding: 70px 14px 30px;
  gap: 6px;
  z-index: 3000;
  transform: translateX(100%);
  transition:
    transform .45s cubic-bezier(.77, 0, .18, 1);
  overflow-y: auto;
}

/* ACTIVE */

.mobile-menu.active {
  transform: translateX(0);
}

/* MENU LINKS */

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 4px;
  border-radius: 6px;
  background:
    rgba(255, 255, 255, 0.04);
  border:
    1px solid rgba(255, 255, 255, 0.06);
  transition: transform .2s ease, background-color .2s ease;
}

/* HOVER */

.mobile-menu a:hover {

  transform: translateX(6px);

  background:
    rgba(168, 85, 247, .16);
  border-color:
    rgba(168, 85, 247, .35);
  box-shadow: none;
}

/* CLOSE BUTTON */

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    rgba(255, 255, 255, 0.06);
  border:
    1px solid rgba(255, 255, 255, 0.08);
  font-size: 20px;
  cursor: pointer;
  transition:
    transform .25s ease,
    background .25s ease;
}

.close-btn:hover {
  transform: rotate(90deg);

  background:
    rgba(168, 85, 247, .18);
}

/* REAL OVERLAY */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
  z-index: 2500;
}

/* ACTIVE */

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-btn {
  display: none;
}

/* MOBILE ONLY */

@media(min-width:761px) {

  .mobile-menu {
    display: none;
  }

}

@media(max-width:760px) {

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

}

/* =========================
   MODERN CATEGORY PANEL
========================= */
.category-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.category-panel {
  padding: 20px 12px;
  border: var(--border);
  margin: 10px;
  border-radius: 18px;
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@media(min-width:400px) {
  .category-panel {
    max-width: 1056px;
    width: 100%;
  }
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 10px;
}

/* GRID */

.category-title h2 {
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 25px;
  background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-modern-grid {
  display: grid;
  grid-template-columns:
    repeat(5, 1fr);
  gap: 22px;
}

/* CARD */

.modern-category-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  text-decoration: none;
  background:
    rgba(30, 30, 45, 0.9);
  border:
    var(--border);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s ease;
  isolation: isolate;
  height: 85px;
  padding-left: 15px;
}

/* GLOW */

.category-glow {
  display: none;
}

.category-glow.cyan {}


/* TEXT */

.category-text {
  position: relative;
  z-index: 2;
  flex: 1;
}

.category-text h3 {
  color: white;
  font-size: 17px;
  margin-bottom: 6px;
}

.category-text span {
  color: #94a3b8;
  font-size: 12px;
}

/* ARROW */

.category-arrow {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    rgba(255, 255, 255, .05);
  color: white;
  transition:
    transform .3s ease,
    background .3s ease;
}

/* HOVER */

.modern-category-card:hover {
  transform:
    translateY(-8px) scale(1.02);
  border-color:
    rgba(168, 85, 247, 0.6);
  box-shadow: none;
}

.modern-category-card:hover .category-arrow {
  transform: translateX(5px);

  background:
    rgba(168, 85, 247, .18);
}

/* MOBILE */

@media(max-width:850px) {

  .category-modern-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

}

@media(max-width:600px) {

  .category-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }


}

/*  updates */
/* =========================
   NEW CATEGORY TOP
========================= */
/* =========================
   NEW HERO
========================= */

.hero {
  padding: 80px 6px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero a {
  text-decoration: none;
  color: white;
}

.category-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.01) 100%);
  background: #0f111a;
  border: var(--border);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}

/* GLOW */

.category-top::before {
  display: none;
}


/* LEFT */

.category-top-left {
  position: relative;
  z-index: 2;
}

/* BADGE */

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  border-radius: 999px;

  background:
    rgba(168, 85, 247, .12);

  border:
    var(--border);

  color: #d8b4fe;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 22px;
  background: rgba(168, 85, 247, .2);
}

.badge-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #a855f7;

  box-shadow:
    0 0 12px #a855f7;
}


/* TEXT */

.category-subtext {
  max-width: 520px;
  color: #94a3b8;

  font-size: 16px;

  line-height: 1.9;
}

.region-container{
  display: flex;
  align-items: center;
  justify-content: center;
}

.region-control {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: min(100%, 260px);
}

.region-control label {
  display: block;
  margin-bottom: 8px;
  background: linear-gradient(to right, #79b7d4, #9249ffa8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.region-select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0, 195, 254, .28);
  border-radius: 10px;
  outline: none;
  background: rgba(0, 6, 34, .72);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.region-select:focus {
  border-color: rgba(0, 195, 254, .62);
}

.region-select option {
  background: #050714;
  color: #fff;
}

/* RIGHT STATS */

.category-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 18px;
}

.stat-card {
  padding: 24px 32px;
  border-radius: 14px;
  text-align: center;
  background:
    rgba(255, 255, 255, .04);
  border: var(--border);
  background: #1a1d29;
}

.stat-card h3 {
  font-size: 34px;
  color: white;
}

.stat-card span {
  color: #94a3b8;
  font-size: 13px;
}

/* MOBILE */

@media(max-width:768px) {

  .category-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .category-top h1 {
    font-size: 22px;
  }

  .category-subtext {
    font-size: 15px;
  }

  .region-control {
    width: 100%;
  }

  .category-stats {
    width: 100%;
    margin-top: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-card {
    padding: 8px 20px;
    border-radius: 10px;
    text-align: center;
    background:
      rgba(255, 255, 255, .04);
    border: var(--border);
    backdrop-filter: blur(12px);
  }

  .stat-card h3 {
    font-size: 24px;
    color: white;
  }

  .stat-card span {
    color: #94a3b8;
    font-size: 13px;
  }

}

.footer2 {
  width: 100%;
  border-top: 1px solid rgba(37, 37, 37, 0.06);
  background: #0c0c0f;
  padding: 38px 20px 28px;
  margin-bottom: 90px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
  line-height: 1.6;
}

.heart {
  color: #8b3dff;
  font-size: 18px;
  vertical-align: middle;
}

.copyright {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.42);
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .footer2 {
    padding: 32px 16px 24px;
  }

  .footer-links {
    gap: 18px;
    margin-bottom: 20px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .footer-text {
    font-size: 16px;
  }

  .copyright {
    font-size: 14px;
  }
}


.bottom-nav {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 550px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px;
  background: rgba(15, 17, 26, .95);
  border: var(--border);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: none;
  z-index: 9999;
}

.bottom-nav a {
  color: white;
  font-size: 20px;
}

/* @media(min-width:761px){
  .bottom-nav{
    display:none;
  }
} */

/*========== SAFETY CARD========= */
.safety-snackbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 60px;
  left: 0;
  width: 99.2%;
  padding: 10px 15px;
  background: #131a39;
  border: 1px solid rgba(158, 158, 255, 0.589);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.safety-snackbar i {
  font-size: 20px;
  padding: 5px;
  margin-left: -6px;
}

.safety-content {
  font-size: 16px;
  color: #d1d5db;
  font-style: italic;
}

.safety-guide-btn {
  margin-left: 5px;
  text-decoration: none;
  color: white;
  background: #7033fe;
  padding: 6px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
}

.safety-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* MODAL */

.safety-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.safety-modal.active {
  display: flex;
}

.safety-modal-box {
  width: 90%;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 20px;
}

.safety-modal-box h3 {
  margin-bottom: 15px;
  color: white;
}

.safety-modal-box label {
  display: block;
  color: #d1d5db;
  margin-bottom: 12px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 15px;
}

.modal-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

#confirmSafety {
  background: #7033fe;
  color: white;
}

@media(max-width:768px) {

  .safety-snackbar {
    gap: 10px;
  }

  .safety-content {
    font-size: 12px;
  }

  .safety-guide-btn {
    display: inline-block;
    margin-top: 5px;
  }
}


.ad-container{
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-container img{
  height: 210px;
}