:root {
  --bg: #050608;
  --bg-alt: #111319;
  --card-bg: #141720;
  --card-alt: #1b1f2b;
  --text: #f5f5f7;
  --muted: #a7abb8;
  --accent: #d2a347; /* arany jellegű */
  --accent-soft: rgba(210, 163, 71, 0.18);
  --border-subtle: #2a2f3d;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.35);
  --container-width: 1120px;
  --nav-height: 72px;
}

/* Global reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #151827 0, #050608 55%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.98), rgba(5, 6, 8, 0.92));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}


/* =========================================================
   DBTA Brand – Logo + Brand text
   - Bal felső logó + DBTA felirat
   - Belépő animáció: logó beúszik, aura kifakul
   ========================================================= */

/* --- Brand wrapper (link a logó + szöveg körül) --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

/* --- Logó körüli wrapper (erre tesszük a „holdat”) --- */
.brand-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- Arany aura a logó mögött (belépőkor, majd kifakul) --- */
.brand-logo-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244,193,90,0.18) 0%,    /* középen erősebb */
    rgba(244,193,90,0.09) 20%,   /* finomabb külső részek */
    rgba(244,193,90,0.03) 40%,   /* még halványabb */
    rgba(244,193,90,0.18) 60%,   /* kis erősítés a külső peremnél */ 
    rgba(244,193,90,0.09) 80%,   /* majd újra halványul */
    rgba(244,193,90,0.03) 100%,  /* nagyon halvány külső részek */
    transparent 100%
  );
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;

  /* aura anim: 1.2s, a végére teljesen eltűnik */
  opacity: 0;
  animation: logoAura 4s ease-out forwards;
}

/* --- Logó ikon --- */
.brand-logo {
  width: 35px;
  height: 35px;
  border-radius: 999px;
  object-fit: cover;

  border: 1px solid rgba(210, 163, 71, 0.85);
  background: rgba(15, 17, 22, 0.95);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8);
  filter: none;

  position: relative;
  z-index: 1;
  transition: all 0.3s ease;

  opacity: 0;
  transform: translateY(-4px);
  animation: logoFadeIn 4s ease-out forwards;
}

/* --- Logo belépő animáció --- */
@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Aura animáció: erős → elhalványul, pont akkorra, mint a logo --- */
@keyframes logoAura {
  0% {
    opacity: 0;      /* indulhat nulláról, finoman épül fel */
  }
  20% {
    opacity: 1;      /* gyorsan felépül a fény */
  }
  60% {
    opacity: 1;      /* tartja a fényt, amíg a logo beérkezik */
  }
  100% {
    opacity: 0;      /* ugyanakkorra hal el, mint a logo anim vége */
  }
}


/* --- Hover effekt: kicsi zoom + erősebb glow --- */
.brand-logo:hover {
  filter: drop-shadow(0 0 8px rgba(244, 193, 90, 0.7));
  transform: scale(1.03);
}

/* --- „DBTA” felirat a logó mellett --- */
.brand-text {
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: var(--accent);  /* globális arany szín */
}



/* ---- ----------------------------------------------------- ---- */
/* ---- ----------------------------------------------------- ---- */
.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

/* Hero */

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}

.hero-sub {
  max-width: 34rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 0.75rem;
}

.hero-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-logo img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  filter:
    drop-shadow(0 8px 25px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 22px rgba(210, 163, 71, 0.18))
    brightness(1.05)
    contrast(1.02);
}

/* Sections */

.section {
  padding: 3.25rem 0;
}

.section h2 {
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
}

.section-lead {
  max-width: 32rem;
  color: var(--muted);
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: linear-gradient(
    135deg,
    rgba(20, 23, 32, 0.96),
    rgba(15, 17, 25, 0.96)
  );
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0;
}

.card li {
  margin-bottom: 0.25rem;
  color: var(--muted);
}

.card.flat {
  background: rgba(13, 15, 22, 0.9);
  border-radius: var(--radius-md);
}

