:root {
  --bg: #05070a;
  --bg-soft: #0a1017;
  --panel: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.12);
  --green: #6ee7b7;
  --lime: #c7f36b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(110, 231, 183, 0.08), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(199, 243, 107, 0.07), transparent 24%),
    linear-gradient(180deg, #091018 0%, #05070a 30%, #05070a 100%);
  z-index: -2;
}

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

/* ========================= */
/* HEADER */
/* ========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18), transparent);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(4, 6, 9, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}



.brand {
  flex: 0 0 auto;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;

  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.site-logo {
  display: block;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  border-radius: 0;
  background: transparent;
}

.brand-text {
  display: block;
  min-width: 0;
}

.brand strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.desktop-nav a {
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: white;
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.lang-switch,
.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-flag {
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-flag img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 50%;
}

.lang-flag:hover {
  transform: scale(1.08);
  box-shadow: 0 0 14px rgba(110, 231, 183, 0.35);
}

.lang-flag.active {
  border-color: var(--lime);
  box-shadow: 0 0 14px rgba(199, 243, 107, 0.45);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: flex;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #081109;
  background: linear-gradient(90deg, #52e38a, #d0f870);
  box-shadow: 0 10px 30px rgba(199, 243, 107, 0.2);
}

.btn-light {
  background: white;
  color: black;
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(82, 227, 138, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.16), rgba(5, 7, 10, 0.72) 56%, #05070a 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(rgba(199, 243, 107, 0.08) 1px, transparent 1px);
  background-size: 120px 120px, 180px 180px;
  background-position: 0 0, 40px 60px;
  opacity: 0.45;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  min-height: 100vh;
  padding: 110px 0 50px;
}

.sub-hero .hero-grid {
  padding-top: 110px;
}

.eyebrow,
.section-kicker,
.panel-label,
.price-tag,
.news-card span,
.video-card span,
.volunteer-card span {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--green);
  font-weight: 700;
}

.hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.93;
  max-width: 900px;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, #b7f7d4, #d8f989, white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
}

.hero-cta,
.app-actions,
.form-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.hero-meta div {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.hero-meta span {
  display: block;
  font-size: 12px;
  color: var(--muted-2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-meta strong {
  font-size: 16px;
}

.hero-panel {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.panel-top h2 {
  margin: 10px 0 0;
  font-size: 28px;
}

.panel-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(199, 243, 107, 0.12);
  color: var(--lime);
  font-size: 22px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.count-box {
  padding: 14px 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.count-box span {
  position: relative;
  display: inline-block;
  font-size: 26px;
  font-weight: 800;
  perspective: 400px;
  text-shadow: 0 0 10px rgba(199, 243, 107, 0.25);
}

.count-box span.tick {
  animation: flipAnim 0.5s ease;
}

.count-box small {
  display: block;
  margin-top: 6px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.info-chip,
.panel-highlight {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.info-chip span,
.panel-highlight span {
  display: block;
  color: var(--muted-2);
  margin-bottom: 8px;
  font-size: 13px;
}

.panel-highlight {
  margin-top: 16px;
  background: linear-gradient(135deg, rgba(82, 227, 138, 0.12), rgba(255, 255, 255, 0.05));
}

.panel-highlight strong {
  font-size: 28px;
  color: var(--lime);
}

.hero-panel.live {
  border-color: rgba(199, 243, 107, 0.5);
  box-shadow: 0 0 0 1px rgba(199, 243, 107, 0.22), 0 20px 80px rgba(199, 243, 107, 0.18);
}

.live-banner {
  display: none;
  width: auto;
  max-width: 220px;
  margin: 18px auto 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #52e38a, #d0f870);
  color: #081109;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.live-banner.show {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: livePulse 1s ease-in-out infinite;
}

/* ========================= */
/* SECTIONS / CARDS */
/* ========================= */

.section {
  padding: 24px 0 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.experience-grid,
.pricing-grid,
.zone-grid,
.gallery-grid,
.news-grid,
.video-grid,
.volunteers-grid {
  display: grid;
  gap: 20px;
}

.experience-grid,
.pricing-grid,
.gallery-grid,
.news-grid,
.volunteers-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.zone-grid {
  grid-template-columns: repeat(4, 1fr);
}

.experience-card {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.experience-card:hover,
.gallery-item:hover,
.news-card:hover,
.zone-card:hover,
.price-card:hover,
.volunteer-card:hover {
  transform: translateY(-6px);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.9) 100%);
}

.card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
}

.card-content span {
  display: inline-block;
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.card-content h3 {
  margin: 12px 0 0;
  font-size: 34px;
}

.price-card,
.zone-card,
.news-card,
.volunteer-card,
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.price-card,
.zone-card {
  padding: 28px;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(199, 243, 107, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 0 0 1px rgba(199, 243, 107, 0.18), var(--shadow);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: #081109;
  font-size: 12px;
  font-weight: 800;
}

.badge.soldout {
  background: #dc2626 !important;
  color: #ffffff !important;
}

.badge.recommended {
  background: var(--lime);
  color: #081109;
}

.price-card h3 {
  margin: 18px 0 0;
  font-size: 48px;
  color: var(--lime);
}

.price-card p,
.zone-card p,
.news-card p,
.video-card p,
.volunteer-card p {
  color: var(--muted);
  line-height: 1.8;
}

.price-card ul {
  padding: 0;
  margin: 22px 0 24px;
  list-style: none;
  display: grid;
  gap: 12px;
}



.badge.soldout {
  background: #dc2626 !important;
  color: #ffffff !important;
}

.badge.recommended {
  background: var(--lime);
  color: #081109;
}

.zone-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(199, 243, 107, 0.12);
  font-size: 24px;
}

.zone-card h3 {
  margin: 18px 0 0;
  font-size: 28px;
}

.gallery-item {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s ease;
}

.gallery-item img {
  height: 260px;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    cursor: zoom-in;
}

.news-card img,
.volunteer-card img {
  height: 100%;
  object-fit: cover;
}


.gallery-item figcaption {
  padding: 10px 12px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.00;
  text-align: center;
  white-space: pre-line;
}

.news-card img {
  height: auto;
}

.news-card div,
.video-card div:not(.video-frame),
.volunteer-card div {
  padding: 22px;
}

.news-card h3,
.video-card h3,
.volunteer-card h3 {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.4;
}

.volunteer-card img {
  height: 320px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.3);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.news-date {
  font-size: 12px;
  opacity: 0.7;
}

.newsletter-band {
  margin-top: 84px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(82, 227, 138, 0.1), rgba(255, 255, 255, 0.04), rgba(199, 243, 107, 0.09));
}

