/*  */
:root{
  --btnBg: #192e5f;
  --btnText: #fbf2d8;
  /* THEME TOKENS (default: DARK) */
  --accent: #d4b06a;
  --accent-rgb: 212,176,106;
  --brand: #0b2a66;
  --brand-rgb: 11,42,102;

  --bg: #06162f;
  --bgGlow1: rgba(var(--brand-rgb),0.42);
  --bgGlow2: rgba(var(--accent-rgb),0.18);

  --surface: rgba(255,255,255,0.07);
  --surface2: rgba(255,255,255,0.02);
  --surfaceSolid: rgba(0,0,0,0.26);

  --text: rgba(255,255,255,0.96);
  --muted: rgba(255,255,255,0.72);
  --stroke: rgba(255,255,255,0.12);

  --shadow: rgba(0,0,0,0.45);
  --shadowSoft: rgba(0,0,0,0.35);
}

/* ===============================
   EFFECT KILL SWITCH
   The user requested ZERO visual state changes on press/hover/focus.
   This overrides any later theme-specific hover rules as well.
   =============================== */

.link-btn:hover,
.link-btn:active,
.link-btn:focus,
.link-btn:focus-visible,
.action-btn:hover,
.action-btn:active,
.action-btn:focus,
.action-btn:focus-visible,
.biz-mail:hover{
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--p, var(--btnBg)) 26%, var(--surfaceSolid)),
    color-mix(in srgb, var(--p, var(--btnBg)) 14%, var(--surfaceSolid))
  ) !important;
  border-color: rgba(251,242,216,0.28) !important;
  transform: none !important;
  filter: none !important;
  box-shadow:
    0 16px 44px var(--shadow),
    0 8px 0 color-mix(in srgb, rgba(0,0,0,0.55) 65%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -10px 18px rgba(0,0,0,0.28) !important;
  outline: none !important;
}

.link-btn::before{ content: none !important; }

html[data-theme="light"]{
  --bg: #eef1ff;
  --bgGlow1: rgba(var(--accent-rgb),0.22);
  --bgGlow2: rgba(var(--accent-rgb),0.10);

  --surface: rgba(255,255,255,0.88);
  --surface2: rgba(255,255,255,0.70);
  --surfaceSolid: rgba(255,255,255,0.72);

  --text: rgba(15,16,20,0.92);
  --muted: rgba(15,16,20,0.62);
  --stroke: rgba(15,16,20,0.12);

  --shadow: rgba(15,16,20,0.18);
  --shadowSoft: rgba(15,16,20,0.12);
}

*{ box-sizing:border-box; }

/* iOS Safari: remove tap highlight / stuck focus visuals */
html, body{ -webkit-tap-highlight-color: transparent; }
a, button{ -webkit-tap-highlight-color: transparent; }

/* When returning from external apps on iOS, Safari can visually keep a pressed state.
   We force a one-frame "reset" by toggling html.vis-reset from JS. */
html.vis-reset .link-btn,
html.vis-reset .action-btn{
  transition: none !important;
  transform: none !important;
  filter: none !important;
}
html.vis-reset .link-btn::before{
  transition: none !important;
  transform: translateX(-60%) rotate(8deg) !important;
}



body{
  margin:0;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
  position: relative;
}

/* Background image + rich overlays */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background: url("./assets/background.png") center/cover no-repeat;
  opacity: 0.62;
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.02);
  z-index: -2;
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 700px at 50% 10%, rgba(var(--brand-rgb),0.55), rgba(0,0,0,0)),
    radial-gradient(700px 540px at 12% 60%, rgba(var(--accent-rgb),0.22), rgba(0,0,0,0)),
    radial-gradient(700px 540px at 88% 60%, rgba(var(--accent-rgb),0.20), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.70)),
    repeating-linear-gradient(45deg, rgba(251,242,216,0.05) 0 1px, rgba(0,0,0,0) 1px 12px);
  z-index: -1;
  pointer-events: none;
}




.page{
  box-sizing: border-box;

  min-height: 100vh;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  padding: 32px 16px 32px;
  position:relative;
}

/* Top right actions (Theme + Share) */
.top-actions{
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 3;
}

.action-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 85%, transparent), color-mix(in srgb, var(--surface2) 85%, transparent));
  color: var(--text);
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 16px 45px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -10px 18px rgba(0,0,0,0.18);
  /* Effect-free: no hover/press animation (prevents iOS stuck states) */
  transition: none;
}
/* no hover/active effects */
.action-btn:hover,
.action-btn:active{
  transform: none;
}

.action-ico{
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}
.action-ico svg{ width: 22px; height: 22px; fill: currentColor; opacity: 0.95; }

/* Theme icon swap */
html[data-theme="light"] .ico-sun{ display: none; }
html:not([data-theme="light"]) .ico-moon{ display: none; }

.action-text{
  font-size: 14px;
  letter-spacing: 0.2px;
}

.card{
  width: min(540px, 100%);
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, var(--surface), var(--surface2));
  border: 1px solid var(--stroke);
  border-radius: 26px;
  padding: 26px 18px 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 70px var(--shadow);
  position:relative;
  margin-bottom: 32px;
}

