﻿:root {
  --bg: #07111f;
  --bg-2: #0d1a2d;
  --panel: rgba(10, 20, 36, 0.76);
  --panel-strong: rgba(15, 29, 48, 0.92);
  --text: #e8edf7;
  --muted: #a6b4ca;
  --line: rgba(160, 201, 255, 0.12);
  --brand: #3dd9c5;
  --brand-2: #3e7bff;
  --accent: #ff7a59;
  --glow: 0 18px 50px rgba(61, 217, 197, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(61, 217, 197, 0.18), transparent 20%),
    radial-gradient(circle at 85% 15%, rgba(62, 123, 255, 0.2), transparent 22%),
    radial-gradient(circle at 50% 80%, rgba(255, 122, 89, 0.14), transparent 24%),
    linear-gradient(160deg, var(--bg) 0%, #081523 45%, var(--bg-2) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 16s ease-in-out infinite;
}
body::before {
  top: -8rem;
  left: -8rem;
  background: var(--brand);
}
body::after {
  right: -10rem;
  bottom: -10rem;
  background: var(--brand-2);
  animation-delay: -6s;
}

a { color: inherit; text-decoration: none; }
p, li { color: var(--muted); line-height: 1.7; }
h1, h2, h3, h4 { margin: 0 0 0.75rem; color: var(--text); }
h1, h2, .section-heading h3 { font-family: "Source Serif 4", serif; }

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(115, 171, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 12, 24, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.brand { display: flex; align-items: center; gap: 1rem; }
.brand h1 { font-size: 1.05rem; margin: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #04101d;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 10px 30px rgba(61,217,197,0.24);
}

.eyebrow,
.muted-label,
.panel-label,
.timeline-day {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: capitalize;
}
.eyebrow,
.panel-label,
.timeline-day {
  color: var(--brand);
}
.muted-label { color: #8ba3c2; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: #b6c5da;
  transition: color 180ms ease, transform 180ms ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}
.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}
.nav-toggle { display: none; }

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.35rem;
  border: 1px solid rgba(130, 228, 216, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(61, 217, 197, 0.95), rgba(62, 123, 255, 0.95));
  color: #05111d;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  box-shadow: 0 12px 30px rgba(62, 123, 255, 0.22);
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.45), transparent 80%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 38px rgba(61, 217, 197, 0.28);
  filter: saturate(1.06);
}
.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}
.button-small { padding: 0.72rem 1rem; }
.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(136, 165, 212, 0.26);
  box-shadow: none;
}
.button-full { width: 100%; }

