@font-face {
  font-family: "Basic Sans";
  src: url("Fonts/basic-sans.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Basic Sans";
  src: url("Fonts/basic-sans-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Basic Sans";
  src: url("Fonts/basic-sans-black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Abandon";
  src: url("Fonts/AbandoN.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #07090c;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --pink: #dc1868;
  --pink-light: #ed4186;
  --pink-dark: #9f0d49;
  --rustic-gray: #8d8a84;
  --panel: rgba(7, 9, 12, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0b151c;
  color: var(--text);
  font-family: "Basic Sans", Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.88) 0%, rgba(7, 9, 12, 0.56) 36%, rgba(7, 9, 12, 0.12) 66%, rgba(7, 9, 12, 0.62) 100%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.03) 0%, rgba(7, 9, 12, 0.12) 64%, rgba(7, 9, 12, 0.82) 100%),
    url("img/Header.png") center / cover no-repeat;
}

.site-nav {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(100% - 78px, 1200px);
  margin: 0 auto;
  padding-top: 16px;
}

.cosy-logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.cosy-logo img {
  width: 92px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 24px;
  min-width: max-content;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--pink-light);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 17px;
  background: linear-gradient(180deg, var(--pink-light), var(--pink));
  box-shadow: inset 0 -4px 0 var(--pink-dark), 0 12px 26px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-button {
  min-height: 39px;
  padding: 0 20px;
  gap: 7px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(545px, calc(100% - 78px));
  margin: 96px 0 0 max(39px, calc((100vw - 1200px) / 2 + 39px));
}

.presented {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero h1 {
  width: min(520px, 100%);
  max-width: 100%;
  margin: 0 0 5px;
  line-height: 0;
}

.hero h1 span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero h1 img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.2));
}

.live-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 7px;
}