/* subtle animated glow ring */
.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 28px;
  background: radial-gradient(600px 240px at 50% 0%, rgba(var(--accent-rgb),0.35), rgba(0,0,0,0));
  filter: blur(10px);
  opacity: 0.9;
  pointer-events:none;
  animation: floatGlow 4.6s ease-in-out infinite;
}
@keyframes floatGlow{
  0%,100%{ transform: translateY(0); opacity:0.85; }
  50%{ transform: translateY(6px); opacity:1; }
}

.logo-wrap{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 14px;
  padding: 18px 0 10px;
  text-align: center;
  position:relative;
  z-index:1;
}

.logo{
  width: clamp(150px, 22vw, 190px);
  height: clamp(150px, 22vw, 190px);
  display:block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.14);
  animation: logoBreath 4.2s ease-in-out infinite;
}
@keyframes logoBreath{
  0%,100%{ transform: translateY(0); box-shadow: 0 0 0 8px rgba(var(--accent-rgb),0.12), 0 14px 40px rgba(0,0,0,0.45); }
  50%{ transform: translateY(-3px); box-shadow: 0 0 0 10px rgba(var(--accent-rgb),0.18), 0 18px 52px rgba(0,0,0,0.50); }
}

.title{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-align:center;
  line-height: 1.25;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,0.26);
  border: 1px solid rgba(255,255,255,0.10);
}

.verified{
  display:inline-grid;
  place-items:center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb),0.22);
  border: 1px solid rgba(var(--accent-rgb),0.55);
  box-shadow: 0 0 18px rgba(var(--accent-rgb),0.45);
  color: #fff;
}
.verified svg{ fill: var(--accent); }
.verified svg path:last-child{ fill:#fff; }

.buttons{
  margin-top: 18px;
  display:grid;
  gap: 12px;
  position:relative;
  z-index:1;
}

/* Section break inside button list */
.section-divider{
  height: 1px;
  width: 100%;
  margin: 10px 0 8px;
  background: linear-gradient(90deg, rgba(255,255,255,0), color-mix(in srgb, var(--text) 18%, transparent), rgba(255,255,255,0));
}

.section-title{
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.6px;
  color: var(--muted);
  padding: 10px 0;
  margin: 0 0 8px;
  line-height: 1;
  text-transform: uppercase;
}

.apply-section{
  margin-top: 14px;
}

.apply-buttons{
  margin-top: 10px;
}

/* Buttons: icon left, text centered */
.link-btn{
  --p: var(--btnBg);
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
  cursor: pointer;
  text-align: left;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  display:grid;
  grid-template-columns: 54px 1fr 54px; /* sağda dengeleme boşluğu */
  align-items:center;
  height: 62px;
  padding: 0 14px;
  border-radius: 14px;
  text-decoration:none;

  /* 3D button base */
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--p, var(--btnBg)) 26%, var(--surfaceSolid)),
    color-mix(in srgb, var(--p, var(--btnBg)) 14%, var(--surfaceSolid))
  );
  border: 1px solid rgba(251,242,216,0.28);
  color: var(--btnText);

  box-shadow:
    0 16px 44px var(--shadow),
    0 8px 0 color-mix(in srgb, rgba(0,0,0,0.55) 65%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -10px 18px rgba(0,0,0,0.28);

  transform: translateZ(0);
  /* Effect-free: remove hover/press animation completely */
  transition: none;
  position:relative;
  overflow:hidden;
}

/* Never show a “focused/selected” state on tap (mobile requirement) */
.link-btn:focus,
.link-btn:focus-visible{
  outline: none;
  /* keep base look */
  transform: none;
  filter: none;
  border-color: rgba(251,242,216,0.28);
  box-shadow:
    0 16px 44px var(--shadow),
    0 8px 0 color-mix(in srgb, rgba(0,0,0,0.55) 65%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -10px 18px rgba(0,0,0,0.28);
}


/* No animated sheen and no hover/active visual changes */
.link-btn::before{ content:none; }
.link-btn:hover,
.link-btn:active{
  transform: none;
  filter: none;
  border-color: rgba(251,242,216,0.28);
}

/* No :visited state (we use <button>) */

/* Touch devices: disable hover/active transforms to prevent “stuck” visual states on iOS back navigation */
/* Touch devices: already effect-free; keep this block for safety */
@media (hover: none), (pointer: coarse){
  .link-btn:hover,
  .link-btn:active,
  .action-btn:hover,
  .action-btn:active{ transform: none; }
}

/* Extra safety: when the tab becomes visible again (returning from an app),
   we briefly add a class to force a full "base" repaint. */
html.vis-reset .link-btn{
  transition: none !important;
  transform: none !important;
  filter: none !important;
}

.btn-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(251,242,216,0.16), rgba(251,242,216,0.08));
  border: 1px solid rgba(251,242,216,0.22);
  box-shadow:
    0 10px 22px var(--shadowSoft),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -8px 14px rgba(0,0,0,0.26);
}

.btn-icon img{
  width: 22px;
  height: 22px;
  /* Tüm ikonlar konum ikonuyla aynı renkte kalsın */
  filter: none;
  opacity: 0.95;
}

/* Tema bağımsız: ikon rengi sabit kalsın */
html[data-theme="light"] .btn-icon img{ filter: none; }

/* Moderatör ikon özel kuralını da kaldırıyoruz (hepsi aynı renk olacak) */
.link-btn.mod .btn-icon img{ filter: none !important; }

.btn-text{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align:center;
  padding: 0 6px;
}

