:root{
  --bg-base-1: #1b1b1b;
  --bg-base-2: #131313;

  --shine: rgba(255,255,255,0.14);
  --grain-opacity: .60;

  --frame-stroke: rgba(255,255,255,.14);
  --frame-stroke-soft: rgba(255,255,255,.07);

  --frame-margin: 18px;
  --frame-radius: 22px;

  --text: #cfcfcf;
  --muted: rgba(255,255,255,.62);
  --accent: #ff6a1a;
  --ink: #111;
}

html, body{ height:100%; }

body{
  margin:0;
  background:#0f0f0f;
  overflow-x:hidden;
  font-family:'Montserrat', sans-serif;
  color: var(--text);
}

/* ================= FULLSCREEN BACKGROUND (UGYANAZ) ================= */

.bg-layer{
  position:fixed;
  inset:0;
  z-index:0;

  background:
    radial-gradient(1200px 750px at 92% 16%,
      var(--shine) 0%,
      rgba(255,255,255,0.08) 18%,
      rgba(255,255,255,0) 60%),

    radial-gradient(1000px 520px at 70% -5%,
      rgba(255,255,255,0.06) 0%,
      rgba(255,255,255,0) 60%),

    linear-gradient(160deg, var(--bg-base-1) 0%, var(--bg-base-2) 70%);

  filter: contrast(1.02) saturate(0.98);
}

.bg-layer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(130% 150% at 50% 35%,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 38%,
      rgba(0,0,0,.30) 62%,
      rgba(0,0,0,.62) 100%);
  pointer-events:none;
}

.bg-layer::after{
  content:"";
  position:absolute;
  inset:-25%;
  pointer-events:none;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='2 0 0 0 -0.55  0 2 0 0 -0.55  0 0 2 0 -0.55  0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.95'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1.6 0 0 0 -0.35  0 1.6 0 0 -0.35  0 0 1.6 0 -0.35  0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='360' height='360' filter='url(%23n)' opacity='0.85'/%3E%3C/svg%3E");

  background-size: 140px 140px, 260px 260px;
  background-position: 0 0, 60px 40px;

  opacity: var(--grain-opacity);
  mix-blend-mode: soft-light;
  transform: rotate(-2deg);
}

/* ================= SECTION FRAME (UGYANAZ) ================= */

.section-frame{
  position:relative;
  z-index:20;
  margin: var(--frame-margin);
  border-radius: var(--frame-radius);
  overflow:hidden;

  box-shadow:
    0 0 0 1px var(--frame-stroke),
    inset 0 0 0 1px var(--frame-stroke-soft);
}

.section-frame::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background:
    radial-gradient(120% 120% at 50% 0%,
      rgba(255,255,255,.06) 0%,
      rgba(255,255,255,0) 42%);
  opacity:.35;
  mix-blend-mode: overlay;
  pointer-events:none;
}

/* FIX: container-fluid padding ne duplázzon */
.section-frame > section > .container-fluid{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ================= INFO PAGE ================= */

.info-frame{
  min-height: calc(100vh - (var(--frame-margin) * 2));
}

.info-section{
  width:100%;
  padding: 26px;
  position: relative;
  z-index: 2;
}

.info-subTitle{
  font-weight: 800;
  font-size: 18px;
  margin: 18px 0 10px;
  color: rgba(255,255,255,.85);
}

.info-inner{ position:relative; z-index:2; }

/* “HELLO”-szerű cím */
.info-title{
  font-weight:900;
  letter-spacing:-2px;
  line-height:.9;
  font-size: clamp(56px, 9vw, 120px);
  margin: 2px 0 10px;
}
.info-titleText{ color: var(--text); }
.info-titleBang{ color: var(--accent); }

.info-kicker{
  color: rgba(255,255,255,.62);
  font-size: 16px;
  letter-spacing: .5px;
  margin-bottom: 18px;
}

/* Szöveg blokk */
.info-body{
  max-width: 980px;
}

/* Kártya blokkok */
.info-card{
  border-radius: 18px;
  padding: 18px;
  margin-top: 14px;
  background: rgba(0,0,0,0.02);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.16),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

.info-cardTitle{
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.86);
}

.info-cardText{
  color: rgba(255,255,255,.60);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;

  overflow-wrap: anywhere;
  hyphens: auto;
}

/* Listák */
.info-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.60);
  font-size: 16px;
  line-height: 1.55;
}

.info-liKey{
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

.info-ol{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.60);
  font-size: 16px;
  line-height: 1.55;
}

.info-ol li{ margin: 8px 0; }

/* Linkek */
.info-link{
  color: rgba(255,255,255,.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.info-link:hover{
  color: #fff;
  border-bottom-color: rgba(255,255,255,.42);
}

/* Akciók */
.info-actions{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 12px;
}

.info-backBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration:none;
  font-weight: 800;

  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.info-backBtn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.20),
    0 12px 24px rgba(0,0,0,.30),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width:576px){
  :root{
    --frame-margin:10px;
    --frame-radius:18px;
  }

  .info-section{
    padding: 18px;
  }
}