.live {
  margin: 0;
  color: var(--pink);
  font-family: "Abandon", "Basic Sans", Arial, sans-serif;
  font-size: 79px;
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.live-row img {
  width: 70px;
  height: auto;
  display: block;
  margin-top: 6px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.subtitle {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.28;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 34px;
  margin-top: 47px;
}

.event-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  color: #fff;
}

.fact-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-copy {
  display: grid;
}

.fact-copy strong {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
}

.fact-copy > span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.hero-actions {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.support-button,
.outline-button {
  min-height: 47px;
  padding: 0 23px;
  white-space: nowrap;
}

.support-button {
  min-width: 231px;
  gap: 8px;
}

.button-icon {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

.button-svg-icon {
  width: 25px;
  height: 25px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outline-button {
  min-width: 229px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 9px;
  background: rgba(7, 9, 12, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-artist {
  position: absolute;
  z-index: 2;
  top: 72px;
  right: max(8px, calc((100vw - 1200px) / 2 - 32px));
  width: min(630px, 53vw);
  pointer-events: none;
  filter: drop-shadow(-26px 18px 24px rgba(0, 0, 0, 0.42));
}

.signature {
  position: absolute;
  z-index: 4;
  right: max(43px, calc((100vw - 1200px) / 2 + 43px));
  bottom: 32px;
  width: 139px;
  height: auto;
  display: block;
}

.donation-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 36px 39px 70px;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.18), rgba(7, 9, 12, 0.72) 58%, rgba(7, 9, 12, 0.92) 100%),
    url("img/Footer.png") center / cover no-repeat;
}

.donation-inner {
  width: min(800px, 100%);
  margin: 0 auto;
  text-align: center;
}

.donation-inner h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.donation-inner p {
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.donation-inner p + p {
  margin-top: 9px;
}

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

.donor-fields label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.donor-fields input {
  width: 100%;
  min-height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.13);
  color: #fff;
  padding: 0 13px;
  outline: 0;
}

.donor-fields input:focus {
  border-color: var(--pink-light);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
  margin-top: 15px;
}

.amount-grid button,
.custom-amount {
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.13);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.amount-grid button {
  cursor: pointer;
}

.amount-option.is-active {
  border-color: var(--pink-light);
  background: rgba(220, 24, 104, 0.2);
}

.custom-amount {
  gap: 9px;
  padding: 0 12px;
}

.amount-option {
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
}

.amount-option strong,
.custom-amount strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
}

.amount-option span,
.custom-amount small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.2;
}

.custom-amount span {
  display: grid;
  min-width: 90px;
}

.custom-amount input {
  width: 82px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #fff;
  text-align: right;
  outline: 0;
}

.custom-amount input:focus {
  border-bottom-color: var(--pink-light);
}

.donation-button {
  width: min(660px, 100%);
  min-height: 55px;
  margin-top: 12px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 16px;
}

.donation-privacy {
  width: min(660px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.donation-privacy input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--pink);
}

.donation-privacy a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.donation-note {
  margin-top: 13px !important;
}

.payment-methods {
  width: 217px;
  height: auto;
  display: block;
  margin: 15px auto 0;
}

@media (max-width: 980px) {
  .hero {
    min-height: 780px;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    width: calc(100% - 44px);
  }

  .nav-links {
    display: none;
  }

  .hero-copy {
    width: calc(100% - 44px);
    margin: 86px 22px 0;
  }

  .hero h1 {
    width: min(480px, 100%);
  }

  .live {
    font-size: 62px;
  }

  .hero-artist {
    top: auto;
    right: -92px;
    bottom: -94px;
    width: 560px;
    opacity: 0.86;
  }

  .signature {
    right: 24px;
    width: 126px;
  }

  .event-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 520px;
  }

  .hero-actions {
    flex-wrap: wrap;
    max-width: 520px;
  }

  .support-button,
  .outline-button {
    min-width: 0;
    flex: 1 1 230px;
  }

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

  .donor-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 740px;
    background-position: 58% center;
  }

  .site-nav {
    padding-top: 14px;
  }

  .cosy-logo img {
    width: 78px;
  }

  .nav-button {
    min-height: 38px;
    padding: 0 17px;
    border-radius: 15px;
    font-size: 12px;
  }

  .hero-copy {
    margin-top: 78px;
  }

  .hero h1 {
    width: min(390px, 100%);
  }

  .live {
    font-size: 50px;
  }

  .live-row {
    gap: 14px;
  }

  .live-row img {
    width: 56px;
  }

  .subtitle {
    font-size: 17px;
  }

  .event-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .support-button,
  .outline-button {
    width: 100%;
  }

  .hero-artist {
    top: auto;
    right: -170px;
    bottom: -58px;
    width: 435px;
    opacity: 0.58;
  }

  .signature {
    right: 18px;
    bottom: 16px;
    width: 108px;
  }

  .donation-section {
    min-height: 500px;
    padding: 30px 22px 80px;
  }

  .donation-inner h2 {
    font-size: 25px;
  }

  .amount-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .donation-button {
    min-height: 56px;
    padding: 0 18px;
    font-size: 13px;
  }

}