/* right spacer for perfect centering */
.link-btn::after{
  content:"";
  width: 42px;
  height: 42px;
}

.footer{
  margin-top: 16px;
  display:grid;
  place-items:center;
  font-size: 12px;
  color: var(--muted);
  position:relative;
  z-index:1;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(12px);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(251,242,216,0.22);
  color: rgba(255,255,255,0.95);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  opacity: 0;
  pointer-events:none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.45);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 12;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 420px){
  .title{ font-size: 18px; }
  .logo{
  width: clamp(150px, 22vw, 190px);
  height: clamp(150px, 22vw, 190px);
  display:block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.14);
  box-shadow:
    0 0 0 8px rgba(var(--accent-rgb),0.12),
    0 14px 40px rgba(0,0,0,0.45);
  animation: logoBreath 4.2s ease-in-out infinite;
}
  .link-btn{ height: 60px; }
  .card{ padding-top: 68px; }
  .top-actions{ top: 12px; right: 12px; }
  .action-btn{ height: 42px; padding: 0 12px; border-radius: 13px; }
  .action-text{ display: none; }
}



/* Business line under title */
.business{
  margin: 8px 0 2px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mail-ico{
  filter: drop-shadow(0 0 6px rgba(var(--accent-rgb),0.60));
}
.biz-text{
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.biz-mail{
  color: rgba(255,255,255,0.96);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding-bottom: 1px;
}
.biz-mail:hover{
  border-bottom-color: rgba(255,255,255,0.60);
}



/* If old .verified exists, neutralize it */
.verified{ display:none !important; }



/* --- Title pill polish --- */
.title{
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 12px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.18));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28), 0 0 26px rgba(var(--accent-rgb),0.18);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.title-text{
  text-shadow: 0 1px 0 rgba(0,0,0,0.35);
}

/* Verified badge next to title (NO border / NO background) */
.verified-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.verified-badge img{
  width: 20px;
  height: 20px;
  display: block;
  transform: translateY(0px);
  transform: translateX(-7px);
}

/* --- Business line polish --- */
.business{
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.2;
  color: rgba(255,255,255,0.78);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
}
.mail-ico{
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(var(--accent-rgb),0.18);
  border: 1px solid rgba(var(--accent-rgb),0.35);
  box-shadow: 0 0 14px rgba(var(--accent-rgb),0.20);
}
.mail-ico svg{
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.92);
}
.biz-text{ font-weight: 600; color: rgba(255,255,255,0.86); }
.biz-sub{ color: rgba(255,255,255,0.66); font-weight: 500; }
.biz-dot{ color: rgba(255,255,255,0.35); }
.biz-mail{
  font-weight: 800;
  color: rgba(255,255,255,0.96);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb),0.18);
  border: 1px solid rgba(var(--accent-rgb),0.38);
  box-shadow: 0 0 18px rgba(var(--accent-rgb),0.22);
}
.biz-mail:hover{
  background: rgba(var(--accent-rgb),0.24);
  box-shadow: 0 0 26px rgba(var(--accent-rgb),0.32);
}

/* Mobile */
@media (max-width: 420px){
  .title{ font-size: 19px; padding: 10px 14px; }
  .business{ border-radius: 18px; }
}



/* Platform accent glows */
.link-btn.book{
  --p: var(--accent);
}
.link-btn.maps{
  --p: var(--brand);
}

.link-btn.book{
  --p: var(--accent);
}
.link-btn.maps{
  --p: var(--brand);
}

.link-btn.onrashop{
  --p:#02a1ff;

  /* Fallback for browsers that don't support color-mix() */
  background: linear-gradient(180deg, #02a1ff, #0186d6);
  border-color: rgba(2,161,255,0.65);
  box-shadow:
    0 16px 44px rgba(0,0,0,0.55),
    0 8px 0 rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -10px 18px rgba(0,0,0,0.20);

  background: #02a1ff !important;
  box-shadow: 0 0 12px rgba(2,161,255,0.7), 0 0 24px rgba(2,161,255,0.5) !important;
}
.link-btn.onrashop .btn-icon img{
  /* Keep original icon colors */
  filter: none !important;

  background: #02a1ff !important;
  box-shadow: 0 0 12px rgba(2,161,255,0.7), 0 0 24px rgba(2,161,255,0.5) !important;
}

.link-btn.ig{
  --p:#E1306C;
}
.link-btn.yt{
  --p:#FF0033;
}
.link-btn.tt{
  --p:#25F4EE;
}
.link-btn.kick{
  --p:#53FC18;
}
.link-btn.wa{
  --p:#25D366;
}

.link-btn.klan{
  --p:#623298;
}

.link-btn.mod{
  --p:#B54CF3;
}

.link-btn.pubg{
  --p:#FBAB00;
  color:#000000;
}

.link-btn.book,
.link-btn.maps,
.link-btn.ig,
.link-btn.yt,
.link-btn.tt,
.link-btn.kick,
.link-btn.wa,
.link-btn.klan,
.link-btn.mod,
.link-btn.pubg{
  border-color: color-mix(in srgb, var(--p) 55%, var(--accent));
  box-shadow:
    0 0 26px color-mix(in srgb, var(--p) 45%, var(--accent)),
    0 18px 44px rgba(0,0,0,0.35);
}

.link-btn.book:hover,
.link-btn.maps:hover,
.link-btn.ig:hover,
.link-btn.yt:hover,
.link-btn.tt:hover,
.link-btn.kick:hover,
.link-btn.wa:hover,
.link-btn.klan:hover,
.link-btn.mod:hover,
.link-btn.pubg:hover{
  background: color-mix(in srgb, var(--p) 18%, rgba(var(--accent-rgb),0.28));
  box-shadow:
    0 0 38px color-mix(in srgb, var(--p) 65%, var(--accent)),
    0 24px 70px rgba(0,0,0,0.45);
}

.link-btn.ig .btn-icon,
.link-btn.yt .btn-icon,
.link-btn.tt .btn-icon,
.link-btn.kick .btn-icon,
.link-btn.wa .btn-icon,
.link-btn.klan .btn-icon,
.link-btn.mod .btn-icon,
.link-btn.pubg .btn-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(251,242,216,0.16), rgba(251,242,216,0.08));
  border: 1px solid rgba(251,242,216,0.22);
  box-shadow:
    0 10px 22px var(--shadowSoft),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -8px 14px rgba(0,0,0,0.26);
}