.hero,
.section,
.page-hero { margin-bottom: 2rem; }
.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}
.hero-copy,
.hero-panel,
.card,
.feature-card,
.profile-card,
.pricing-card,
.timeline-card,
.gallery-card,
.page-hero,
.trust-strip,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(13, 24, 41, 0.92), rgba(9, 18, 32, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-copy {
  position: relative;
  padding: 3rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(61, 217, 197, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(10, 20, 36, 0.98), rgba(13, 28, 49, 0.92));
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero-copy h2 {
  max-width: 22ch;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.hero-text { max-width: 60ch; font-size: 1.05rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0;
}
.hero-meta span {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(150, 197, 255, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  font-size: 0.92rem;
  font-weight: 700;
  color: #dfe9f7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(8, 17, 30, 0.96), rgba(10, 21, 37, 0.85));
}
.panel-card,
.card,
.profile-card,
.feature-card,
.pricing-card,
.timeline-card,
.gallery-card {
  position: relative;
  isolation: isolate;
}
.panel-card::before,
.card::before,
.profile-card::before,
.feature-card::before,
.pricing-card::before,
.timeline-card::before,
.gallery-card::before,
.page-hero::before,
.trust-strip::before,
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(61, 217, 197, 0.2), rgba(255,255,255,0.03), rgba(62, 123, 255, 0.16));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.panel-card {
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(14, 28, 46, 0.95), rgba(9, 18, 33, 0.9));
}
.panel-card.accent {
  background: linear-gradient(180deg, rgba(62, 123, 255, 0.18), rgba(11, 21, 36, 0.9));
}
.compact-list,
.content-list { padding-left: 1.2rem; margin: 0; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem 1.4rem;
}
.section-heading { margin-bottom: 1rem; }
.section-heading h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.two-column,
.highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.card,
.pricing-card,
.page-hero,
.timeline-card { padding: 1.6rem; }
.wide-card { padding: 2rem; }
.feature-grid,
.speaker-grid,
.gallery-grid,
.committee-grid,
.track-grid,
.timeline {
  display: grid;
  gap: 1.2rem;
}
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.speaker-grid { grid-template-columns: repeat(3, 1fr); }
.speaker-grid.large,
.committee-grid,
.track-grid,
.timeline { grid-template-columns: repeat(2, 1fr); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.feature-card,
.profile-card,
.gallery-card {
  padding: 1.5rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.feature-card:hover,
.profile-card:hover,
.gallery-card:hover,
.card:hover,
.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--glow);
}
.avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(61, 217, 197, 0.24), rgba(62, 123, 255, 0.28));
  color: var(--brand);
  font-weight: 900;
  box-shadow: inset 0 0 18px rgba(255,255,255,0.03);
}
.role { color: #8de6dc; font-weight: 700; }
.pricing-card { background: linear-gradient(180deg, rgba(17, 30, 51, 0.95), rgba(10, 18, 31, 0.92)); }
.gallery-card {
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(6, 12, 22, 0.72)),
    linear-gradient(135deg, rgba(61, 217, 197, 0.18), rgba(62, 123, 255, 0.22), rgba(255, 122, 89, 0.18));
  color: #fff;
}
.inner-page { padding-bottom: 1rem; }
.page-hero {
  padding: 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(62, 123, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(13, 27, 46, 0.96), rgba(8, 17, 30, 0.9));
}
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th,
.fee-table td {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(160, 201, 255, 0.12);
  text-align: left;
}
.ordered { list-style: decimal; }
.map-card {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
}
.footer {
  display: block;
  grid-template-columns: repeat(3, 3fr);
  gap: 20rem;
  padding: 1.5rem 0 0.5rem;
}
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.parallax {
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -18px, 0) scale(1.08); }
}

@media (max-width: 980px) {
  .topbar { border-radius: 28px; flex-wrap: wrap; }
  .nav-toggle {
    display: inline-flex;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(136, 165, 212, 0.24);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    font: inherit;
    font-weight: 700;
    color: var(--text);
  }
  .site-nav { display: none; width: 100%; padding-top: 0.8rem; }
  .site-nav.open { display: flex; }
  .hero,
  .two-column,
  .highlight,
  .footer,
  .trust-strip,
  .feature-grid,
  .speaker-grid,
  .speaker-grid.large,
  .gallery-grid,
  .committee-grid,
  .track-grid,
  .timeline { grid-template-columns: 1fr; }
  .hero-copy { padding: 2rem; }
}