.cards.three {
  margin-top: 1.8rem;
}

/* About / Why work with me */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.about-highlight {
  background: linear-gradient(145deg, var(--card-bg), var(--card-alt));
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(210, 163, 71, 0.4);
  box-shadow: var(--shadow-subtle);
}

.about-highlight h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}



.about-highlight ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
}

.about-highlight li {
  color: var(--muted);
  margin-bottom: 0.25rem;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.contact-card {
  background: linear-gradient(145deg, var(--card-bg), var(--card-alt));
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.6rem;
  border: 1px solid rgba(210, 163, 71, 0.4);
  box-shadow: var(--shadow-soft);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 0.65rem;
  font: inherit;
  color: var(--text);
  background: rgba(8, 9, 14, 0.9);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 1px solid rgba(210, 163, 71, 0.75);
  border-color: rgba(210, 163, 71, 0.75);
  box-shadow: 0 0 0 1px rgba(210, 163, 71, 0.3);
}

.hidden {
  display: none;
}

/* --- Extra compact Services section (laptop-friendly) --- */

#services.section {
  padding-top: 3.5rem;
  padding-bottom: 0rem !important;
  margin-bottom: 0rem !important;
}

#services .section-lead {
  margin-bottom: 0.7rem;
}

#services .cards {
  margin-top: 1.1rem;
}

#services .card {
  padding: 0.95rem 1.25rem 0.9rem;
}

#services .card h3 {
  margin-bottom: 0.5rem;
}

#services .card li {
  line-height: 1.4;
}

/* Same background + kompaktabb "Why work with me" */

.section-why {
  padding-top: 1.4rem;
  padding-bottom: 2.1rem;
  background: transparent;
}

.section-why .cards.three {
  margin-top: 1.2rem;
}

.section-why .card {
  padding: 0.9rem 1.2rem 0.85rem;
}

.section-why .card p {
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

/* Kártyákon belüli szöveg legyen halványabb, ne vakító fehér */
.card p {
  color: var(--muted);
}


#services {
  scroll-margin-top: 11px;
}


/* Anchor scroll fix – sticky header ne takarja a címeket */

#about {
  scroll-margin-top: 57px;
}

/* About extra spacing */

#about.section {
  padding-top: 1rem !important;
  padding-bottom: 1.4rem !important;
}


/* About blokk bekezdései is legyenek finomabb szürkével */
#about p {
  color: var(--muted);
}

/* Ha a félkövér nevek / kiemelések maradjanak világosak: */
#about p strong {
  color: var(--text);
}


/* --- Legal page styling (impresszum, privacy, cookies) --- */

.legal-content {
  max-width: 700px;
  margin: 2rem auto;
  font-size: 0.95rem;
  color: var(--muted);
}

.legal-content h1 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 1.7rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.legal-content p {
  margin: 0 0 0.6rem;
}

.legal-content ul {
  padding-left: 1.2rem;
  margin: 0 0 0.6rem;
}

.legal-content li {
  margin-bottom: 0.25rem;
}

/* Linkek a jogi oldalon – arany, mint a többi DBTA akcentus */
.legal-content a {
  position: relative;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s ease-out;
}

.legal-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.18s ease-out;
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-content a:hover::after {
  width: 100%;
}

.legal-content a:visited {
  color: var(--accent);
}


/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out, border-color 0.12s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, #f3c96a, var(--accent));
  color: #1a1420;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.btn.ghost {
  border-color: var(--accent-soft);
  background: rgba(14, 16, 24, 0.9);
  color: var(--text);
}

.btn.ghost:hover {
  border-color: rgba(210, 163, 71, 0.75);
  background: rgba(20, 23, 34, 0.9);
}

.btn.small {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}

.btn.full {
  width: 100%;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem 0 1.8rem;
  background: #050608;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  text-align: right;
}

/* Responsive */