/* mail icon container */
.mail-ico{
  background: linear-gradient(180deg, #7B2EFF, #5A1FCC);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 0 18px rgba(var(--accent-rgb),0.55),
    inset 0 0 0 1px rgba(255,255,255,0.15);
}

/* mail icon svg */
.mail-ico svg{
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.45));
}

/* email chip */
.biz-mail{
  background: linear-gradient(180deg, rgba(var(--accent-rgb),0.35), rgba(var(--accent-rgb),0.20));
  border: 1px solid rgba(var(--accent-rgb),0.55);
  box-shadow:
    0 0 24px rgba(var(--accent-rgb),0.55),
    inset 0 0 0 1px rgba(255,255,255,0.10);
}

/* hover refinement */
.biz-mail:hover{
  background: linear-gradient(180deg, rgba(var(--accent-rgb),0.45), rgba(var(--accent-rgb),0.28));
  box-shadow:
    0 0 34px rgba(var(--accent-rgb),0.75);
}



/* ===============================
   CLEAN BUSINESS BAR (PREMIUM)
   =============================== */

.business{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
}

/* Mail icon – neutral */
.mail-ico{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

.mail-ico svg{
  filter: none;
  fill: #fff;
}

/* Email text – hero */
.biz-mail{
  background: none;
  border: none;
  box-shadow: none;
  color: #ffffff;
  font-weight: 800;
}

/* Hover – very subtle */
.biz-mail:hover{
  text-decoration: underline;
  box-shadow: none;
}



/* ===============================
   ALIGNMENT + NO JITTER (FINAL)
   =============================== */

/* Disable any floating animations to prevent up/down movement */
.card{ animation: none !important; transform: none !important; }
.logo{
  width: clamp(150px, 22vw, 190px);
  height: clamp(150px, 22vw, 190px);
  display:block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.14);
  box-shadow:
    0 0 0 8px rgba(var(--accent-rgb),0.12),
    0 14px 40px rgba(0,0,0,0.45);
  animation: logoBreath 4.2s ease-in-out infinite;
}

/* Remove decorative glow ring / circles behind card if present */
.card::before{ content: none !important; }
.card::after{ content: none !important; }

/* Optional: simplify background (remove round blobs) */
body{
  background: #070707 !important;
}

/* Title: strict baseline + no wrap on desktop */
.title{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  white-space: nowrap;
}
.title-text{ white-space: nowrap; }

.verified-badge{
  flex: 0 0 auto;
}

/* Business row: grid keeps everything perfectly aligned */
.business{
  width: 100%;
  max-width: 820px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 6px;
  padding: 14px 18px;
  border-radius: 999px;
}
.mail-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
/* Left text block */
.biz-text, .biz-sub, .biz-dot{
  white-space: nowrap;
}
/* Keep mail right aligned and prevent shifting */
.biz-mail{
  justify-self: end;
  white-space: nowrap;
}

/* On small screens allow wrapping nicely */
@media (max-width: 560px){
  .title{ white-space: normal; flex-wrap: wrap; }
  .title-text{ white-space: normal; }
  .business{
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
  }
  .biz-mail{
    grid-column: 1 / -1;
    justify-self: center;
  }
  .biz-text, .biz-sub, .biz-dot{
    white-space: normal;
  }
}



/* ===== FINAL BUSINESS BAR (STABLE & CLEAN) ===== */
.business{
  max-width: 860px;
  margin: 14px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.mail-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  flex: 0 0 auto;
}
.mail-ico svg{
  width: 16px;
  height: 16px;
  fill: #fff;
}

.biz-text{
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.biz-text .muted{
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.biz-mail{
  white-space: nowrap;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}
.biz-mail:hover{
  text-decoration: underline;
}

@media (max-width: 560px){
  .business{
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .biz-text{
    white-space: normal;
    width: 100%;
  }
}



/* ===== BACKGROUND IMAGE ===== */
body{
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url('./assets/background.png') center / cover no-repeat fixed !important;
}



/* ===== ICON COLOR SHIFT FIX (layering) ===== */
/* Ensure sweep/inner layers stay BEHIND icon + text */
.link-btn{ position: relative; }
.link-btn::before,
.link-btn::after{
  z-index: 0;
}
.link-btn > *{
  position: relative;
  z-index: 2;
}
/* Icon box above everything and no color bleed */
.btn-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(251,242,216,0.16), rgba(251,242,216,0.08));
  border: 1px solid rgba(251,242,216,0.22);
  box-shadow:
    0 10px 22px var(--shadowSoft),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -8px 14px rgba(0,0,0,0.26);
}

/* TikTok icon tile can be a bit darker */
.link-btn.tt .btn-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(251,242,216,0.16), rgba(251,242,216,0.08));
  border: 1px solid rgba(251,242,216,0.22);
  box-shadow:
    0 10px 22px var(--shadowSoft),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -8px 14px rgba(0,0,0,0.26);
}