@media (max-width: 640px) {
  .site-shell { width: min(calc(100% - 1rem), var(--max)); }
  .topbar { top: 0.5rem; padding: 1rem; }
  .brand { align-items: flex-start; }
  .brand h1 { font-size: 0.95rem; }
  .hero-copy h2 { font-size: 2.45rem; }
  .hero-actions,
  .hero-meta { flex-direction: column; align-items: stretch; }
  .button,
  .button-small { width: 100%; }
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-logo {
  display: block;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(160, 201, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.aicte-logo {
  width: 88px;
  height: 88px;
  padding: 0.35rem;
}

.college-logo {
  width: 96px;
  height: 96px;
  padding: 0.2rem;
}

.organized-card {
  overflow: hidden;
}

.organized-logos {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.org-logo {
  width: 100%;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(160, 201, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.accreditation-strip {
  padding: 0.6rem;
  max-height: 260px;
}

.neural-nexus-logo {
  padding: 0.6rem;
  max-height: 260px;
}

@media (max-width: 980px) {
  .brand-logos {
    gap: 0.5rem;
  }

  .aicte-logo {
    width: 68px;
    height: 68px;
  }

  .college-logo {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 0.7rem;
  }

  .brand-logos {
    flex-direction: column;
    align-items: flex-start;
  }

  .aicte-logo,
  .college-logo {
    width: 64px;
    height: 64px;
  }
}


.gallery-card {
  cursor: pointer;
  overflow: hidden;
  border: 0;
  text-align: left;
}

.gallery-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card:hover .gallery-image,
.gallery-card:focus-visible .gallery-image {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #f5fbff;
  font-weight: 700;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

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

.archive-card {
  min-height: 260px;
}

.archive-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(4, 14, 26, 0.72);
  border: 1px solid rgba(160, 201, 255, 0.16);
  color: #dff8ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(3, 8, 16, 0.86);
  backdrop-filter: blur(10px);
  z-index: 120;
}

.gallery-modal.open {
  display: flex;
}

.gallery-modal-panel {
  position: relative;
  width: min(100%, 980px);
  max-height: 90vh;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 24, 41, 0.96), rgba(9, 18, 32, 0.96));
  border: 1px solid rgba(160, 201, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.gallery-modal-panel img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  background: rgba(255,255,255,0.03);
}

.gallery-modal-panel p {
  margin: 0.9rem 0 0;
  color: #eef8ff;
  font-weight: 700;
}

.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 130;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(160, 201, 255, 0.18);
  border-radius: 999px;
  background: rgba(9, 18, 32, 0.94);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 980px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

.accordion-list {
  display: grid;
  gap: 1rem;
}

.accordion-item {
  padding: 0;
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border: 0;
  background: transparent;
  color: #f3fbff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.accordion-icon {
  font-size: 1.4rem;
  transition: transform 220ms ease;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 1.2rem 1.2rem;
}

.accordion-item.open .accordion-content {
  display: block;
}

.section-gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.section-image-button {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.section-gallery-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 260ms ease, filter 260ms ease;
}

.section-image-button:hover .section-gallery-image,
.section-image-button:focus-visible .section-gallery-image {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.gallery-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 130;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(160, 201, 255, 0.18);
  background: rgba(9, 18, 32, 0.92);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.gallery-modal-prev { left: 2rem; }
.gallery-modal-next { right: 2rem; }

@media (max-width: 640px) {
  .gallery-modal-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.6rem;
  }

  .gallery-modal-prev { left: 0.5rem; }
  .gallery-modal-next { right: 0.5rem; }
}

.admin-input,
.admin-textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(160, 201, 255, 0.16);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font: inherit;
}

.admin-textarea {
  padding: 1rem;
  border-radius: 18px;
  font-family: Consolas, monospace;
}

.admin-input-small {
  min-width: 220px;
}

.admin-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.gallery-upload-form {
  display: grid;
  gap: 0.8rem;
}

.dropzone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 1.5px dashed rgba(61, 217, 197, 0.38);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 27, 46, 0.9), rgba(8, 17, 30, 0.82));
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.dropzone:hover,
.dropzone.dragover {
  border-color: rgba(61, 217, 197, 0.8);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.dropzone-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone-content {
  padding: 1.4rem;
  text-align: center;
}

.dropzone-content strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #eef8ff;
}

.dropzone-status {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #dce9ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-gallery-sections {
  display: grid;
  gap: 1.25rem;
}

.admin-section-card {
  padding: 1.25rem;
  border: 1px solid rgba(160, 201, 255, 0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
}

.admin-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.admin-image-list {
  display: grid;
  gap: 1rem;
}

.admin-image-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(6, 14, 26, 0.65);
  border: 1px solid rgba(160, 201, 255, 0.08);
}

.admin-image-preview-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.admin-image-preview {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.admin-image-meta {
  min-width: 0;
}

.admin-image-delete {
  justify-self: end;
}

.caption-form {
  display: grid;
  gap: 0.8rem;
}

.section-image-button {
  position: relative;
}

.section-image-caption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.55rem 0.7rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(3, 8, 16, 0.12), rgba(3, 8, 16, 0.7));
  color: #f5fbff;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
}

@media (max-width: 980px) {
  .admin-section-header,
  .admin-section-actions,
  .inline-form {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-image-row {
    grid-template-columns: 1fr;
  }

  .admin-image-delete {
    justify-self: stretch;
  }
}


.logo-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.logo-upload-card {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(160, 201, 255, 0.12);
  background: rgba(255,255,255,0.03);
}

.logo-admin-preview {
  width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0.8rem 0 1rem;
  padding: 0.8rem;
  border-radius: 18px;
  background: rgba(8, 17, 30, 0.85);
  border: 1px solid rgba(160, 201, 255, 0.12);
}

.logo-admin-preview-wide {
  height: 100px;
}

.logo-admin-preview-tall {
  height: 220px;
}

@media (max-width: 980px) {
  .logo-admin-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-admin-compact .admin-gallery-sections {
  max-height: 560px;
  overflow-y: auto;
  padding-right: 0.45rem;
}

.gallery-admin-compact .admin-gallery-sections::-webkit-scrollbar {
  width: 8px;
}

.gallery-admin-compact .admin-gallery-sections::-webkit-scrollbar-thumb {
  background: rgba(61, 217, 197, 0.45);
  border-radius: 999px;
}

.gallery-admin-compact .admin-section-card {
  padding: 1rem;
}

.gallery-admin-compact .admin-image-list {
  gap: 0.8rem;
}

.gallery-admin-compact .admin-image-row {
  grid-template-columns: 120px 1fr auto;
  gap: 0.8rem;
  padding: 0.8rem;
}

.gallery-admin-compact .admin-image-preview {
  height: 86px;
}

.gallery-admin-compact .admin-field {
  margin-bottom: 0.7rem;
}

.compact-logo-card {
  padding: 1.2rem;
}

.compact-section-heading {
  margin-bottom: 0.75rem;
}

.compact-section-heading h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.compact-logo-text {
  margin: 0;
  font-size: 0.92rem;
}

.compact-logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.compact-logo-upload-card {
  padding: 0.85rem;
  border-radius: 18px;
}

.compact-logo-upload-card h4 {
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
}

.compact-logo-upload-card .muted-label {
  margin-bottom: 0.25rem;
}

.compact-logo-upload-card .gallery-upload-form {
  gap: 0.55rem;
}

.compact-logo-upload-card .admin-input {
  padding: 0.65rem;
  font-size: 0.92rem;
}

.compact-logo-upload-card .button-small {
  padding: 0.62rem 0.8rem;
  font-size: 0.86rem;
}

.compact-logo-upload-card .logo-admin-preview {
  height: 74px;
  margin: 0.5rem 0 0.7rem;
  padding: 0.45rem;
  border-radius: 14px;
}

.compact-logo-upload-card .logo-admin-preview-wide {
  height: 64px;
}

.compact-logo-upload-card .logo-admin-preview-tall {
  height: 108px;
}

@media (max-width: 1180px) {
  .compact-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .compact-logo-grid {
    grid-template-columns: 1fr;
  }
}

.section-add-more-form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.75rem;
  margin: 0 0 0.9rem;
  padding: 0.8rem;
  border-radius: 16px;
  background: rgba(8, 17, 30, 0.55);
  border: 1px solid rgba(160, 201, 255, 0.08);
}

.section-add-more-field {
  flex: 1 1 260px;
  margin-bottom: 0;
}

.gallery-admin-compact .section-add-more-form .admin-input {
  padding: 0.7rem;
}

@media (max-width: 640px) {
  .section-add-more-form {
    align-items: stretch;
  }
}

.coauthors-block {
  margin: 1rem 0;
}

.coauthors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.coauthors-header p {
  margin: 0;
}

.coauthor-fields {
  display: grid;
  gap: 0.7rem;
}

.coauthor-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.coauthor-help {
  margin: 0.6rem 0 0;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .coauthors-header,
  .coauthor-row {
    grid-template-columns: 1fr;
    display: grid;
  }
}

.paper-nav-shell {
  position: sticky;
  top: 5.8rem;
  z-index: 18;
}

.paper-status-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(160, 201, 255, 0.12);
  background: rgba(8, 17, 30, 0.88);
  backdrop-filter: blur(18px);
}

.paper-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.paper-mini-card {
  position: relative;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(160, 201, 255, 0.12);
  background: linear-gradient(180deg, rgba(13, 24, 41, 0.92), rgba(9, 18, 32, 0.88));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.paper-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow), var(--glow);
}