@media (max-width: 880px) {
  .hero-inner,
  .about-layout,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-logo {
    order: -1;
    margin-bottom: 1.25rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.86rem;
  }

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

@media (max-width: 600px) {
  .nav {
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---- COMPACT CONTACT PAGE – laptops ---- */

.section.contact-page {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.contact-page h1 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.contact-page .section-lead {
  font-size: 0.95rem;
  max-width: 30rem;
  margin-bottom: 0.6rem;
}

.contact-page .contact-layout {
  gap: 1.2rem;
}

.contact-page .contact-card {
  padding: 1.1rem 1.2rem 1.1rem;
}

.contact-page .field {
  margin-bottom: 0.55rem;
}

.contact-page .field label {
  font-size: 0.83rem;
}

.contact-page .field input,
.contact-page .field select,
.contact-page .field textarea {
  padding: 0.45rem 0.55rem;
  font-size: 0.9rem;
}

.contact-page .field textarea {
  min-height: 90px;
}

.contact-page .btn.full {
  padding: 0.7rem;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

/* Tighter layout for screen heights under 900px */
@media (max-height: 900px) {
  .section.contact-page {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .contact-page h1 {
    font-size: 1.45rem;
  }

  .contact-page .contact-card {
    padding: 1rem;
  }

  .contact-page .field textarea {
    min-height: 80px;
  }
}

/* EXTREME compact mode if still needed */
@media (max-height: 830px) {
  .contact-page .field {
    margin-bottom: 0.45rem;
  }
  .contact-page .contact-card {
    padding: 0.8rem 1rem;
  }
  .contact-page h1 {
    font-size: 1.35rem;
  }
}

/* --- Accent links: Quick facts CTA + contact e-mail --- */

.about-highlight a,
.contact-page a[href^="mailto:"] {
  position: relative;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  transition: color 0.18s ease-out;
}

.about-highlight a:hover,
.contact-page a[href^="mailto:"]:hover {
  color: var(--accent);
}

.about-highlight a::after,
.contact-page a[href^="mailto:"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.18s ease-out;
}

.about-highlight a:hover::after,
.contact-page a[href^="mailto:"]:hover::after {
  width: 100%;
}

.about-highlight a:active,
.contact-page a[href^="mailto:"]:active {
  color: #ffffff;
}

.about-highlight a:visited,
.contact-page a[href^="mailto:"]:visited {
  color: var(--accent);
}






/* Rejtett elemek (Netlify honeypot stb.) */
.hidden {
  display: none;
}

/* --- DBTA Premium Modal --- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.hidden {
  display: none;
}

.modal-card {
  background: linear-gradient(145deg, #141720, #1b1f2b);
  padding: 2.2rem 2.6rem 2.1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(210, 163, 71, 0.45);
  box-shadow: 0 22px 55px rgba(0,0,0,0.7);
  text-align: center;
  max-width: 420px;
  width: 90%;
  transform: scale(0.85);
  opacity: 1;
  animation: modalPopIn 0.35s ease-out forwards;
}

/* Header text */
.modal-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
  color: var(--accent);
}

.modal-card p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.55;
}

/* Gold glowing icon */
.modal-icon {
  margin-bottom: 1.2rem;
}

.icon-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(210, 163, 71, 0.1);
  border: 2px solid rgba(210, 163, 71, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 18px rgba(210,163,71,0.4),
    inset 0 0 12px rgba(210,163,71,0.15);
  animation: goldPulse 2.4s ease-in-out infinite;
}

.icon-circle svg {
  width: 42px;
  height: 42px;
  stroke: rgba(210,163,71,0.95);
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Placeholder állapot (amikor az első, disabled option van kiválasztva) */
select:invalid {
  color: #888; /* halvány szürke */
}

/* Normál állapot */
select option {
  color: #fff; /* normál fehér (vagy amit használsz) */
}

/* Animations */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modalPopIn {
  0%   { transform: scale(0.85); opacity: 0; }
  60%  { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(210,163,71,0.4); }
  50%      { box-shadow: 0 0 28px rgba(210,163,71,0.75); }
}



/* ----- Language switcher ----- */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1.5rem;
  padding: 2px;
  background: rgba(255, 255, 255, 0.03); 
  border-radius: 999px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: #f5f5f5;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.7;
  letter-spacing: 0.03em;
  transition: 0.2s ease;
}

/* Hover – finom kiemelés */
.lang-btn:hover {
  opacity: 1;
}

/* Active – vékony arany körvonal, nincs háttér */
.lang-btn.active {
  opacity: 1;
  border: 1px solid #f4c15a;  /* arany outline */
  color: #f4c15a;             /* finom arany betűszín */
}

/* Mobil fix */
@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
  }

  .lang-switch {
    margin-left: auto;
    margin-top: 0.5rem;
  }
}


/* ---------------------------------------------- */
/* ---------------------------------------------- */
/* ---------------------------------------------- */
/* ---------------------------------------------- */
/* ---------------------------------------------- */

/* --- Mobil finomhangolás (hero + sectionök) --- */
@media (max-width: 600px) {

  body {
    line-height: 1.5;
  }

  .hero {
    padding: 2.2rem 0 1.6rem;
  }

  .hero-inner {
    gap: 1.6rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
  }

  .hero-sub {
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.95rem;
  }

  .hero-note {
    font-size: 0.8rem;
  }

  .hero-logo img {
    max-width: 220px;
  }

  .section {
    padding: 2.2rem 0;
  }

  .section h2 {
    font-size: 1.45rem;
    text-align: center;
  }

  .section-lead {
    text-align: center;
    margin: 0 auto;
    font-size: 0.95rem;
  }

  #services .cards,
  .section-why .cards.three {
    margin-top: 1.3rem;
  }

  .card {
    padding: 1.1rem 1.2rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-layout > div {
    order: 1;
  }

  .about-highlight {
    order: 2;
    margin-top: 1.1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: left;
  }

  .footer-copy {
    text-align: left;
    font-size: 0.8rem;
  }
}





/* --- ---------------------------------------------- --- */
/* --- ---------------------------------------------- --- */
/* --- ---------------------------------------------- --- */
/* --- ---------------------------------------------- --- */
/* --- Fullscreen logo intro – NAGY LOGÓ VERZIÓ --- */

.splash-intro {
  position: fixed;
  inset: 0;
  background: #050608;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: splashFadeOut 3.2s ease-out forwards;
}

.splash-inner {
  transform: scale(0.92);
  opacity: 0;
  animation: splashPopIn 0.9s ease-out forwards;
}

.splash-logo-wrap {
  position: relative;
  width: 220px;     /* <<< NAGY LOGÓ */
  height: 220px;    /* <<< NAGY LOGÓ */
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244,193,90,0.30) 0%,
    rgba(244,193,90,0.18) 30%,
    rgba(244,193,90,0.08) 60%,
    transparent 100%
  );
  filter: blur(12px);      /* erősebb glow */
  animation: splashAura 2s ease-out forwards;
}

.splash-logo {
  width: 180px;     /* <<< NAGY LOGÓ */
  height: 180px;    /* <<< NAGY LOGÓ */
  border-radius: 999px;
  border: 2px solid rgba(210,163,71,0.85);
  background: rgba(15,17,22,0.95);
  box-shadow:
    0 0 0 2px rgba(0,0,0,0.85),
    0 0 40px rgba(210,163,71,0.45),
    0 0 90px rgba(210,163,71,0.20);
}

/* Fade + animációk ugyanazok */
@keyframes splashFadeOut {
  0%   { opacity: 1; }
  70%  { opacity: 1; }
  100% { opacity: 0; pointer-events: none; visibility: hidden; }
}

@keyframes splashPopIn {
  0%   { transform: scale(0.85); opacity: 0; }
  60%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes splashAura {
  0%   { opacity: 0; transform: scale(0.7); }
  45%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0.2; transform: scale(1.25); }
}
