/* ===== GLOWTEAM SITES — STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Times+New+Roman:wght@400;700&display=swap');

:root {
  --primary: #00e5ff;
  --primary-dark: #00b8d4;
  --neon-cyan: #00e5ff;
  --neon-gold: #ffd700;
  --neon-teal: #00bfa5;
  --bg: #050d1a;
  --bg2: #071222;
  --bg3: #0a1929;
  --card-bg: rgba(0, 20, 40, 0.85);
  --card-border: rgba(0, 229, 255, 0.2);
  --card-glow: rgba(0, 229, 255, 0.08);
  --text: #e0f7fa;
  --text-muted: #607d8b;
  --text-bright: #ffffff;
  --header-bg: rgba(5, 13, 26, 0.95);
  --input-bg: rgba(0, 229, 255, 0.05);
  --sidebar-bg: #030a14;
  --sidebar-text: #90a4ae;
  --success: #00e676;
  --error: #ff1744;
  --warn: #ffab00;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; }

/* ===== LOADING SCREEN ===== */
#loading-screen {
  position: fixed; inset: 0;
  background: #050d1a;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease;
}
#loading-screen.hidden { opacity: 0; pointer-events: none; }

.spinner {
  width: 56px; height: 56px;
  border: 4px solid rgba(0,229,255,0.15);
  border-top: 4px solid var(--neon-cyan);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
  font-family: 'Times New Roman', serif;
  color: var(--neon-cyan);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulse-text 1.5s ease-in-out infinite;
}
@keyframes pulse-text {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== ANIMATIONS ===== */
@keyframes slideUpIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0,229,255,0.3); }
  50% { box-shadow: 0 0 25px rgba(0,229,255,0.6), 0 0 50px rgba(0,229,255,0.2); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.animate-in {
  opacity: 0;
  animation: slideUpIn 0.5s ease forwards;
}

/* ===== RUNNING TEXT ===== */
.running-text-wrapper {
  background: rgba(0,229,255,0.06);
  border-bottom: 1px solid rgba(0,229,255,0.15);
  overflow: hidden;
  white-space: nowrap;
  height: 32px;
  display: flex;
  align-items: center;
}
.running-text {
  display: inline-block;
  animation: marquee 28s linear infinite;
  font-size: 12px;
  color: var(--neon-cyan);
  letter-spacing: 0.5px;
  font-family: 'Times New Roman', serif;
}
@keyframes marquee {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

/* ===== HEADER ===== */
.main-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 1rem;
}
.header-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-cyan);
  flex: 1;
  letter-spacing: 1px;
  font-family: 'Times New Roman', serif;
}
.header-nav {
  display: flex;
  gap: 0.25rem;
}
.nav-tab {
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Times New Roman', serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-tab:hover, .nav-tab.active {
  background: rgba(0,229,255,0.1);
  border-color: rgba(0,229,255,0.3);
  color: var(--neon-cyan);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== SIDEBAR (mobile) ===== */
.sidebar {
  position: fixed; left: -260px; top: 0;
  width: 260px; height: 100vh;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--card-border);
  z-index: 200;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
}
.sidebar.open { left: 0; }
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
}
.sidebar-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-cyan);
}
.close-sidebar {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}
.sidebar .nav-tab {
  display: block;
  text-align: left;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
}

.overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
  backdrop-filter: blur(4px);
}
.overlay.show { display: block; }

/* ===== MAIN CONTENT ===== */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  animation: slideUpIn 0.5s ease 0.1s both;
}
.hero-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.hero-description {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CARD SECTIONS ===== */
.card-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  animation: slideUpIn 0.5s ease both;
}
.section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--card-border);
}