.paper-mini-card h4 {
  font-size: 1rem;
  margin: 0.2rem 0;
}

.paper-mini-card p {
  margin: 0;
  line-height: 1.5;
}

.paper-mini-badge {
  display: inline-flex;
  justify-self: start;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.badge-review,
.badge-under-review {
  background: rgba(61, 217, 197, 0.16);
  color: #8de6dc;
}

.badge-updated,
.badge-revision-required {
  background: rgba(255, 179, 71, 0.16);
  color: #ffd48a;
}

.badge-accepted {
  background: rgba(101, 215, 126, 0.16);
  color: #aaf3b8;
}

.badge-rejected {
  background: rgba(255, 122, 89, 0.16);
  color: #ffb3a0;
}

.paper-detail-layout {
  align-items: start;
}

.paper-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.paper-detail-span {
  grid-column: 1 / -1;
}

.paper-preview-frame {
  width: 100%;
  min-height: 78vh;
  border: 1px solid rgba(160, 201, 255, 0.12);
  border-radius: 20px;
  background: #fff;
}

.paper-preview-fallback {
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(160, 201, 255, 0.12);
}

@media (max-width: 1180px) {
  .paper-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .paper-card-grid,
  .paper-detail-grid {
    grid-template-columns: 1fr;
  }

  .paper-nav-shell {
    top: 4.8rem;
  }
}

.compact-admin-image-list {
  gap: 0.65rem;
}

.admin-image-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: 16px;
  background: rgba(6, 14, 26, 0.55);
  border: 1px solid rgba(160, 201, 255, 0.08);
}