/* ===== KÖZÉPSŐ TARTALMI SZEKCIÓK ===== */
.section-head { text-align:center; margin-bottom:28px; }
.section-head .eyebrow { margin-bottom:6px; }
.section-head h2 { margin:0; font-size:36px; font-weight:900; line-height:1.05; text-transform:uppercase; }
.dark-heading h2 { color:#fff; }
.light-heading h2 { color:#11151b; }
.eyebrow { margin:0 0 9px; color:var(--pink); font-size:13px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.content-panel { border:1px solid rgba(255,255,255,.12); border-radius:18px; background:rgba(255,255,255,.045); box-shadow:0 18px 40px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.025); }
.light-panel { border-color:rgba(17,21,27,.09); background:rgba(255,255,255,.55); box-shadow:0 15px 34px rgba(40,30,20,.08); }
.image-placeholder { width:100%; border-radius:14px; border:1px dashed rgba(255,255,255,.32); background:linear-gradient(135deg,rgba(220,24,104,.22),rgba(255,255,255,.03)),rgba(255,255,255,.035); display:flex; flex-direction:column; gap:12px; align-items:center; justify-content:center; color:rgba(255,255,255,.76); font-size:15px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
.light-panel .image-placeholder { border-color:rgba(17,21,27,.24); color:rgba(17,21,27,.62); background:linear-gradient(135deg,rgba(220,24,104,.11),rgba(255,255,255,.2)),rgba(17,21,27,.025); }
.image-placeholder svg { width:42px; height:42px; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.panel-image { width:100%; display:block; border-radius:14px; object-fit:cover; }
.large-image { min-height:312px; aspect-ratio:1.42; }
.quick-info-section { padding:24px 39px; background:#f3eee5; border-bottom:1px solid rgba(17,21,27,.22); }
.quick-info-grid { width:min(100%,1200px); margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.quick-info-item { min-height:104px; padding:18px 16px; display:grid; justify-items:center; align-content:center; gap:6px; text-align:center; color:#11151b; }
.quick-info-icon { width:34px; height:34px; display:block; object-fit:contain; }
.quick-info-item strong { color:#11151b; font-size:20px; font-weight:900; line-height:1.05; text-transform:uppercase; }
.quick-info-item span { color:#11151b; font-size:14px; font-weight:700; }
.quick-info-item.is-highlight strong { color:var(--pink); }
.intro-section { padding:58px 39px 34px; background:#f3eee5; color:#11151b; }
.intro-grid { width:min(100%,1200px); margin:0 auto; display:grid; grid-template-columns:1.03fr .97fr; gap:24px; }
.intro-copy,.image-panel { padding:0; }
.intro-copy h2 { margin:0 0 17px; color:#11151b; font-size:44px; line-height:1.02; font-weight:900; }
.intro-copy h2 span { color:var(--pink); }
.intro-copy p { margin:0 0 12px; color:rgba(17,21,27,.84); font-size:16px; line-height:1.55; }
.intro-list { margin:18px 0 0; padding-left:19px; color:rgba(17,21,27,.82); }
.intro-list li { margin-bottom:8px; font-size:15px; }
.large-placeholder { min-height:320px; }
.benefits-section { padding:54px 39px 60px; background:url("img/Kermesse webdesign_abstract-textured-pattern-old-concrete-cement-rough-blank-empty-design-with-copy-space-material-architecture-dark-stucco-stained-scratched-rustic-solid-paint-antique-style.png") center / cover no-repeat; }
.benefits-grid { width:min(100%,1200px); margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.benefit-card { padding:27px 21px; text-align:center; color:#fff; }
.benefit-icon { width:68px; height:68px; margin:0 auto 18px; display:grid; place-items:center; }
.benefit-icon img { width:63px; height:63px; display:block; object-fit:contain; }
.benefit-card h3 { margin:0 0 10px; color:#fff; font-size:19px; font-weight:900; }
.benefit-card p { margin:0; color:#fff; font-size:14px; line-height:1.5; }
.program-section { padding:58px 39px 32px; background:url("img/Kermesse webdesign_bg2.png") center / cover no-repeat; color:#11151b; }
.program-grid { width:min(100%,1200px); margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:0px; }
.program-card { position:relative; padding:30px 26px; overflow:hidden; border:1px solid #111; border-radius:18px; background:transparent; box-shadow:none; text-align:center; }
.program-card::after { content:none; }
.featured-program { background:linear-gradient(135deg,rgba(220,24,104,.09),rgba(255,255,255,.65)); }
.program-card .program-time { margin:0 0 8px; color:var(--pink); font-size:25px; font-weight:900; }
.program-card h3 { margin:0 0 10px; color:#11151b; font-size:28px; font-weight:900; text-transform:uppercase; }
.program-card p { margin:0 0 8px; color:rgba(17,21,27,.8); font-size:15px; line-height:1.45; }
.program-lineup { font-weight:700; }
.program-note { width:min(100%,1200px); margin:17px auto 0; color:rgba(17,21,27,.58); font-size:13px; text-align:center; }
.artists-section { padding:58px 39px 48px; background:url("img/Kermesse webdesign_photo-ground-texture-pattern.png") center / cover no-repeat; }
.featured-artist { width:min(100%,1200px); margin:0 auto 22px; padding:0; display:grid; grid-template-columns:1.08fr .92fr; gap:24px; }
.artist-placeholder { min-height:270px; aspect-ratio:1.5; object-position:center; }
.featured-copy { display:flex; flex-direction:column; justify-content:center; padding:14px 20px 14px 0; }
.featured-copy h2 { margin:0 0 12px; font-size:44px; line-height:1; font-weight:900; text-transform:uppercase; }
.artist-tag { margin:0 0 8px!important; color:#e9c5ff!important; font-size:14px!important; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.featured-copy p { margin:0; color:rgba(255,255,255,.8); font-size:15px; line-height:1.55; }
.featured-copy p + p { margin-top:10px; }
.artist-cards { width:min(100%,1200px); margin:0 auto; display:grid; grid-template-columns:repeat(5,1fr); gap:15px; }
.artist-card { padding:0; text-align:center; }
.artist-thumb { width:100%; min-height:150px; aspect-ratio:1; display:block; margin-bottom:13px; border-radius:12px; object-fit:cover; }
.placeholder-thumb { object-position:center; }
.artist-card h3 { margin:0 0 7px; font-size:18px; font-weight:900; }
.artist-card p { margin:0; color:rgba(255,255,255,.72); font-size:13px; line-height:1.45; }
.location-section { padding:56px 39px 54px; background:#f3eee5; color:#11151b; }
.location-grid { width:min(100%,1200px); margin:0 auto; display:grid; grid-template-columns:.92fr 1.08fr; gap:22px; }
.location-copy,.map-panel { padding:0; }
.location-copy h2 { margin:0 0 15px; color:#11151b; font-size:36px; line-height:1.05; font-weight:900; }
.location-copy>p:not(.eyebrow) { margin:0 0 19px; color:rgba(17,21,27,.82); font-size:15px; line-height:1.55; }
.location-meta { display:grid; gap:11px; margin-bottom:22px; }
.location-meta-item { display:flex; align-items:center; gap:11px; color:rgba(17,21,27,.86); font-size:14px; font-weight:700; }
.location-meta-item svg { width:22px; height:22px; flex:0 0 auto; fill:none; stroke:var(--pink); stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }
.location-button { min-width:232px; min-height:47px; border-color:rgba(17,21,27,.3); background:var(--pink-light); color:white; }
.location-note { margin-top:32px!important; font-size:13px!important; color:rgba(17,21,27,.62)!important; }
.map-panel { overflow:hidden; }
.map-frame { width:100%; min-height:350px; height:100%; display:block; border:0; border-radius:14px; }
.location-section + .donation-section { margin-top:0; }
.signup-section { padding:58px 39px; background:#f3eee5; color:#11151b; }
.signup-inner { width:min(100%,900px); margin:0 auto; padding:0; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:24px; align-items:center; }
.signup-inner h2 { margin:0 0 14px; color:#11151b; font-size:34px; line-height:1.06; font-weight:900; text-transform:uppercase; }
.signup-inner p { margin:0 0 11px; color:rgba(17,21,27,.82); font-size:15px; line-height:1.55; }
.signup-button { min-height:50px; padding:0 28px; white-space:nowrap; }
.faq-section { padding:56px 39px 60px; background:linear-gradient(180deg,#111c24 0%,#080f15 100%); }
.faq-list { width:min(100%,900px); margin:0 auto; display:grid; gap:10px; }
.faq-list details { border:1px solid rgba(255,255,255,.12); border-radius:12px; background:rgba(255,255,255,.04); }
.faq-list summary { cursor:pointer; padding:18px 20px; font-size:17px; font-weight:900; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; float:right; color:var(--pink-light); }
.faq-list details.is-open summary::after { content:"-"; }
.faq-answer { display:grid; grid-template-rows:0fr; opacity:0; transition:grid-template-rows .28s ease, opacity .22s ease; }
.faq-list details.is-open .faq-answer { grid-template-rows:1fr; opacity:1; }
.faq-answer-inner { min-height:0; overflow:hidden; }
.faq-list p { margin:0; padding:0 20px 18px; color:rgba(255,255,255,.76); font-size:15px; line-height:1.5; }
.site-footer { padding:28px 39px 34px; background:#05090d; color:rgba(255,255,255,.72); text-align:center; }
.footer-logo { display:flex; width:max-content; margin:0 0 18px; }
.footer-logo img { width:106px; }
.site-footer p { margin:0 0 10px; font-size:14px; line-height:1.45; }
.site-footer p:first-child { color:#fff; font-size:18px; font-weight:900; text-transform:uppercase; }
.site-footer nav { display:flex; justify-content:center; gap:20px; flex-wrap:wrap; font-size:13px; font-weight:700; }
.site-footer a:hover { color:var(--pink-light); }
.floating-support-button { position:fixed; right:24px; bottom:24px; z-index:20; min-height:50px; padding:0 22px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:18px; background:linear-gradient(180deg,var(--pink-light),var(--pink)); box-shadow:inset 0 -4px 0 var(--pink-dark),0 12px 28px rgba(0,0,0,.34); color:#fff; font-size:14px; font-weight:900; text-transform:uppercase; }
@media (max-width:1100px) { .benefits-grid{grid-template-columns:repeat(2,1fr)} .artist-cards{grid-template-columns:repeat(3,1fr)} .quick-info-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:900px) { .intro-grid,.featured-artist,.location-grid,.program-grid,.signup-inner{grid-template-columns:1fr} .artist-cards{grid-template-columns:repeat(2,1fr)} .intro-copy h2{font-size:38px} .featured-copy{padding:8px} .featured-copy h2{font-size:36px} .signup-button{width:max-content} }
@media (max-width:620px) { .quick-info-section,.intro-section,.benefits-section,.program-section,.artists-section,.location-section,.signup-section,.faq-section{padding-left:22px;padding-right:22px} .quick-info-grid,.benefits-grid,.artist-cards{grid-template-columns:1fr} .intro-copy,.image-panel{padding:20px} .intro-copy h2{font-size:30px} .section-head h2{font-size:29px} .program-time{font-size:22px} .program-card h3{font-size:22px} .featured-copy h2{font-size:30px} .location-copy h2,.signup-inner h2{font-size:29px} .large-image,.artist-placeholder,.map-frame{min-height:240px} .signup-button{width:100%} .faq-list summary{font-size:15px} .floating-support-button{right:14px;bottom:14px;min-height:46px;padding:0 16px;font-size:12px} }

.participant-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.9), rgba(7, 9, 12, 0.58)),
    url("img/Header.png") center / cover no-repeat fixed;
}

.participant-shell {
  width: min(100% - 42px, 720px);
  margin: 0 auto;
  padding: 42px 0;
}

.participant-logo {
  margin-bottom: 24px;
}

.participant-card,
.participant-message {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(8, 16, 23, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  padding: 32px;
}

.participant-card h1,
.participant-message h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.participant-lead,
.participant-message p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

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

.participant-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.participant-form input[type="text"],
.participant-form input[type="email"],
.participant-form input[type="tel"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 14px;
  outline: 0;
}

.participant-form input:focus {
  border-color: var(--pink-light);
}

.participant-checkbox {
  grid-column: 1 / -1;
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  flex-direction: row;
  gap: 10px !important;
  text-transform: none !important;
}

.participant-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
}

.participant-checkbox a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.participant-button {
  grid-column: 1 / -1;
  min-height: 52px;
  cursor: pointer;
}

.participant-errors {
  margin: 0 0 20px;
  padding: 14px 18px 14px 34px;
  border: 1px solid rgba(255, 70, 120, 0.35);
  border-radius: 10px;
  background: rgba(220, 24, 104, 0.14);
  color: #fff;
}

@media (max-width: 620px) {
  .participant-card,
  .participant-message {
    padding: 24px;
  }

  .participant-card h1,
  .participant-message h1 {
    font-size: 30px;
  }

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

.cookie-consent {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent-panel {
  width: min(100%, 1160px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(8, 16, 23, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  color: #fff;
  pointer-events: auto;
}

.cookie-consent-copy h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-consent-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-consent-copy {
  grid-column: 1 / -1;
}

.cookie-consent-copy a,
.cookie-text-button {
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-text-button {
  display: inline;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.cookie-consent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-consent-option {
  min-height: 40px;
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.cookie-consent-option input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--pink);
}

.cookie-consent-option span {
  display: grid;
  gap: 2px;
}

.cookie-consent-option strong {
  font-size: 13px;
  font-weight: 900;
}

.cookie-consent-option small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.2;
}

.cookie-consent-actions {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
}

.cookie-button,
.cookie-settings-button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
}

.cookie-button {
  min-height: 40px;
  min-width: 132px;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  white-space: nowrap;
}

.cookie-button-primary {
  background: var(--pink);
}

.cookie-button-secondary {
  background: rgba(255, 255, 255, 0.13);
}

.cookie-settings-button {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 70;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(8, 16, 23, 0.86);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

@media (max-width: 900px) {
  .cookie-button {
    flex: 1 1 0;
  }
}

@media (max-width: 620px) {
  .cookie-consent {
    inset: auto 10px 10px;
  }

  .cookie-consent-panel {
    padding: 14px;
  }

  .cookie-button {
    min-width: 0;
    padding: 0 10px;
    font-size: 12px;
  }
}