.biz-text{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.biz-button{
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7B2EFF, #5A1FCC);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 18px rgba(var(--accent-rgb),0.45);
}

.biz-button:hover{
  box-shadow: 0 0 26px rgba(var(--accent-rgb),0.7);
}

.mail-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.mail-ico svg{
  width: 16px;
  height: 16px;
  fill: #fff;
}



/* ===== BUSINESS BAR FINAL OVERRIDE (NO BREAKS) ===== */
.business{
  width: 100%;
  max-width: 820px;
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
  overflow: hidden;
}

.biz-text{
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}

.biz-button{
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7B2EFF, #5A1FCC);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 18px rgba(var(--accent-rgb),0.45);
  white-space: nowrap;
}

.biz-button:hover{
  box-shadow: 0 0 26px rgba(var(--accent-rgb),0.7);
}

@media (max-width: 560px){
  .business{ flex-wrap: wrap; }
}



/* ===============================
   CONTACT MODULE (PRO)
   =============================== */
.business{
  width: 100%;
  max-width: 860px;
  margin: 18px auto 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.70),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mail-ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
  flex: 0 0 auto;
}
.mail-ico svg{ width: 18px; height: 18px; fill:#fff; }

.biz-block{
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
}
.biz-title{
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.2px;
}
.biz-email{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, rgba(123,46,255,0.38), rgba(90,31,204,0.22));
  border: 1px solid rgba(var(--accent-rgb),0.55);
  box-shadow: 0 0 22px rgba(var(--accent-rgb),0.35);
  white-space: nowrap;
}
.biz-email:hover{
  box-shadow: 0 0 32px rgba(var(--accent-rgb),0.55);
}

.biz-copybtn{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 120ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.biz-copybtn:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}
.biz-copybtn:active{
  transform: translateY(1px);
}

/* Mobile */
@media (max-width: 560px){
  .business{ flex-wrap: wrap; }
  .biz-email{ width: 100%; justify-content: center; }
  .biz-copybtn{ width: 100%; }
}



/* ===== ROBOTO FORCE ===== */
html, body, button, input, textarea{
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif !important;
}


/* ===============================
   CONTACT MODULE – TYPOGRAPHIC PRO
   =============================== */
.business{
  width: 100%;
  max-width: 860px;
  margin: 18px auto 0;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.70),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mail-ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}