.admin-image-title-link {
  color: #eef8ff;
  font-weight: 700;
  line-height: 1.4;
}

.admin-image-title-link:hover {
  color: #8de6dc;
}

.compact-caption-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
}

.compact-caption-form .admin-input {
  margin: 0;
}

.admin-gallery-preview-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
}

@media (max-width: 980px) {
  .admin-image-title-row,
  .compact-caption-form {
    grid-template-columns: 1fr;
  }
}

.compact-section-list {
  gap: 0.8rem;
}

.compact-section-card {
  padding: 0.95rem 1rem;
}

.compact-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.compact-section-row h4,
.compact-section-row p {
  margin: 0;
}

@media (max-width: 640px) {
  .compact-section-row {
    flex-direction: column;
    align-items: stretch;
  }
}


.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.3rem;
}

.admin-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.admin-hub-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.admin-hub-card p {
  margin: 0;
}

.mini-activity-list,
.manager-section-list,
.admin-export-stack {
  display: grid;
  gap: 0.8rem;
}

.mini-activity-row,
.manager-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(160, 201, 255, 0.1);
}

.mini-activity-row {
  flex-direction: column;
  align-items: flex-start;
}

.mini-activity-row strong,
.manager-section-row h4 {
  color: #eef8ff;
}

.mini-activity-row span,
.manager-section-row p,
.compact-helper-text {
  margin: 0;
  color: var(--muted);
}

.admin-manager-layout {
  align-items: start;
}

.manager-sidebar-card {
  max-height: 640px;
  overflow: auto;
}

.template-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.email-textarea {
  min-height: 320px;
  font-family: "Manrope", sans-serif;
}

.code-editor-textarea {
  min-height: 68vh;
}