.newsletter-band h3 {
  margin: 12px 0 0;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.08;
}

.newsletter-band p {
  margin-top: 12px;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: min(100%, 520px);
}

.newsletter-form input {
  flex: 1;
  height: 50px;
  min-width: 250px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 18px;
  background: rgba(0, 0, 0, 0.25);
  color: white;
  outline: none;
}

.newsletter-alert {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.newsletter-alert.success {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.45);
}

.newsletter-alert.exists {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.45);
}

.newsletter-alert.invalid {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.45);
}

.app-block {
  margin-top: 84px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.app-copy {
  padding: 42px;
}

.app-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.app-copy p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.9;
}

.app-visual {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

/* ========================= */
/* DIVIDER */
/* ========================= */

.festival-divider-wrap {
  overflow: hidden;
}

.festival-divider {
  width: 100%;
  overflow: hidden;
  margin: 28px 0;
  border-radius: 28px;
  background: transparent;
}

.divider-icons {
  width: 100%;
  height: 82px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
}

.icons-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  animation: scrollIcons 32s linear infinite;
}

.icons-track img {
  display: block;
  width: auto !important;
  max-width: none !important;
  height: 68px !important;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  opacity: 1;
  background: transparent !important;
  filter: brightness(0) saturate(100%) invert(88%) sepia(48%) saturate(740%) hue-rotate(38deg) brightness(112%) contrast(104%);
}

.divider-text {
  width: 100%;
  overflow: hidden;
  background: #05070a;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.text-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  animation: scrollText 32s linear infinite;
}

.text-track span {
  display: inline-block;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  padding: 0;
}

/* ========================= */
/* FORMS / AUTH */
/* ========================= */

.register-wrap,
.login-card {
  margin-top: 24px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.login-card {
  max-width: 420px;
  margin: auto;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}

.register-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.login-card .form-field label,
.admin-dashboard form label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea,
.login-card input,
.admin-dashboard form input,
.admin-dashboard form textarea,
.admin-dashboard form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 18px;
  padding: 14px 16px;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.login-card input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.login-card input:focus,
.admin-dashboard form input:focus,
.admin-dashboard form textarea:focus,
.admin-dashboard form select:focus {
  border-color: rgba(199, 243, 107, 0.75);
  background: rgba(255, 255, 255, 0.11);
}

.form-field select option,
.admin-dashboard form select option {
  color: #000;
}

.form-field textarea,
.admin-dashboard form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: #c7f36b;
}

.form-check a {
  color: var(--lime);
  font-weight: 800;
}

.form-message {
  margin: 0;
  padding: 0;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, max-height 0.25s ease, transform 0.25s ease, margin-top 0.25s ease;
}

.form-message.show {
  margin-top: 14px;
  opacity: 1;
  max-height: 100px;
  transform: translateY(0);
}

.form-field input[type="file"] {
  cursor: pointer;
}

.form-field input[type="file"]::file-selector-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  margin-right: 12px;
  background: linear-gradient(90deg, #52e38a, #d0f870);
  color: #081109;
  font-weight: 800;
  cursor: pointer;
}

.auth-choice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 24px 0;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.auth-choice span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

.auth-choice strong {
  color: #fff;
  font-size: 18px;
}

.login-extra,
.login-message {
  margin-top: 20px;
}

.login-message {
  color: #fbbf24;
  font-size: 14px;
}

/* ========================= */
/* WEATHER */
/* ========================= */