.mail-ico svg{ width: 18px; height: 18px; fill:#fff; }

.biz-block{
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.biz-title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.biz-email{
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}
.biz-email:hover{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.biz-copybtn{
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 120ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.biz-copybtn:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}
.biz-copybtn:active{ transform: translateY(1px); }

/* Mobile */
@media (max-width: 560px){
  .business{
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
  }
  .biz-copybtn{
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 14px;
  }
  .biz-email{
    white-space: normal;
  }
}



/* ===============================
   CONTACT CARD (CLEAN + STABLE)
   =============================== */
.business{ display:none !important; } /* kill legacy if any */

.contact-card{
  width: 100%;
  max-width: 860px;
  margin: 18px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  border-radius: 18px;
  background: rgba(0,0,0,0.62);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.72),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-ico{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 22px rgba(0,0,0,0.38);
}
.contact-ico svg{ width: 20px; height: 20px; fill: #fff; }

.contact-kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.contact-title{
  margin-top: 2px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.contact-row{
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.contact-email{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, rgba(123,46,255,0.34), rgba(90,31,204,0.18));
  border: 1px solid rgba(var(--accent-rgb),0.55);
  box-shadow: 0 0 24px rgba(var(--accent-rgb),0.28);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-email:hover{
  box-shadow: 0 0 34px rgba(var(--accent-rgb),0.48);
}

.contact-btn{
  min-width: 118px; /* prevents layout shift when text changes */
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  cursor: pointer;
  transition: transform 120ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.contact-btn:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}
.contact-btn:active{ transform: translateY(1px); }

.contact-btn.is-ok{
  background: rgba(37,211,102,0.16);
  border-color: rgba(37,211,102,0.45);
}

.contact-hint{
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
}

/* Mobile */
@media (max-width: 560px){
  .contact-card{
    grid-template-columns: 1fr;
  }
  .contact-ico{
    width: 46px;
    height: 46px;
  }
  .contact-row{
    grid-template-columns: 1fr;
  }
  .contact-btn{
    width: 100%;
  }
}

/* FINAL CONTACT ROW ALIGNMENT */
.contact-row{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px;
}

/* Mobile text alignment + stacking (must come AFTER flex override above) */
@media (max-width: 560px){
  .contact-ico{ margin: 0 auto; }
  .contact-body{ text-align: center; }
  .contact-row{
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px;
  }
  .contact-email{
    width: 100%;
    justify-content: center;
  }
  .contact-btn{ width: 100%; }
  .contact-hint{ text-align: center; }
}

/* KILL STRAY WHITE DASH */
.contact-card::before,
.contact-card::after,
.business::before,
.business::after{
  content:none !important;
  display:none !important;
}



/* ===== REMOVE STRAY WHITE DASH (focus/tap/pseudo) ===== */
*{ -webkit-tap-highlight-color: transparent; }
*:focus{ outline: none !important; }
button:focus, a:focus{ outline: none !important; }

/* Kill any leftover pseudo separators inside the card area */
.card *::before,
.card *::after,
.contact-card *::before,
.contact-card *::after{
  content: none !important;
  display: none !important;
}



/* ===== TITLE -> CONTACT SPACING TIGHTEN ===== */
.title{
  margin-bottom: 14px !important; /* was larger */
}
.contact-card{
  margin-top: 8px !important; /* pull up contact card */
}

/* ===== FORCE TITLE-CONTACT GAP ALIGN ===== */
.header{
  margin-bottom: 0 !important;
}
.title{
  margin-bottom: 6px !important;
}
.contact-card{
  margin-top: 6px !important;
}

/* ===== MICRO TIGHTER GAP ===== */
.title{
  margin-bottom: 3px !important;
}
.contact-card{
  margin-top: 3px !important;
}

/* ===== MICRO-MICRO GAP (FINAL) ===== */
.title{
  margin-bottom: 2px !important;
}
.contact-card{
  margin-top: 2px !important;
}



/* Custom buttons */
.link-btn.klan,
.link-btn.mod{
  background: color-mix(in srgb, var(--p) 26%, rgba(var(--accent-rgb),0.18));
}

.link-btn.pubg{
  background: #FBAB00;
  border-color: rgba(0,0,0,0.22);
  box-shadow:
    0 0 26px rgba(251,171,0,0.45),
    0 18px 44px rgba(0,0,0,0.35);
}

.link-btn.pubg:hover{
  background: color-mix(in srgb, #FBAB00 88%, #000);
  box-shadow:
    0 0 38px rgba(251,171,0,0.60),
    0 24px 70px rgba(0,0,0,0.45);
}

/* PUBG icon: black + bigger */
.link-btn.pubg .btn-icon img{
  width: 32px;
  height: 32px;
  filter: none;
  opacity: 1;
}


/* ===== MOBILE CONTACT FIX (email/button stack) ===== */
@media (max-width: 560px){
  .contact-card{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 16px !important;
  }
  .contact-ico{
    margin: 0 auto !important;
  }
  .contact-row{
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  .contact-email{
    width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    word-break: break-word !important;
  }
  .contact-btn{
    width: 100% !important;
    min-width: 0 !important;
  }
}


/* Fix: only PUBGM button text should be black */
.link-btn.pubg .btn-text{
  color:#000 !important;
  text-shadow:none !important;
}

/* ===== FIX: Moderator Başvuru ikonunu beyaz göster (ikon dosyası zaten beyaz) ===== */
.link-btn.mod .btn-icon img{
  filter: none !important;
}


.onrashop, .onrashop * {
  max-width: 100%;
  box-sizing: border-box;
}

/* FORCE REMOVE RIGHT SCROLL */



/* IMPORTANT: Do NOT cap children to 100vh.
   This caused broken scrolling and jitter at the bottom on mobile. */
body > * { max-height: none; }



/* --- BEST SCROLL FIX (scroll works, no right gap, scrollbar hidden) --- */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
  /* overflow-y set on body for iOS reliability */
}

/* Smooth native scrolling on iOS & prevent "tremble" at edges */
body{
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

/* Visually hidden but accessible (SEO/support text) */
.sr-only{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* iOS Safari can jitter with fixed layers + transforms while scrolling */
@media (max-width: 768px){
  body::before{ transform: none; }
}

/* Ensure main wrapper grows with content */
.page {
  min-height: 100vh;
  height: auto;
  overflow: visible;
  box-sizing: border-box;
}

/* Prevent accidental horizontal overflow from children */
*, *::before, *::after { box-sizing: border-box; }
img, svg, video, canvas { max-width: 100%; height: auto; }

/* Hide scrollbar BUT keep scrolling */
body { scrollbar-width: none; -ms-overflow-style: none; }
body::-webkit-scrollbar { width: 0; height: 0; }

/* Header polish */
.title{ 
  max-width: min(460px, 92%);
  justify-content: center;
}
.title-text{ 
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-align:center;
}


/* (Removed stray closing brace that was breaking the CSS cascade) */

.contact-ico{
  align-self: center;
  justify-self: center;
}

.contact-body{
  min-width: 0;
}

.contact-row{
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
}

.contact-email{
  width: 100%;
  min-width: 0;
}

/* Mobile: stack email + button nicely */
@media (max-width: 520px){
  .contact-card{
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }
  .contact-row{
    grid-template-columns: 1fr;
  }
  .contact-btn{
    width: 100%;
    min-width: 0;
    border-radius: 14px;
  }
}

/* --- PAGE BOTTOM BREATHING ROOM --- */

/* subtle fade at bottom so it doesn't "cut" */
.page::after{
  content:"";
  display:block;
  height: 26px;
}

/* Mobile: stack perfectly, no yamuk */
@media (max-width: 520px){
  .contact-card{
    grid-template-columns: 52px minmax(0, 1fr) !important;
    padding: 16px !important;
  }
  .contact-title{
    font-size: 17px;
  }
  .contact-row{
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .contact-email,
  .contact-btn{
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Page bottom spacing so it doesn't "cut" */

/* Mobile polish */
@media (max-width:560px){
  .contact-title{ font-size:18px; }
  .contact-row{
    flex-direction:column;
    gap:10px;
  }
  .contact-email,
  .contact-btn{
    width:100%;
  }
}

/* Bottom breathing room */

/* ===== CONTACT ULTRA (HIGH-END / CREATOR STYLE) ===== */

.contact-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  padding:26px 22px 24px;
  text-align:center;
}

.contact-ico{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.contact-kicker{
  font-size:11px;
  letter-spacing:.3em;
  text-transform:uppercase;
  opacity:.55;
  margin-top:4px;
}

.contact-title{
  font-size:22px;
  font-weight:900;
  line-height:1.1;
  margin-bottom:4px;
}

.contact-row{
  display:flex;
  gap:12px;
  width:100%;
  max-width:440px;
  margin-top:6px;
}

.contact-email{
  flex:1;
  height:46px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14.5px;
  background:linear-gradient(135deg, #6b2cff, #8a3cff);
  box-shadow:0 6px 18px rgba(120,60,255,.35);
}

.contact-btn{
  height:46px;
  padding:0 18px;
  border-radius:16px;
  font-weight:800;
  background:rgba(255,255,255,.08);
}

.contact-hint{
  font-size:12.5px;
  opacity:.6;
  margin-top:6px;
}

/* Mobile refinement */
@media (max-width:560px){
  .contact-title{ font-size:19px; }
  .contact-row{
    flex-direction:column;
    gap:10px;
  }
  .contact-email,
  .contact-btn{
    width:100%;
  }
}

/* Bottom spacing */


/* Force salon button theme */
.buttons .link-btn{
  --p: var(--btnBg);
  color: var(--btnText) !important;
}
.buttons .link-btn .btn-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(251,242,216,0.16), rgba(251,242,216,0.08));
  border: 1px solid rgba(251,242,216,0.22);
  box-shadow:
    0 10px 22px var(--shadowSoft),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -8px 14px rgba(0,0,0,0.26);
}
.buttons .link-btn .btn-icon svg{ color: var(--btnText); }
.buttons .link-btn .btn-text{ color: var(--btnText); }


/* FORCE_SALON_BUTTONS */
.buttons .link-btn{
  --p: var(--btnBg);
  color: var(--btnText) !important;
}
.buttons .link-btn .btn-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(251,242,216,0.16), rgba(251,242,216,0.08));
  border: 1px solid rgba(251,242,216,0.22);
  box-shadow:
    0 10px 22px var(--shadowSoft),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -8px 14px rgba(0,0,0,0.26);
}
.buttons .link-btn .btn-icon img{
  filter: invert(1);
  opacity: 0.95;
}


/* Salon theme override */
.buttons .link-btn{
  --p: var(--btnBg);
  color: var(--btnText) !important;
}
.buttons .link-btn .btn-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(251,242,216,0.16), rgba(251,242,216,0.08));
  border: 1px solid rgba(251,242,216,0.22);
  box-shadow:
    0 10px 22px var(--shadowSoft),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -8px 14px rgba(0,0,0,0.26);
}


/* Map embed */
.map-wrap{
  margin-top: 18px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(251,242,216,0.22);
  background: rgba(25,46,95,0.22);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}
.map-wrap iframe{
  display:block;
  width: 100%;
  height: 320px;
  /* Desktop: allow interacting with the map */
  pointer-events: auto;
}
@media (max-width: 520px){
  .map-wrap iframe{ height: 280px; }
}

/* Mobile scroll fix: embedded iframes (Google Maps) capture touch and block page scrolling.
   On mobile we disable pointer events so users can scroll normally.
   The "Konum" button already opens Maps for interaction. */
@media (max-width: 768px){
  .map-wrap iframe{ pointer-events: none; }
}

/* --- ICON COLOR FIX (WhatsApp / Instagram / TikTok / YouTube) ---
   These icons are external SVGs loaded via <img>, so SVG `currentColor` doesn't apply.
   Recolor them with a filter so they match the Konum icon / --btnText (#fbf2d8).
*/
.buttons .link-btn .btn-icon img{
  /* Convert the SVG to a single-color silhouette, then tint to --btnText */
  filter: brightness(0) saturate(100%)
          invert(95%) sepia(14%) saturate(520%) hue-rotate(352deg)
          brightness(104%) contrast(95%) !important;
  opacity: 0.95;
}

/* ===============================
   FIX: iOS/Android "sticky hover" + visited color + no layout jitter
   =============================== */

/* Ensure returning from a link doesn't leave a different "visited" color */
.link-btn:link,
.link-btn:visited{
  color: var(--btnText);
}

/* Remove tap highlight & keep touch interactions stable */
.link-btn,
.action-btn{
  -webkit-tap-highlight-color: transparent;
}

/* Accessible focus ring without moving the button */
.link-btn:focus,
.action-btn:focus{ outline: none; }
.link-btn:focus-visible,
.action-btn:focus-visible{
  outline: 2px solid rgba(var(--accent-rgb), 0.9);
  outline-offset: 3px;
}

/* On touch devices, disable hover transforms that can get "stuck" after back navigation */
@media (hover: none), (pointer: coarse){
  .link-btn:hover{
    transform: none;
    filter: none;
  }
  .link-btn:hover::before{
    /* keep sheen in its default position */
    transform: translateX(-60%) rotate(8deg);
  }

  .action-btn:hover{ transform: none; }
}

/* Make the embedded map responsive */
.map-wrap{
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.25);
}
.map-wrap iframe{
  width: 100%;
  height: min(52vh, 380px);
  display: block;
}
@media (max-width: 420px){
  .map-wrap iframe{ height: 320px; }
}

/* ===============================
   FIX: Mobile (sticky hover) + visited color + no jitter
   =============================== */

/* Ensure returning from a link doesn't leave a different "visited" color */
.link-btn:link,
.link-btn:visited{
  color: var(--btnText);
}

/* Remove tap highlight & keep touch interactions stable */
.link-btn,
.action-btn{
  -webkit-tap-highlight-color: transparent;
}

/* Accessible focus ring (doesn't move the button) */
.link-btn:focus{ outline: none; }
.link-btn:focus-visible{
  outline: 2px solid rgba(var(--accent-rgb), 0.9);
  outline-offset: 3px;
}

.action-btn:focus{ outline: none; }
.action-btn:focus-visible{
  outline: 2px solid rgba(var(--accent-rgb), 0.9);
  outline-offset: 3px;
}

/* Only apply hover effects on devices that actually support hover */
@media (hover: hover) and (pointer: fine){
  .link-btn:hover{ transform: translateY(-2px); }
  .action-btn:hover{ transform: translateY(-2px); }
}

/* On touch devices, disable hover transforms that can "stick" after returning back */
@media (hover: none), (pointer: coarse){
  .link-btn:hover,
  .action-btn:hover{
    transform: none !important;
    filter: none !important;
  }
  .link-btn:hover::before{
    transform: translateX(-60%) rotate(8deg) !important;
  }
}

/* ===============================
   FINAL FIX: iOS Safari persistent focus highlight after back navigation
   =============================== */
@media (hover: none), (pointer: coarse){
  .link-btn:focus,
  .link-btn:focus-visible{
    outline: none !important;
  }
}

/* ===============================
   HARD FIX: iOS Safari can keep :active state after back (BFCache)
   We fully neutralize :active visuals on touch devices.
   =============================== */
@media (hover: none), (pointer: coarse){
  .link-btn:active,
  .link-btn:active:hover,
  .link-btn:active:focus,
  .link-btn:active:focus-visible{
    /* exact same as base button (no “pressed” look) */
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--p, var(--btnBg)) 26%, var(--surfaceSolid)),
      color-mix(in srgb, var(--p, var(--btnBg)) 14%, var(--surfaceSolid))
    ) !important;
    border-color: rgba(251,242,216,0.28) !important;
    filter: none !important;
    transform: none !important;
    box-shadow:
      0 16px 44px var(--shadow),
      0 8px 0 color-mix(in srgb, rgba(0,0,0,0.55) 65%, transparent),
      inset 0 1px 0 rgba(255,255,255,0.22),
      inset 0 -10px 18px rgba(0,0,0,0.28) !important;
  }

  /* also prevent text selection/callout that can “stick” visuals */
  .link-btn{
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
}

/* ===============================
   MAP + MOBILE SCROLL (0'dan temiz ayar)
   - Mobilde Google Maps iframe sayfa scroll'unu yakalayabiliyor.
   - İframe'i kapatmak yerine "dokun-aktif et" katmanı kullanıyoruz.
   - Normal kullanımda sayfa aşağı/yukarı sorunsuz kayar.
   =============================== */

.map-wrap{ position: relative; }

/* Force map to be interactive when allowed (override older rules) */
.map-wrap iframe{ pointer-events: auto !important; }

/* Overlay: default (mobile) blocks the iframe so scroll gestures go to the page */
.map-overlay{
  position:absolute;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.40), rgba(0,0,0,0.22));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 2;
}
.map-overlay-inner{
  width: 100%;
  max-width: 360px;
  text-align:center;
  border-radius: 16px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(251,242,216,0.22);
  background: rgba(6, 22, 47, 0.72);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.map-overlay-title{
  display:block;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}
.map-overlay-sub{
  display:block;
  opacity: 0.9;
  font-size: 13px;
  margin-bottom: 10px;
}
.map-overlay-btn{
  border: 0;
  border-radius: 12px;
  padding: 11px 14px;
  width: 100%;
  font-weight: 700;
  cursor: pointer;
  color: var(--btnText);
  background: linear-gradient(180deg, rgba(251,242,216,0.22), rgba(251,242,216,0.10));
  box-shadow: 0 10px 22px rgba(0,0,0,0.28);
  -webkit-tap-highlight-color: transparent;
}

/* Close button appears only while map is active */
.map-close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(251,242,216,0.22);
  background: rgba(6, 22, 47, 0.62);
  color: var(--btnText);
  font-size: 22px;
  line-height: 38px;
  display:none;
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
}

/* Mobile behavior */
@media (hover: none), (pointer: coarse){
  .map-overlay{ display:flex; }
  .map-wrap.map-active .map-overlay{ display:none; }
  .map-wrap.map-active .map-close{ display:block; }
}