.admin-logo-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .admin-stats-grid,
  .admin-hub-grid,
  .template-editor-grid,
  .admin-logo-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .admin-stats-grid,
  .admin-hub-grid,
  .template-editor-grid,
  .admin-logo-page-grid,
  .mini-activity-row,
  .manager-section-row {
    grid-template-columns: 1fr;
  }

  .mini-activity-row,
  .manager-section-row {
    flex-direction: column;
    align-items: stretch;
  }
}


.leadership-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.committee-profile-card {
  display: grid;
  justify-items: start;
  gap: 0.2rem;
}

.committee-profile-card h3,
.committee-profile-card p {
  margin: 0;
}

.committee-photo-block {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 28px;
  border: 1px dashed rgba(141, 230, 220, 0.5);
  background: radial-gradient(circle at 30% 30%, rgba(61, 217, 197, 0.2), rgba(62, 123, 255, 0.16));
  color: #eaf9ff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
}

.committee-photo-block-alt {
  background: radial-gradient(circle at 30% 30%, rgba(255, 122, 89, 0.2), rgba(62, 123, 255, 0.16));
}

@media (max-width: 1180px) {
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .committee-photo-block {
    width: 112px;
    height: 112px;
  }
}


.committee-photo-image {
  object-fit: cover;
  padding: 0;
  border-style: solid;
  background: rgba(255,255,255,0.05);
}

.committee-admin-preview {
  height: 150px;
  border-radius: 24px;
}


.countdown-card {
  overflow: hidden;
}

.countdown-card h3 {
  margin-bottom: 1rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.countdown-unit {
  padding: 0.95rem 0.7rem;
  border-radius: 18px;
  border: 1px solid rgba(160, 201, 255, 0.12);
  background: rgba(255,255,255,0.04);
  text-align: center;
}

.countdown-unit strong {
  display: block;
  font-size: 1.8rem;
  color: #f3fbff;
}

.countdown-unit span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.countdown-note {
  margin: 1rem 0 0;
}

.brochure-card,
.process-card,
.quick-links-card {
  min-height: 100%;
}

.process-timeline {
  display: grid;
  gap: 0.85rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(160, 201, 255, 0.1);
}

.process-step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(61, 217, 197, 0.95), rgba(62, 123, 255, 0.95));
  color: #04101d;
  font-weight: 900;
}

.process-step p,
.process-step strong {
  margin: 0;
}

.home-gallery-grid .gallery-card {
  min-height: 220px;
}

@media (max-width: 980px) {
  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .countdown-grid,
  .process-step {
    grid-template-columns: 1fr;
  }
}


.brochure-preview-shell {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(160, 201, 255, 0.12);
  background: rgba(255,255,255,0.03);
}

.brochure-preview-frame {
  width: 100%;
  min-height: 540px;
  border: 0;
  background: #fff;
}

.brochure-preview-image {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  display: block;
  background: rgba(255,255,255,0.04);
}

.brochure-preview-fallback {
  padding: 2rem;
  color: var(--muted);
}

.homepage-brochure-shell {
  margin: 1rem 0 1.1rem;
}

.homepage-brochure-frame {
  min-height: 360px;
}

.homepage-brochure-image {
  max-height: 360px;
}

@media (max-width: 640px) {
  .brochure-preview-frame,
  .homepage-brochure-frame {
    min-height: 320px;
  }
}


.news-scroller {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(160, 201, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(61, 217, 197, 0.12), rgba(62, 123, 255, 0.08), rgba(255, 122, 89, 0.1));
}

.news-scroller-label {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(4, 12, 22, 0.72);
  color: #effaff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-scroller-track {
  display: flex;
  gap: 2rem;
  min-width: 0;
  overflow: hidden;
}

.news-scroller-items {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  min-width: max-content;
  animation: tickerMove 28s linear infinite;
}

.news-scroller-items span {
  position: relative;
  color: #eef8ff;
  font-weight: 700;
  white-space: nowrap;
}

.news-scroller-items span::after {
  content: '?';
  margin-left: 2rem;
  color: var(--brand);
}