.weather-glass {
  margin-top: 30px;
  padding: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(199, 243, 107, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.weather-wrapper {
  position: relative;
  width: 100%;
  padding-top: 58%;
  border-radius: 24px;
  overflow: hidden;
}

.weather-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.site-footer {
  margin-top: 60px;
  padding: 42px 0 110px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.footer-brand strong {
  font-size: 22px;
}

.site-footer p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 16px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-links {
  margin-top: 18px;
  color: var(--muted-2);
  text-align: right;
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.socials a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  clip-path: circle(50% at 50% 50%);
}

.socials a::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.25s ease;
  clip-path: circle(50% at 50% 50%);
}

.socials a:nth-child(1)::before {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.socials a:nth-child(2)::before {
  background: #1877f2;
}

.socials a:nth-child(3)::before {
  background: #ff0000;
}

.socials a:nth-child(4)::before {
  background: linear-gradient(45deg, #00f2ea, #ff0050);
}

.socials a:nth-child(5)::before {
  background: linear-gradient(45deg, #5865f2, #404eed);
}

.socials a:nth-child(6)::before {
  background: linear-gradient(45deg, #27a7e7, #0088cc);
}

.socials a:nth-child(7)::before {
  background: linear-gradient(45deg, #25d366, #128c7e);
}

.socials a:nth-child(8)::before {
  background: linear-gradient(45deg, #0077b5, #005582);
}

.socials a:nth-child(9)::before {
  background: linear-gradient(45deg, #333333, #000000);
}

.socials a:nth-child(10)::before {
  background: linear-gradient(45deg, #000000, #222222);
}

.socials a:nth-child(11)::before {
  background: linear-gradient(45deg, #1db954, #1ed760);
}

.socials a:nth-child(12)::before {
  background: linear-gradient(45deg, #9146ff, #772ce8);
}

.socials a:nth-child(13)::before {
  background: linear-gradient(45deg, #e60023, #bd081c);
}

.socials a:nth-child(14)::before {
  background: linear-gradient(45deg, #fffc00, #ffe600);
}

.socials a:nth-child(15)::before {
  background: linear-gradient(45deg, #ff6a00, #ee0979);
}

.socials a:nth-child(16)::before {
  background: linear-gradient(45deg, #00c9ff, #92fe9d);
}

.socials a:hover::before {
  opacity: 1;
}

.socials a:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 40px rgba(199, 243, 107, 0.22);
  border-color: rgba(255, 255, 255, 0.28);
}

.socials a svg {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  fill: #ffffff !important;
}

.social-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
  gap: 12px;
  margin-top: 12px;
}

.social-check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all .2s ease;
}

.social-check:hover {
  transform: translateY(-2px);
  border-color: #c6ff00;
  background: rgba(198,255,0,0.08);
}

.social-check input {
  width: 18px;
  height: 18px;
  accent-color: #c6ff00;
}

.social-check span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.sticky-inner span {
  display: block;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.sticky-inner strong {
  display: block;
  margin-top: 4px;
  color: var(--lime);
  font-size: 28px;
}

/* ========================= */
/* ADMIN */
/* ========================= */

.admin-actions {
  margin: 24px 0 34px;
}

.premium-stats,
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dashboard-card,
.premium-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(199, 243, 107, 0.20), transparent 28%),
    radial-gradient(circle at 15% 85%, rgba(110, 231, 183, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 22px;
  margin-bottom: 18px;
}

.dashboard-card span,
.premium-card span {
  display: block;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
}

.dashboard-card strong,
.premium-card strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

.dashboard-card small,
.premium-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.dashboard-charts {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 20px;
}

.dashboard-chart-card {
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.chart-head h3 {
  margin: 8px 0 0;
  font-size: 28px;
}

.dashboard-chart-card canvas {
  max-height: 320px;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0 10px;
  color: #fff;
}

.admin-table thead th {
  padding: 0 18px 10px;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: left;
}

.admin-table tbody td {
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
  white-space: nowrap;
}

.admin-table tbody td:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px 0 0 18px;
  font-weight: 800;
  color: #fff;
}

.admin-table tbody td:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 18px 18px 0;
}

.admin-table tbody tr:hover td {
  background: rgba(199, 243, 107, 0.06);
}

.admin-role {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(199, 243, 107, 0.12);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.admin-dashboard form label {
  display: block;
  margin: 16px 0 8px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ========================= */
/* PAGE HERO BACKGROUNDS */
/* ========================= */

.program-hero,
.passes-hero {
  background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.contact-hero,
.register-hero {
  background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.volunteers-hero {
  background: url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.gallery-hero {
  background: url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.terms-content {
  color: var(--muted);
  line-height: 1.9;
}

.terms-content h3 {
  margin: 34px 0 12px;
  color: #ffffff;
  font-size: 24px;
}

.terms-content p {
  margin: 0 0 16px;
}

.terms-content ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.terms-content li {
  margin-bottom: 8px;
}

.terms-content a {
  color: var(--lime);
  font-weight: 700;
}

.program-days {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.program-days .price-card ul {
  gap: 14px;
}

.program-days .price-card li {
  line-height: 1.7;
}

/* ========================= */
/* REVEAL / ANIMATIONS */
/* ========================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseLive {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(199, 243, 107, 0.35); }
  70% { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(199, 243, 107, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(199, 243, 107, 0); }
}

@keyframes livePulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(199, 243, 107, 0); }
  50% { transform: scale(1.12); box-shadow: 0 0 40px 10px rgba(199, 243, 107, 0.7); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(199, 243, 107, 0); }
}

@keyframes flipAnim {
  0% { transform: rotateX(0deg); }
  50% { transform: rotateX(-90deg); }
  100% { transform: rotateX(0deg); }
}

@keyframes scrollIcons {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollText {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 1100px) {
  .hero-grid,
  .newsletter-band,
  .app-block,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .experience-grid,
  .pricing-grid,
  .news-grid,
  .gallery-grid,
  .volunteers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zone-grid,
  .video-grid,
  .program-days {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-links {
    text-align: left;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 13px;
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1240px);
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
  }

.brand-mark {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.site-logo {
  height: auto !important;
  object-fit: contain !important;
  max-width: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

  .brand strong {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .brand small {
    font-size: 8px;
    letter-spacing: 0.08em;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .desktop-nav {
    display: none !important;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn-glass,
  .header-actions .btn-light,
  .header-actions .btn-primary,
  .header-actions .logout-btn,
  .header-actions .account-btn,
  .header-actions .register-btn,
  .header-actions .login-btn,
  .header-actions .admin-btn {
    display: none !important;
  }

  .lang-switch {
    gap: 6px;
  }

  .lang-flag {
    width: 24px !important;
    height: 24px !important;
    border-width: 1.5px;
  }

  .menu-toggle {
    display: grid !important;
    place-items: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .mobile-menu {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(4, 6, 9, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-menu a.active {
    color: #081109;
    background: linear-gradient(90deg, #52e38a, #d0f870);
  }

  .mobile-lang-switch {
    justify-content: center;
    gap: 12px;
    margin: 10px 0;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-lang-switch .lang-flag {
    width: 28px !important;
    height: 28px !important;
  }

  .hero-grid,
  .sub-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 105px 0 70px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 14vw, 72px);
    line-height: 0.95;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-meta,
  .panel-grid,
  .experience-grid,
  .pricing-grid,
  .zone-grid,
  .gallery-grid,
  .news-grid,
  .video-grid,
  .volunteers-grid,
  .program-days {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
  }

  .count-box span {
    font-size: 24px;
  }

  .newsletter-band {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    min-width: 0;
    width: 100%;
  }

  .sticky-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-inner .btn {
    width: 100%;
  }

  .app-copy,
  .hero-panel,
  .price-card,
  .zone-card,
  .register-wrap {
    padding: 18px;
  }

  .live-banner {
    max-width: 170px;
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-field input,
  .form-field select,
  .form-field textarea,
  .login-card input,
  .admin-dashboard form input,
  .admin-dashboard form textarea,
  .admin-dashboard form select {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .form-actions .btn,
  .admin-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .auth-choice {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-choice .btn {
    width: 100%;
  }

  .festival-divider {
    margin: 28px 0;
  }

  .divider-icons {
    height: 58px;
  }

  .icons-track img {
    height: 46px !important;
  }

  .divider-text {
    padding: 10px 0;
  }

  .text-track span {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .weather-wrapper {
    padding-top: 85%;
  }

  .weather-glass {
    padding: 10px;
    border-radius: 24px;
  }

  .site-footer {
    padding-bottom: 220px;
  }

  .footer-inner {
    gap: 28px;
  }

  .footer-links {
    font-size: 12px;
    line-height: 1.7;
  }

  .admin-dashboard {
    padding-top: 105px !important;
  }

  .admin-dashboard .section-head h2 {
    font-size: 36px !important;
    line-height: 1.05;
  }

  .premium-stats,
  .dashboard-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .dashboard-card,
  .premium-card {
    min-height: 145px;
    padding: 14px !important;
    border-radius: 20px !important;
  }

  .stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 17px;
    margin-bottom: 10px;
  }

  .dashboard-card span,
  .premium-card span {
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
    line-height: 1.3;
  }

  .dashboard-card strong,
  .premium-card strong {
    font-size: 20px !important;
    line-height: 1;
    margin-top: 8px;
  }

  .dashboard-card small,
  .premium-card small {
    font-size: 11px !important;
    line-height: 1.35;
  }

  .dashboard-charts {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .dashboard-chart-card {
    padding: 14px !important;
    border-radius: 20px !important;
  }

  .dashboard-chart-card canvas {
    max-height: 210px !important;
  }

  .admin-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .admin-actions .btn {
    min-height: 42px;
    font-size: 13px;
    padding: 0 10px;
  }

  .admin-table {
    min-width: 760px;
  }

  .news-card img,
  .volunteer-card img {
    height: auto;
  }
}

@media (max-width: 430px) {
  .dashboard-stats,
  .premium-stats,
  .admin-actions {
    grid-template-columns: 1fr !important;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 14px;
  }
}
.admin-select-all {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--green) !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-checkbox,
.admin-dashboard input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  padding: 0 !important;
  margin: 0 8px 0 0 !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  accent-color: #c7f36b;
  cursor: pointer;
}

.dashboard-stats .premium-card p{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin:12px 0;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:14px;
}

.dashboard-stats .premium-card p:last-child{
    border-bottom:none;
}

.dashboard-stats .premium-card p strong{
    font-size:16px !important;
    line-height:1.3;
    font-weight:700;
    color:#fff;
}

.dashboard-stats .premium-card h3{
    font-size:18px;
    margin-bottom:20px;
}

.email-user-list label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 8px !important;
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 14px !important;
}
/* LOGIN CARD FIX */
.login-card {
  max-width: 520px;
  padding: 54px 52px;
}

.login-card h2 {
  margin: 0 0 28px;
  font-size: 34px;
}

.login-card form {
  display: grid;
  gap: 22px;
}

.login-card .form-field {
  gap: 10px;
  margin-bottom: 0;
}

.login-card .form-field label {
  text-align: left;
  padding-left: 6px;
}

.login-card input {
  height: 62px;
  border-radius: 22px;
  font-size: 18px;
}

.login-card button {
  margin: 4px auto 0;
  min-width: 120px;
  min-height: 54px;
  font-size: 18px;
}

.login-extra {
  margin-top: 34px;
}

.login-extra p {
  margin: 0 0 18px;
  font-size: 20px;
}

.login-extra .btn {
  min-height: 54px;
  padding: 0 28px;
  font-size: 18px;
}

@media (max-width: 600px) {
  .login-card {
    padding: 34px 22px;
  }

  .login-card h2 {
    font-size: 28px;
  }
}
/* FAQ PAGE */
.faq-page {
  display: grid;
  gap: 34px;
}

.faq-category {
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(199, 243, 107, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.faq-category h3 {
  margin: 0 0 22px;
  font-size: clamp(26px, 3vw, 38px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 900;
  color: #fff;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--lime);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.85;
}

.faq-answer p {
  margin: 0 0 14px;
}

.faq-answer h4 {
  margin: 22px 0 10px;
  color: #fff;
  font-size: 18px;
}

.faq-answer a {
  color: var(--lime);
  font-weight: 800;
}

@media (max-width: 760px) {
  .faq-category {
    padding: 18px;
    border-radius: 22px;
  }

  .faq-item summary {
    padding: 16px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }
}
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 800;
}

.lang-current img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(10, 15, 14, 0.96);
  border: 1px solid rgba(255,255,255,0.14);
  z-index: 9999;
}

.lang-dropdown.open .lang-dropdown-menu {
  display: flex;
}

.lang-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
}

.lang-dropdown-menu a:hover {
  background: rgba(255,255,255,0.1);
}

.lang-dropdown-menu img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.site-logo {
  width: var(--logo-desktop-width, 120px) !important;
}

@media (max-width: 760px) {
  .site-logo {
    width: var(--logo-mobile-width, 70px) !important;
  }
}
/* ========================= */
/* LOGO FIX DESKTOP / MOBILE */
/* ========================= */

.brand-mark {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;

  width: auto !important;
  height: auto !important;
  max-width: none !important;

  padding: 0 !important;
  margin: 0 !important;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.site-logo {
  display: block !important;

  width: var(--logo-desktop-width, 120px) !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;

  object-fit: contain !important;

  padding: 0 !important;
  margin: 0 !important;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

@media (max-width: 760px) {
  .brand-mark {
    width: auto !important;
    height: auto !important;
    max-width: none !important;
  }

  .site-logo {
    width: var(--logo-mobile-width, 70px) !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
  }
}
/* ========================= */
/* MAINTENANCE WOW PAGE */
/* ========================= */

.maintenance-body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background: #05070a;
  color: #fff;
}

.maintenance-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(110, 231, 183, .22), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(199, 243, 107, .18), transparent 26%),
    radial-gradient(circle at 50% 90%, rgba(82, 227, 138, .12), transparent 34%),
    linear-gradient(180deg, #081018, #05070a);
  animation: maintenanceGlow 8s ease-in-out infinite alternate;
}

.maintenance-screen {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 18px;
}

.maintenance-card {
  position: relative;
  width: min(620px, 100%);
  padding: 30px 24px;
  text-align: center;
  border-radius: 30px;
background: transparent !important;
border: none !important;
box-shadow: none !important;
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.maintenance-card::before {
  content: "";
  position: absolute;
  inset: -70px;
  background: conic-gradient(from 90deg, transparent, rgba(199,243,107,.32), transparent, rgba(110,231,183,.24), transparent);
  animation: maintenanceSpin 9s linear infinite;
  z-index: -2;
}

.maintenance-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: rgba(5,7,10,.82);
  z-index: -1;
}

.maintenance-logo {
  width: min(180px, 40vw);
  height: auto;
  margin: 0 auto 10px;
  filter: none;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.maintenance-orbit {
  --orbit-size: 190px;
  --icon-size: 48px;
  --orbit-radius: calc((var(--orbit-size) / 2) - (var(--icon-size) / 2));

  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  margin: 0 auto 14px;

  border: none !important;
  background: transparent !important;
  box-shadow: none !important;

  animation: maintenanceOrbit 14s linear infinite;
}

.maintenance-orbit span {
  position: absolute;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 18px;
}

.maintenance-orbit {
  --orbit-size: 190px;
  --icon-size: 48px;
  --orbit-radius: calc((var(--orbit-size) / 2) - (var(--icon-size) / 2));

  position: relative !important;
  width: var(--orbit-size) !important;
  height: var(--orbit-size) !important;
  border-radius: 50% !important;
}

.maintenance-orbit span {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;

  width: var(--icon-size) !important;
  height: var(--icon-size) !important;

  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;

  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(-1 * var(--orbit-radius)))
    rotate(calc(-1 * var(--angle))) !important;
}

.maintenance-orbit span:nth-child(1) { --angle: 0deg; }
.maintenance-orbit span:nth-child(2) { --angle: 72deg; }
.maintenance-orbit span:nth-child(3) { --angle: 144deg; }
.maintenance-orbit span:nth-child(4) { --angle: 216deg; }
.maintenance-orbit span:nth-child(5) { --angle: 288deg; }

.maintenance-card h1 {
  margin: 10px 0 0;
  font-size: clamp(34px, 6vw, 62px);
  line-height: .95;
  background: linear-gradient(90deg, #b7f7d4, #d8f989, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.maintenance-card p {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  font-size: 16px;
}

.maintenance-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px auto 0;
  max-width: 500px;
}

.maintenance-countdown div {
  padding: 13px 8px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.maintenance-countdown strong {
  display: block;
  font-size: 28px;
  color: #c7f36b;
  line-height: 1;
}

.maintenance-countdown span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.maintenance-loader {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.maintenance-loader i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c7f36b;
  animation: maintenanceDots 1.2s ease-in-out infinite;
}

.maintenance-loader i:nth-child(2) { animation-delay: .18s; }
.maintenance-loader i:nth-child(3) { animation-delay: .36s; }

.maintenance-hiker {
  opacity: 1;
  filter:
    drop-shadow(0 0 10px rgba(199, 243, 107, .45))
    drop-shadow(0 18px 28px rgba(0, 0, 0, .75));
  transform: scale(1.15);
}

.maintenance-hiker svg,
.maintenance-hiker img {
  width: 105px;
  height: auto;
}

.maintenance-hiker-left { left: 5%; }
.maintenance-hiker-right { right: 5%; }

.maintenance-light {
  opacity: .9;
  filter: blur(1px);
}

@keyframes maintenanceGlow {
  from { filter: hue-rotate(0deg) brightness(1); }
  to { filter: hue-rotate(18deg) brightness(1.15); }
}

@keyframes maintenanceSpin {
  to { transform: rotate(360deg); }
}

@keyframes maintenanceOrbit {
  to { transform: rotate(360deg); }
}

@keyframes maintenanceDots {
  0%, 80%, 100% { transform: translateY(0); opacity: .45; }
  40% { transform: translateY(-10px); opacity: 1; }
}

@media (max-width: 760px) {
  .maintenance-body {
    overflow-x: hidden;
    overflow-y: auto;
  }

.maintenance-screen {
  padding: 6px;
}

  .maintenance-card {
  width: min(100%, 390px);
  max-height: calc(100svh - 12px);
  padding: 20px 16px !important;
  border-radius: 20px;
}

  .maintenance-card::before {
    inset: -45px;
  }

  .maintenance-card::after {
    border-radius: 21px;
  }

 .maintenance-logo {
  width: 64px;
  top: 8%;
}

.maintenance-orbit {
  width: 64px;
  height: 64px;
  margin: 0 auto 6px;
}

  .maintenance-orbit span {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .maintenance-orbit span:nth-child(1) { top: -13px; left: 26px; }
  .maintenance-orbit span:nth-child(2) { right: -13px; top: 26px; }
  .maintenance-orbit span:nth-child(3) { bottom: -13px; left: 26px; }
  .maintenance-orbit span:nth-child(4) { left: -13px; top: 26px; }
  .maintenance-orbit span:nth-child(5) { left: -13px; top: 26px; }
  maintenance-card h1 {
  font-size: 28px;
  margin-top: 2px;
}

.maintenance-card p {
  font-size: 12px;
  line-height: 1.25;
  margin-top: 6px;
}

 .maintenance-countdown {
  margin-top: 8px;
  gap: 6px;
}

.maintenance-countdown div {
  padding: 6px 4px;
}

.maintenance-countdown strong {
  font-size: 20px;
}

  .maintenance-countdown span {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: .10em;
  }

  .maintenance-loader {
  margin-top: 8px;
}

  .maintenance-loader i {
    width: 9px;
    height: 9px;
  }

  .maintenance-hiker {
    transform: scale(.85);
  }

  .maintenance-hiker svg,
  .maintenance-hiker img {
    width: 62px;
  }

  .maintenance-hiker-left { left: -8%; }
  .maintenance-hiker-right { right: -8%; }
}

@media (max-width: 380px) {
  .maintenance-card {
    padding: 12px 10px;
  }

  .maintenance-logo {
    width: 85px;
  }

  .maintenance-orbit {
    width: 68px;
    height: 68px;
  }

  .maintenance-orbit span {
    width: 23px;
    height: 23px;
    font-size: 12px;
  }

  .maintenance-orbit span:nth-child(1) { top: -11px; left: 22px; }
  .maintenance-orbit span:nth-child(2) { right: -11px; top: 22px; }
  .maintenance-orbit span:nth-child(3) { bottom: -11px; left: 22px; }
  .maintenance-orbit span:nth-child(4) { left: -11px; top: 22px; }
  .maintenance-orbit span:nth-child(5) { left: -11px; top: 22px; }

  .maintenance-card h1 {
    font-size: 34px;
  }

  .maintenance-card p {
  font-size: 14px !important;
  line-height: 1.45 !important;
}
  .maintenance-countdown {
    max-width: 250px;
    gap: 6px;
  }

  .maintenance-countdown div {
    padding: 6px 4px;
  }

  .maintenance-countdown strong {
    font-size: 20px;
  }
}

/* LANGUAGE DROPDOWN - FORCE 2 COLUMNS */
.lang-dropdown.open #langDropdownMenu,
.lang-dropdown.open .lang-dropdown-menu {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  flex-direction: initial !important;
}

#langDropdownMenu {
  width: 420px !important;
  max-width: calc(100vw - 64px) !important;
  gap: 8px !important;
}

#langDropdownMenu a {
  width: 100% !important;
  min-width: 0 !important;
}
/* MOBILE LANGUAGES - FORCE 2 COLUMNS */
@media (max-width: 760px) {
  .mobile-lang-switch {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    max-height: 55vh !important;
    overflow-y: auto !important;
  }

  .mobile-lang-switch .lang-flag {
    width: 100% !important;
    height: 44px !important;
    border-radius: 14px !important;
  }

  .mobile-lang-switch .lang-flag img {
    width: 28px !important;
    height: 28px !important;
    margin: auto !important;
  }
}
/* Comunitatea Hiking Fest - participanti.php badges */
.community-grid .community-member-card{
  overflow:hidden;
}

.community-member-layout{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

.community-avatar{
  width:76px;
  height:76px;
  object-fit:cover;
  border-radius:50%;
  flex:0 0 76px;
  border:2px solid rgba(255,255,255,.18);
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.community-avatar-fallback{
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.12);
  font-size:28px;
  font-weight:900;
  color:#fff;
}

.community-member-content{
  min-width:0;
  flex:1;
}

.community-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 14px;
}

.community-badge{
  display:inline-flex;
  align-items:center;
  width:auto;
  max-width:fit-content;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.02em;
  color:#fff;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:none;
  text-transform:none;
}

.community-badge.admin{background:#7c3aed;color:#fff;border-color:rgba(255,255,255,.18);}
.community-badge.moderator{background:#2563eb;color:#fff;border-color:rgba(255,255,255,.18);}
.community-badge.volunteer{background:#0f766e;color:#fff;border-color:rgba(255,255,255,.18);}
.community-badge.artist{background:#be123c;color:#fff;border-color:rgba(255,255,255,.18);}
.community-badge.participant{background:#374151;color:#fff;border-color:rgba(255,255,255,.18);}
.community-badge.interested{background:#92400e;color:#fff;border-color:rgba(255,255,255,.18);}
.community-badge.verified{background:#059669;color:#fff;border-color:rgba(255,255,255,.18);}
.community-badge.phone{background:#0891b2;color:#fff;border-color:rgba(255,255,255,.18);}
.community-badge.approved{background:#16a34a;color:#fff;border-color:rgba(255,255,255,.18);}
.community-badge.junior{background:#f59e0b;color:#111827;border-color:rgba(255,255,255,.18);}

@media (max-width:640px){
  .community-member-layout{
    gap:14px;
  }

  .community-avatar{
    width:64px;
    height:64px;
    flex-basis:64px;
  }

  .community-badge{
    font-size:11px;
    padding:6px 10px;
  }
}

/* ========================= */
/* MAINTENANCE PRO PATCH */
/* Copiază la final în /hiking-fest/style.css */
/* ========================= */

.maintenance-orbit-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}

.maintenance-orbit-wrap .maintenance-orbit {
  position: absolute !important;
  inset: 18px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  z-index: 2;
}

.maintenance-orbit-wrap .maintenance-logo {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 200px !important;
  max-width: 192px !important;
  height: auto !important;
  margin: 0 !important;
  z-index: 4 !important;
  padding: 7px;
  border-radius: 24px;
background: transparent !important;
border: none !important;
  filter: none;
  animation: maintenanceLogoPulse 2.6s ease-in-out infinite;
}

.maintenance-hiker {
  position: fixed;
  bottom: 74px;
  z-index: 3;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  opacity: 1 !important;
  filter: drop-shadow(0 0 20px rgba(199,243,107,.42)) drop-shadow(0 25px 38px rgba(0,0,0,.78));
  pointer-events: none;
}

.maintenance-hiker-left {
  left: 10%;
  animation: maintenanceHikerWalkLeft 5.5s ease-in-out infinite;
}

.maintenance-hiker-right {
  right: 10%;
  animation: maintenanceHikerWalkRight 5.5s ease-in-out infinite;
}

.maintenance-hiker-person {
  position: relative;
  z-index: 4;
  font-size: 78px;
  line-height: 1;
  filter: brightness(1.45) contrast(1.2);
}

.maintenance-hiker-tool {
  position: absolute;
  z-index: 5;
  top: 42px;
  right: 22px;
  font-size: 34px;
  animation: maintenanceToolHit 2.8s ease-in-out infinite;
}

.maintenance-beam {
  position: absolute;
  top: 48px;
  width: 310px;
  height: 95px;
  opacity: .78;
  filter: blur(8px);
  background: linear-gradient(90deg, rgba(199,243,107,.42), rgba(199,243,107,.16), transparent);
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 58%);
  z-index: 1;
  mix-blend-mode: screen;
}

.maintenance-beam-left {
  left: 94px;
  transform: rotate(-5deg);
}

.maintenance-beam-right {
  right: 94px;
  transform: scaleX(-1) rotate(-5deg);
}

.maintenance-audio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

@keyframes maintenanceLogoPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes maintenanceToolHit {
  0%, 70%, 100% { transform: rotate(-18deg) translateY(0); }
  78% { transform: rotate(16deg) translateY(5px); }
  84% { transform: rotate(-8deg) translateY(0); }
}

@keyframes maintenanceHikerWalkLeft {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(18px) scale(1.03); }
}

@keyframes maintenanceHikerWalkRight {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(-18px) scale(1.03); }
}

@media (max-width: 900px) {
  .maintenance-hiker {
    bottom: 38px;
    width: 105px;
    height: 105px;
  }

  .maintenance-hiker-left { left: 0; }
  .maintenance-hiker-right { right: 0; }

  .maintenance-hiker-person { font-size: 48px; }
  .maintenance-hiker-tool { font-size: 22px; top: 30px; right: 18px; }

  .maintenance-beam {
    width: 160px;
    height: 60px;
    top: 34px;
    opacity: .55;
  }

  .maintenance-beam-left { left: 62px; }
  .maintenance-beam-right { right: 62px; }

  .maintenance-orbit-wrap {
    width: 108px;
    height: 108px;
    margin-bottom: 8px;
  }

  .maintenance-orbit-wrap .maintenance-orbit {
    inset: 18px !important;
  }

  .maintenance-orbit-wrap .maintenance-logo {
    width: 190px !important;
    max-width: 192px !important;
    border-radius: 18px;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .maintenance-hiker {
    opacity: .72 !important;
  }

  .maintenance-hiker-left { left: -18px; }
  .maintenance-hiker-right { right: -18px; }

  .maintenance-beam {
    opacity: .42;
    width: 130px;
  }
}

@media (max-width: 768px) {
  .maintenance-orbit {
    --orbit-size: 165px;
    --icon-size: 42px;
  }
}
/* FIX FINAL MAINTENANCE ORBIT - FĂRĂ CERC, ICONURI EGALE */

.maintenance-orbit-wrap {
  position: relative !important;
  width: 190px !important;
  height: 190px !important;
  margin: 0 auto 24px !important;
}

.maintenance-orbit {
  --orbit-size: 190px !important;
  --icon-size: 48px !important;
  --orbit-radius: 72px !important;

  position: absolute !important;
  inset: 0 !important;
  width: var(--orbit-size) !important;
  height: var(--orbit-size) !important;
  margin: 0 !important;

  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;

  animation: maintenanceOrbit 14s linear infinite !important;
}

.maintenance-orbit::before,
.maintenance-orbit::after {
  display: none !important;
  content: none !important;
}

.maintenance-orbit span {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;

  width: var(--icon-size) !important;
  height: var(--icon-size) !important;

  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;

 background: transparent !important;
border: none !important;
box-shadow: none !important;

  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(-1 * var(--orbit-radius)))
    rotate(calc(-1 * var(--angle))) !important;
}

.maintenance-orbit span:nth-child(1) { --angle: 0deg !important; }
.maintenance-orbit span:nth-child(2) { --angle: 72deg !important; }
.maintenance-orbit span:nth-child(3) { --angle: 144deg !important; }
.maintenance-orbit span:nth-child(4) { --angle: 216deg !important; }
.maintenance-orbit span:nth-child(5) { --angle: 288deg !important; }

.maintenance-logo {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;

  width: 88px !important;
  max-width: none !important;
  height: auto !important;

  margin: 0 !important;
  transform: translate(-50%, -50%) !important;
  z-index: 20 !important;

filter: none;
}

@media (max-width: 760px) {
  .maintenance-orbit-wrap {
    width: 165px !important;
    height: 165px !important;
    margin-bottom: 18px !important;
  }

  .maintenance-orbit {
    --orbit-size: 165px !important;
    --icon-size: 42px !important;
    --orbit-radius: 62px !important;
  }

  .maintenance-logo {
    width: 76px !important;
  }
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:40px;
}

.stat-card{
  text-align:center;
  padding:24px;
  border-radius:22px;
  background:var(--panel);
  border:1px solid rgba(255,255,255,.08);
}

.stat-card strong{
  display:block;
  font-size:42px;
  font-weight:800;
  color:var(--green);
}

.stat-card span{
  display:block;
  margin-top:10px;
  color:var(--muted);
}

@media(max-width:768px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .stat-card strong{
    font-size:30px;
  }
}

/* PARTICIPANTI.PHP */

.community-grid{
    margin-top: 40px;
}

.community-member-card{
    border-radius: 28px;
    padding: 26px;
    min-height: 320px;
}

.community-avatar{
    width: 140px !important;
    height: 140px !important;
    flex: 0 0 140px !important;
    border-radius: 30px !important;
}

.community-member-content h3{
    font-size: 42px;
    margin: 10px 0 18px;
}

.community-badges{
    gap: 12px;
    margin: 18px 0 24px;
}

.community-badge{
    padding: 12px 22px;
    font-size: 15px;
    letter-spacing: .18em;
    font-weight: 800;
}

.community-member-content p{
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,.75);
}

.section-head{
    padding-top: 120px;
}

@media (max-width: 768px){

    .section-head{
        padding-top: 90px;
    }

    .community-member-layout{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .community-avatar{
        width: 120px !important;
        height: 120px !important;
        flex-basis: 120px !important;
    }

    .community-member-content h3{
        font-size: 30px;
    }
}

/* FIX DESKTOP PARTICIPANTI */

.community-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(520px, 1fr)) !important;
    gap: 24px !important;
}

.community-member-card {
    width: 100% !important;
    max-width: none !important;
}

.community-member-layout {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 24px !important;
}

.community-avatar,
.community-avatar img {
    width: 110px !important;
    height: 110px !important;
    min-width: 110px !important;
    border-radius: 22px !important;
    object-fit: cover !important;
}

.community-member-content {
    flex: 1 !important;
    min-width: 0 !important;
}

.community-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.community-badge {
    width: auto !important;
    white-space: normal !important;
    display: inline-flex !important;
}

@media (max-width: 768px) {
    .community-grid {
        grid-template-columns: 1fr !important;
    }

    .community-member-layout {
        flex-direction: column !important;
    }
}
/* PARTICIPANTI - suprascrie news-card */

.community-member-card {
    padding: 24px !important;
    min-height: auto !important;
}

.community-member-layout {
    display: grid !important;
    grid-template-columns: 120px 1fr !important;
    gap: 24px !important;
    align-items: start !important;
}

.community-avatar {
    width: 120px !important;
    height: 120px !important;
    border-radius: 24px !important;
    object-fit: cover !important;
}

.community-avatar-fallback {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.community-member-content h3 {
    margin: 8px 0 12px !important;
    font-size: 2rem !important;
    line-height: 1.1 !important;
}

.community-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 12px 0 18px !important;
}

.community-badge {
    width: auto !important;
    display: inline-flex !important;
    white-space: nowrap !important;
    padding: 8px 14px !important;
}

.community-member-content p {
    margin-top: 14px !important;
    line-height: 1.8 !important;
}

.community-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr)) !important;
    gap: 24px !important;
}

@media (max-width: 768px) {

    .community-grid {
        grid-template-columns: 1fr !important;
    }

    .community-member-layout {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .community-avatar {
        margin: 0 auto;
    }

    .community-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {

  .community-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .community-badge {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    white-space: normal !important;
    text-align: center;
    line-height: 1.2;
    padding: 12px 16px;
  }

}
@media (max-width: 768px) {

  .community-member-card {
    padding: 20px !important;
  }

  .community-member-content h3 {
    font-size: 2.2rem !important;
    margin: 8px 0 !important;
  }

  .community-member-meta {
    margin-top: 20px !important;
  }

}
@media (max-width: 768px) {

  .community-avatar,
  .community-avatar img {
    width: 140px !important;
    height: 140px !important;
  }

}

.rating-stars{
    color:#FFD700;
    font-size:20px;
    letter-spacing:2px;
}
.volunteer-card strong,
.feedback-stars{
    color:#FFD700;
}

.feedback-stars{
    color:#FFD700 !important;
    font-size:20px;
    letter-spacing:2px;
}

.feedback-volunteer-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.feedback-volunteer-photo{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.feedback-location{
    margin:4px 0 0;
    opacity:.8;
}

.artist-card {
    overflow: hidden;
}

.artist-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    margin-bottom: 18px;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.community-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
    margin-top:40px;
}

.community-stat-card{
    padding:28px;
    border-radius:28px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
}

.community-stat-card h3{
    font-size:16px;
    font-weight:700;
    margin-bottom:22px;
    color:rgba(255,255,255,.85);
}

.community-stat-card li{
    list-style:none;
    margin-bottom:18px;
}

.community-stat-card strong{
    display:block;
    font-size:22px;
    line-height:1.15;
    font-weight:800;
    color:#fff;
}

.community-stat-card span{
    display:block;
    font-size:14px;
    color:rgba(255,255,255,.65);
}