:root {
  --glass: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.15);
  --accent: #ff9eb5;
}



* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: black;
  color: white;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.6);
  text-align: center;
  padding: 20px;
  font-size: 2em;
  font-weight: 600;
  z-index: 1000;
}

.section {
  position: relative;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.overlay {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 20px;
  max-width: 1100px;
  margin: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 80%;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5em;
  cursor: pointer;
}

.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

.indicators {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.indicators span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.indicators span.active {
  background: var(--accent);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8em;
  color: white;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 8px 12px;
  backdrop-filter: blur(6px);
  transition: 0.2s;
  z-index: 10000;
}

.close-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 1.8em;
}

.socials a {
  color: white;
  transition: 0.2s;
}

.socials a:hover {
  color: var(--accent);
  transform: scale(1.2);
}

.socials a.disabled {
  color: gray;
  opacity: 0.5;
  position: relative;
}

.socials a.disabled:hover {
  transform: none;
  color: gray;
}

.socials a.disabled::after {
  content: "Suspended";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.7em;
  opacity: 0;
  transition: 0.2s;
}

.socials a.disabled.show-tooltip::after,
.socials a.disabled:hover::after {
  opacity: 1;
}