.metric-grid,
.spotlight-grid,
.sponsor-grid,
.history-grid,
.homepage-admin-grid,
.status-template-grid {
  display: grid;
  gap: 1rem;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card,
.spotlight-card,
.sponsor-card,
.history-card,
.status-template-card {
  padding: 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(160, 201, 255, 0.12);
  background: rgba(255,255,255,0.03);
}

.metric-card strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: #f5fbff;
}

.spotlight-grid,
.sponsor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spotlight-card {
  background: linear-gradient(180deg, rgba(62, 123, 255, 0.16), rgba(10, 18, 31, 0.88));
}

.sponsor-card {
  background: linear-gradient(180deg, rgba(255, 122, 89, 0.14), rgba(9, 18, 32, 0.9));
}

.sponsor-link-text {
  display: inline-block;
  margin-top: 0.5rem;
  color: #fff3d7;
  font-size: 0.92rem;
  font-weight: 700;
}

.pulse-panel {
  overflow: hidden;
}

.pulse-list {
  display: grid;
  gap: 0.8rem;
}

.pulse-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(160, 201, 255, 0.08);
}

.pulse-item span {
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(61, 217, 197, 0.45);
  animation: pulseDot 1.8s infinite;
}

.pulse-item p {
  margin: 0;
}

.floating-sponsor-stack {
  position: fixed;
  top: 9rem;
  z-index: 35;
  display: grid;
  gap: 0.9rem;
  width: min(220px, calc(100vw - 2rem));
}

.sponsor-left-stack { left: 1rem; }
.sponsor-right-stack { right: 1rem; }

.floating-sponsor {
  position: relative;
  width: 100%;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(160, 201, 255, 0.12);
  background: linear-gradient(180deg, rgba(7, 19, 34, 0.96), rgba(11, 23, 39, 0.92));
  box-shadow: var(--shadow), var(--glow);
}

.floating-sponsor h3,
.floating-sponsor p {
  margin-bottom: 0.4rem;
}

.floating-sponsor-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}

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

.homepage-admin-grid,
.status-template-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-template-card h3,
.history-card strong {
  margin-bottom: 0.35rem;
}

.admin-stats-grid-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(61, 217, 197, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(61, 217, 197, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 217, 197, 0); }
}

@media (max-width: 1280px) {
  .floating-sponsor-stack {
    display: none;
  }
}

@media (max-width: 1180px) {
  .metric-grid,
  .spotlight-grid,
  .sponsor-grid,
  .history-grid,
  .homepage-admin-grid,
  .status-template-grid,
  .admin-stats-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-scroller {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .metric-grid,
  .spotlight-grid,
  .sponsor-grid,
  .history-grid,
  .homepage-admin-grid,
  .status-template-grid,
  .admin-stats-grid-wide {
    grid-template-columns: 1fr;
  }

  .news-scroller-items {
    animation-duration: 36s;
  }
}


.sponsor-grid-tight {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.sponsor-card-tight {
  padding: 1.15rem;
  background:
    radial-gradient(circle at top right, rgba(61, 217, 197, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(16, 30, 52, 0.96), rgba(8, 16, 29, 0.92));
}

.sponsor-card-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.sponsor-card-logo,
.floating-sponsor-logo,
.sponsor-admin-preview {
  display: block;
  object-fit: contain;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(160, 201, 255, 0.12);
}

.sponsor-card-logo {
  width: 66px;
  height: 66px;
  padding: 0.45rem;
  border-radius: 18px;
}

.sponsor-card-logo-fallback {
  display: grid;
  place-items: center;
  color: #eff9ff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-sponsor-logo {
  width: 100%;
  height: 84px;
  margin-bottom: 0.7rem;
  padding: 0.5rem;
  border-radius: 18px;
}

.floating-sponsor-logo-fallback {
  display: grid;
  place-items: center;
  color: #eff9ff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-help {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
}

.floating-help-button {
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(130, 228, 216, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.96), rgba(62, 123, 255, 0.96));
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.floating-help-card {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.8rem);
  width: min(320px, calc(100vw - 2rem));
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(160, 201, 255, 0.12);
  background: linear-gradient(180deg, rgba(10, 19, 35, 0.97), rgba(13, 24, 41, 0.95));
  box-shadow: var(--shadow), var(--glow);
}

.floating-help-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}

.help-contact-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.help-contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(160, 201, 255, 0.12);
  color: #eff9ff;
  font-weight: 700;
}