/* ===== ALBUM PHOTOS ===== */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.album-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--bg2);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
}
.album-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,229,255,0.15);
}
.album-item img, .album-item video {
  width: 100%; height: 130px;
  object-fit: cover; display: block;
}
.album-item-title {
  padding: 0.4rem 0.5rem;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.album-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  padding: 2rem;
}
.video-badge {
  position: absolute; top: 6px; right: 6px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== TEAM MEMBERS — BANNER (group photo) ===== */
.team-banner {
  background: linear-gradient(135deg, #071222 0%, #0a1929 100%);
  border: 2px solid rgba(0,229,255,0.25);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  animation: slideUpIn 0.5s ease 0.2s both;
}
.team-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect x='0' y='0' width='60' height='60' fill='none' stroke='rgba(0,229,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Member cards grid — circle style like screenshot */
.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) {
  .members-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 700px) {
  .members-grid { grid-template-columns: repeat(4, 1fr); }
}

.member-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: float 4s ease-in-out infinite;
}
.member-card:nth-child(even) { animation-delay: 0.5s; }
.member-card:nth-child(3n) { animation-delay: 1s; }
.member-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 24px rgba(0,229,255,0.2);
  border-color: rgba(0,229,255,0.5);
}

.member-avatar-wrap {
  position: relative;
  width: 88px; height: 88px;
  margin: 0 auto 0.75rem;
}
.member-avatar-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 3px solid var(--neon-cyan);
  box-shadow: 0 0 14px rgba(0,229,255,0.5);
  animation: glow-pulse 2.5s ease-in-out infinite;
}
.member-avatar-ring.gold {
  border-color: var(--neon-gold);
  box-shadow: 0 0 14px rgba(255,215,0,0.4);
}
.member-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg2);
  display: block;
}
.member-avatar-placeholder {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
}
.member-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-cyan);
  line-height: 1.3;
}
.member-name.gold { color: var(--neon-gold); }