.sponsor-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.sponsor-admin-card {
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(160, 201, 255, 0.12);
  background: rgba(255,255,255,0.03);
}

.sponsor-admin-preview {
  width: 100%;
  height: 120px;
  margin: 0.9rem 0 1rem;
  padding: 0.75rem;
  border-radius: 18px;
}

.sponsor-admin-preview-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
}

@media (max-width: 640px) {
  .floating-help {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .floating-help-button {
    width: 100%;
  }

  .floating-help-card {
    width: 100%;
  }
}

.committee-sections-grid {
  align-items: start;
}

.committee-merged-card {
  display: grid;
  gap: 1rem;
}

.committee-subsection-stack {
  display: grid;
  gap: 1rem;
}

.committee-subsection {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(160, 201, 255, 0.1);
}

.committee-subsection h4 {
  margin: 0 0 0.7rem;
  color: #eef8ff;
}

.committee-subsection .content-list {
  margin: 0;
}

.quick-start-grid,
.journey-grid,
.page-form-grid {
  display: grid;
  gap: 1rem;
}

.quick-start-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-start-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.highlight-card {
  background: linear-gradient(180deg, rgba(62, 123, 255, 0.18), rgba(10, 18, 31, 0.92));
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-card {
  padding: 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(160, 201, 255, 0.12);
  background: rgba(255,255,255,0.03);
}

.journey-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(61, 217, 197, 0.95), rgba(62, 123, 255, 0.95));
  color: #04101d;
  font-weight: 900;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.audience-pill {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(160, 201, 255, 0.12);
  color: #eef8ff;
  font-weight: 700;
}

.process-timeline-tight {
  margin-top: 1rem;
}

.faq-card,
.public-side-panel,
.public-form-card {
  min-height: 100%;
}

.faq-stack,
.checklist-stack,
.mini-process-list,
.payment-details-stack {
  display: grid;
  gap: 0.85rem;
}

.faq-item,
.checklist-item,
.contact-mini-panel,
.status-result-card,
.success-panel {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(160, 201, 255, 0.1);
}

.faq-item strong,
.checklist-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #eef8ff;
}

.contact-mini-panel p,
.mini-process-list p,
.payment-details-stack p,
.faq-item p,
.checklist-item p {
  margin: 0;
}

.page-form-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: start;
}

.public-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.public-form-single {
  grid-template-columns: 1fr;
}

.public-form-field {
  display: grid;
  gap: 0.45rem;
}

.public-form-field span {
  color: #eef8ff;
  font-weight: 700;
}

.public-form-field small {
  color: var(--muted);
}

.public-form-span {
  grid-column: 1 / -1;
}

.public-form-input {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(160, 201, 255, 0.16);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font: inherit;
}

.public-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.public-form-select {
  appearance: none;
}

.public-form-file {
  padding: 0.75rem 0.9rem;
}

.public-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  margin-bottom: 0.8rem;
}

.receipt-grid p,
.compact-receipt-grid p {
  margin: 0;
}

.warning-panel {
  border-color: rgba(255, 179, 71, 0.18);
}

.side-panel-heading {
  margin-top: 1.4rem;
}

.compact-pill-list {
  margin-bottom: 0.2rem;
}

.status-result-card {
  display: grid;
  gap: 0.8rem;
}

@media (max-width: 1180px) {
  .quick-start-grid,
  .journey-grid,
  .page-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .public-form,
  .receipt-grid {
    grid-template-columns: 1fr;
  }

  .public-form-input {
    min-height: 50px;
    font-size: 16px;
  }

  .quick-start-card,
  .journey-card,
  .faq-item,
  .checklist-item,
  .contact-mini-panel,
  .status-result-card,
  .success-panel {
    padding: 1rem;
  }

  .page-hero {
    padding: 1.5rem;
  }
}