/* ===== SOCIAL MEDIA GRID ===== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: var(--card-bg);
  color: var(--text);
  transition: all 0.2s;
  text-decoration: none;
  font-size: 13px;
}
.social-btn:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0,229,255,0.2);
  transform: translateY(-2px);
}
.social-icon {
  font-size: 1.1rem;
  min-width: 24px;
  text-align: center;
}
.social-name { font-weight: 700; font-size: 13px; color: var(--text-bright); }
.social-sub  { font-size: 11px; color: var(--text-muted); }

/* Social platform colors */
.social-btn.youtube:hover  { border-color: #ff0000; box-shadow: 0 0 12px rgba(255,0,0,0.2); }
.social-btn.tiktok:hover   { border-color: #69c9d0; box-shadow: 0 0 12px rgba(105,201,208,0.2); }
.social-btn.instagram:hover{ border-color: #e1306c; box-shadow: 0 0 12px rgba(225,48,108,0.2); }
.social-btn.facebook:hover { border-color: #1877f2; box-shadow: 0 0 12px rgba(24,119,242,0.2); }
.social-btn.x:hover        { border-color: #1d9bf0; box-shadow: 0 0 12px rgba(29,155,240,0.2); }
.social-btn.threads:hover  { border-color: #a0a0a0; box-shadow: 0 0 12px rgba(160,160,160,0.2); }

/* ===== CONTACT BUTTONS ===== */
.contact-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  border: 1px solid;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-btn.telegram {
  border-color: #2ca5e0;
  color: #2ca5e0;
  background: rgba(44,165,224,0.08);
}
.contact-btn.telegram:hover {
  background: #2ca5e0;
  color: #fff;
}
.contact-btn.whatsapp {
  border-color: #25d366;
  color: #25d366;
  background: rgba(37,211,102,0.08);
}
.contact-btn.whatsapp:hover {
  background: #25d366;
  color: #fff;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.85rem;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--bg2);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(0,229,255,0.18);
  border-color: var(--neon-cyan);
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 140px;
  object-fit: cover; display: block;
}
.gallery-item-info {
  padding: 0.5rem 0.65rem;
}
.gallery-item-title {
  font-size: 12px;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gallery-item-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
}
.lightbox-overlay.show { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  animation: fadeIn 0.2s ease;
}
.lightbox-close {
  position: fixed; top: 16px; right: 20px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none; border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  text-align: center;
  padding: 1.5rem 1rem;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2rem;
}
footer .footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
footer .footer-social-link {
  color: var(--text-muted);
  font-size: 12px;
  transition: color 0.2s;
  padding: 0.2rem 0.4rem;
}
footer .footer-social-link:hover { color: var(--neon-cyan); }

/* ===== ABOUT PAGE ===== */
.about-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

/* ===== TABS (page tabs: Home, Gallery, About) ===== */
.page-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--card-border);
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  overflow-x: auto;
  scrollbar-width: none;
}
.page-tabs::-webkit-scrollbar { display: none; }
.page-tab-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Times New Roman', serif;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.page-tab-btn.active {
  background: rgba(0,229,255,0.12);
  border-color: rgba(0,229,255,0.35);
  color: var(--neon-cyan);
}
.page-tab-btn:hover:not(.active) {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.tab-page { display: none; }
.tab-page.active { display: block; }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.form-input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  background: var(--input-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Times New Roman', serif;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.1);
}
textarea.form-input { resize: vertical; min-height: 80px; }

.btn-primary {
  padding: 0.65rem 1.4rem;
  background: var(--neon-cyan);
  color: #050d1a;
  border: none;
  border-radius: 8px;
  font-family: 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,229,255,0.35);
}
.btn-danger {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--error);
  color: var(--error);
  background: transparent;
  border-radius: 6px;
  font-family: 'Times New Roman', serif;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-danger:hover { background: var(--error); color: #fff; }
.btn-edit {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  background: transparent;
  border-radius: 6px;
  font-family: 'Times New Roman', serif;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-edit:hover { background: var(--neon-cyan); color: #050d1a; }
.btn-sm {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  background: transparent;
  border-radius: 6px;
  font-family: 'Times New Roman', serif;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-sm:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

.form-status {
  font-size: 12px;
  margin-top: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(0,230,118,0.1);
  color: var(--success);
  border: 1px solid rgba(0,230,118,0.2);
}
.form-status.error {
  display: block;
  background: rgba(255,23,68,0.1);
  color: var(--error);
  border: 1px solid rgba(255,23,68,0.2);
}

/* ===== ADMIN PAGE ===== */
.admin-login-wrap {
  max-width: 400px;
  margin: 8vh auto;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.admin-tab-btn {
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Times New Roman', serif;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-tab-btn.active {
  background: var(--neon-cyan);
  color: #050d1a;
  border-color: var(--neon-cyan);
}
.admin-tab-content { display: none; }
.admin-tab-content.show { display: block; }

/* List items in admin */
.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  background: var(--card-bg);
  gap: 0.5rem;
  flex-wrap: wrap;
}
.list-item-info { flex: 1; min-width: 0; }
.list-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-cyan);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.list-item-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.list-item-actions { display: flex; gap: 0.4rem; }

/* Media thumb grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}
.media-thumb {
  border-radius: 8px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  position: relative;
  background: var(--bg2);
}
.media-thumb img, .media-thumb video {
  width: 100%; height: 90px;
  object-fit: cover; display: block;
}
.media-thumb-info {
  padding: 0.35rem 0.45rem;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.media-thumb-del {
  position: absolute; top: 4px; right: 4px;
  background: rgba(255,23,68,0.85);
  color: #fff; border: none; border-radius: 50%;
  width: 22px; height: 22px;
  cursor: pointer; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.media-thumb-edit {
  position: absolute; top: 4px; left: 4px;
  background: rgba(0,229,255,0.85);
  color: #050d1a; border: none; border-radius: 50%;
  width: 22px; height: 22px;
  cursor: pointer; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 600;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px);
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.75rem;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  animation: slideUpIn 0.2s ease;
}
.modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 1.25rem;
}
.modal-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* Member photo preview in admin */
.member-preview-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--card-border);
  margin-top: 0.5rem;
}

/* Section divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--card-border);
  margin: 1.5rem 0;
}

/* Supabase config banner */
.config-banner {
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 13px;
  color: var(--text-muted);
}
.config-banner strong { color: var(--neon-cyan); }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .album-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: 1fr 1fr; }
}
