/*  */
:root{
  /* Black + Gold theme */
  --btnBg: #d4af37;
  --btnText: #0b0b0c;
  /* THEME TOKENS (default: DARK) */
  --accent: #d4af37;
  --accent-rgb: 212,175,55;
  --brand: #0f0f10;
  --brand-rgb: 15,15,16;

  --bg: #070708;
  --bgGlow1: rgba(var(--accent-rgb),0.18);
  --bgGlow2: rgba(var(--accent-rgb),0.10);

  --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);
}

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; }



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(--accent-rgb),0.20), 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);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
}
.action-btn:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--stroke));
  box-shadow:
    0 18px 55px var(--shadow),
    0 0 26px color-mix(in srgb, var(--accent) 45%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -10px 18px rgba(0,0,0,0.16);
}
.action-btn:active{
  transform: translateY(1px);
  box-shadow:
    0 12px 38px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -6px 12px rgba(0,0,0,0.18);
}

.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);
  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);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease, filter 140ms ease;
  position:relative;
  overflow:hidden;
}

/* animated sheen */
.link-btn::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0) 65%);
  transform: translateX(-60%) rotate(8deg);
  transition: transform 420ms ease;
  pointer-events:none;
}

.link-btn:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--p, var(--btnBg)) 70%, var(--stroke));
  filter: saturate(1.06) brightness(1.02);
  box-shadow:
    0 22px 62px var(--shadow),
    0 10px 0 color-mix(in srgb, rgba(0,0,0,0.58) 65%, transparent),
    0 0 38px color-mix(in srgb, var(--p, var(--btnBg)) 55%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.24),
    inset 0 -10px 18px rgba(0,0,0,0.26);
}
.link-btn:hover::before{
  transform: translateX(60%) rotate(8deg);
}

.link-btn:active{
  transform: translateY(2px) scale(0.995);
  box-shadow:
    0 12px 36px var(--shadowSoft),
    0 2px 0 color-mix(in srgb, rgba(0,0,0,0.55) 55%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -6px 12px rgba(0,0,0,0.30);
}

.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;
  /* İstek: tüm ikonlar SİYAH */
  filter: brightness(0) saturate(100%) !important;
  opacity: 0.95;
}

/* Tema bağımsız: ikonlar siyah kalır */
html[data-theme="light"] .btn-icon img{ filter: brightness(0) saturate(100%) !important; }

/* Özel ikon kuralı gerekmez */
.link-btn.mod .btn-icon img{ filter: brightness(0) saturate(100%) !important; }

.btn-text{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align:center;
  padding: 0 6px;
  /* Kullanıcı isteği: Buton yazıları TAM siyah */
  color: #000 !important;
  text-shadow: none !important;
}

/* Her ihtimale karsi: buton icindeki tum metinler siyah kalsin */
.link-btn, .link-btn *{
  color: #000 !important;
}

/* 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: var(--accent); }
.link-btn.yt{ --p: var(--accent); }
.link-btn.tt{ --p: var(--accent); }
.link-btn.wa{ --p: var(--accent); }
.link-btn.fb{ --p: var(--accent); }
.link-btn.kick{
  --p:#53FC18;
}
/* (Tema: Siyah + Gold) */

.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.fb,
.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.fb: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 */



/* NOTE: DO NOT cap direct children of body to 100vh.
   This was preventing the page from scrolling on mobile when content is taller than the screen. */



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

/* 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;
}


/* (cleanup) stray closing brace removed */

.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);
  /* İstek: Buton yazıları SİYAH */
  color: #000 !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.book .btn-icon svg{ color: #000000 !important; }
.buttons .link-btn.maps .btn-icon svg{ color: #EA4335 !important; }
.buttons .link-btn.maps .btn-icon svg{ width: 26px !important; height: 26px !important; }
.buttons .link-btn:not(.book):not(.maps) .btn-icon svg{ color: #000 !important; }
.buttons .link-btn .btn-text{ color: #000 !important; }


/* FORCE_SALON_BUTTONS */
.buttons .link-btn{
  --p: var(--btnBg);
  /* İstek: Buton yazıları SİYAH */
  color: #000 !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{
  /* keep icons BLACK on gold */
  filter: brightness(0) saturate(100%) !important;
  opacity: 0.95;
}


/* Salon theme override */
.buttons .link-btn{
  --p: var(--btnBg);
  color: #000 !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;
  position: relative;
  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;
  /* Mobile scroll usability: prevent the map from "grabbing" the swipe.
     Tap the map to activate interaction. */
  pointer-events: none;
}
.map-wrap.is-active iframe{ pointer-events: auto; }

.map-overlay{
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(251,242,216,0.22);
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  line-height: 1.25;
  color: rgba(255,255,255,0.92);
  text-align: center;
  user-select: none;
}
.map-wrap.is-active .map-overlay{ opacity: 0; pointer-events: none; }
@media (max-width: 520px){
  .map-wrap iframe{ height: 280px; }
}

/* --- 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;
}


/* ===============================
   ULTRA GOLD / PREMIUM (FINAL)
   =============================== */

:root{
  /* richer gold range */
  --gold-1: #f7e7a6;
  --gold-2: #d7b24a;
  --gold-3: #a57a16;
  --btnText: var(--gold-1);
}

/* Title: premium gold gradient + subtle emboss */
.title{
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.28));
  border: 1px solid rgba(215,178,74,0.38);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -12px 24px rgba(0,0,0,0.28);
}

.title-text{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.3px;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.55),
    0 0 18px rgba(215,178,74,0.28);
}

.subtitle{
  margin: -6px 0 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(247,231,166,0.95), rgba(215,178,74,0.95), rgba(247,231,166,0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.98;
  text-shadow: 0 1px 0 rgba(0,0,0,0.55);
}

/* Buttons: gold text + premium gold frame */
.link-btn{
  color: var(--gold-1);
  border: 1px solid rgba(215,178,74,0.42);
  background: linear-gradient(180deg, rgba(10,10,10,0.92), rgba(0,0,0,0.70));
  box-shadow:
    0 18px 55px rgba(0,0,0,0.55),
    0 0 26px rgba(215,178,74,0.22),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -12px 24px rgba(0,0,0,0.32);
}

.link-btn:hover{
  border-color: rgba(247,231,166,0.62);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.62),
    0 0 44px rgba(215,178,74,0.34),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -12px 24px rgba(0,0,0,0.30);
}

.btn-text{
  font-weight: 900;
  letter-spacing: 0.4px;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 55%, var(--gold-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(0,0,0,0.55);
}

.btn-icon{
  border: 1px solid rgba(215,178,74,0.40);
  background: linear-gradient(180deg, rgba(247,231,166,0.12), rgba(215,178,74,0.06));
  box-shadow:
    0 12px 26px rgba(0,0,0,0.40),
    0 0 18px rgba(215,178,74,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -10px 18px rgba(0,0,0,0.26);
}

/* Inline SVG icons follow link color (gold) */
.btn-icon svg{ fill: currentColor; }

/* External SVG icons (<img>) recolor to gold */
.buttons .link-btn .btn-icon img{
  filter: brightness(0) saturate(100%)
          invert(86%) sepia(28%) saturate(760%) hue-rotate(6deg)
          brightness(98%) contrast(94%) !important;
  opacity: 0.98;
}

/* Map frame: match gold */
.map-wrap{
  border: 1px solid rgba(215,178,74,0.36);
  box-shadow: 0 16px 50px rgba(0,0,0,0.36), 0 0 34px rgba(215,178,74,0.16);
}

@media (max-width: 520px){
  .title-text{ font-size: 20px; }
}

/* ===============================
   USER REQUEST OVERRIDES (WHITE HEADER + GOLD BUTTONS)
   =============================== */

/* Header: keep WHITE (no gold gradient) */
.title-text{
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: rgba(255,255,255,0.98) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55) !important;
}
.subtitle{
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: rgba(255,255,255,0.82) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55) !important;
  letter-spacing: 2.0px !important;
}

/* Buttons: GOLD background, BLACK text */
.link-btn{
  background: linear-gradient(180deg, #f6e08f 0%, #d4af37 42%, #b8860b 100%) !important;
  border: 1px solid rgba(0,0,0,0.22) !important;
  color: rgba(0,0,0,0.92) !important;
  box-shadow:
    0 18px 55px rgba(0,0,0,0.55),
    0 10px 0 rgba(0,0,0,0.35),
    0 0 34px rgba(212,175,55,0.22),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -12px 22px rgba(0,0,0,0.18) !important;
}
.link-btn:hover{
  transform: translateY(-2px) !important;
  filter: saturate(1.04) brightness(1.02) !important;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.60),
    0 12px 0 rgba(0,0,0,0.34),
    0 0 46px rgba(212,175,55,0.28),
    inset 0 1px 0 rgba(255,255,255,0.60),
    inset 0 -12px 22px rgba(0,0,0,0.16) !important;
}
.link-btn:active{
  transform: translateY(2px) scale(0.995) !important;
}

/* Icon tile: subtle black glass over gold */
.btn-icon{
  background: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.08)) !important;
  border: 1px solid rgba(0,0,0,0.20) !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -10px 18px rgba(0,0,0,0.18) !important;
}

/* Icons: ALL BLACK */
.btn-icon svg{ fill: currentColor !important; }
.btn-icon img{
  filter: brightness(0) saturate(100%) !important;
  opacity: 0.95 !important;
}

/* Keep share button readable on gold theme */
.action-btn{ color: rgba(255,255,255,0.92) !important; }


/* === FINAL OVERRIDE: FORCE BLACK ICONS IN BUTTONS === */
.buttons .link-btn .btn-icon img{
  filter: brightness(0) saturate(100%) !important;
  -webkit-filter: brightness(0) saturate(100%) !important;
  opacity: 0.98 !important;
}

/* ===============================
   FINAL FIXES (Subtitle casing + Button hover/press feedback)
   =============================== */

/* Subtitle: keep exact casing "Hair Art Education" */
.subtitle{
  text-transform: none !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
}

/* Button feedback: hover + pressed */
.link-btn{
  position: relative !important;
  overflow: hidden !important;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    filter 140ms ease;
}

/* subtle shine overlay */
.link-btn::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.14);
  opacity: 0;
  transition: opacity 140ms ease;
  pointer-events: none;
}

.link-btn:hover::after{
  opacity: 0.06;
}

.link-btn:active{
  transform: translateY(1px) scale(0.99) !important;
  filter: saturate(1.02) brightness(0.98) !important;
  box-shadow:
    0 12px 34px rgba(0,0,0,0.55),
    0 6px 0 rgba(0,0,0,0.38),
    0 0 26px rgba(212,175,55,0.18),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -18px 24px rgba(0,0,0,0.22) !important;
}

.link-btn:active::after{
  opacity: 0.18;
}

.link-btn:focus-visible{
  outline: 3px solid rgba(0,0,0,0.55);
  outline-offset: 3px;
}

/* Make sure text & icons stay above overlay */
.link-btn .btn-text,
.link-btn .btn-icon{
  position: relative;
  z-index: 1;
}

/* === FINAL BRAND ICON COLORS (Simple Icons SVG via CSS filter) === */
/* These icons are loaded as external SVG files, so we color them with CSS filters. */
.buttons .link-btn .btn-icon img{
  width: 22px;
  height: 22px;
  display: block;
  filter: none !important; /* reset any previous overrides */
  opacity: 1 !important;
}

/* WhatsApp brand green (#25D366) */
.buttons .link-btn.wa .btn-icon img{
  filter: invert(62%) sepia(67%) saturate(451%) hue-rotate(86deg) brightness(95%) contrast(92%) !important;
}

/* Facebook brand blue (#1877F2) */
.buttons .link-btn.fb .btn-icon img{
  filter: invert(33%) sepia(92%) saturate(1952%) hue-rotate(202deg) brightness(97%) contrast(101%) !important;
}

/* YouTube brand red (#FF0000) */
.buttons .link-btn.yt .btn-icon img{
  filter: invert(15%) sepia(95%) saturate(7470%) hue-rotate(356deg) brightness(96%) contrast(119%) !important;
}

/* TikTok: official mark is primarily black with cyan/red accents.
   Simple Icons provides a monochrome mark; keep it black for brand consistency. */
.buttons .link-btn.tt .btn-icon img{
  filter: none !important;
}

/* === OVERRIDE: ICON COLORS (force) ===
   Konum & Randevu ikonlari inline SVG ve buton metni siyah istendigi icin
   butonun 'color' degerini siyah tutuyoruz. Bu yuzden ikonlari ayri boyuyoruz.
*/

/* Buton metni her zaman siyah */
.buttons .link-btn .btn-text{ color:#000 !important; }

/* Inline SVG ikonlara renk ver */
.buttons .link-btn.maps .btn-icon svg{ color:#EA4335 !important; } /* Konum: kirmizi */
.buttons .link-btn.book .btn-icon svg{ color:#000000 !important; } /* Randevu: siyah */

/* Eski 'inherit' kurallarini ez */
.buttons .link-btn.book .btn-icon svg,
.buttons .link-btn.maps .btn-icon svg{ fill: currentColor !important; }

/* Konum & Randevu ikonlari inline SVG (fill=currentColor).
   Dikkat: Buton metni siyah kalsın; sadece ikonlar renklensin.
   Bu yüzden linkin "color"'ini DEGIL, sadece svg'yi boyuyoruz. */
.buttons .link-btn.maps .btn-icon svg{ color: #EA4335 !important; } /* Konum: kirmizi */
.buttons .link-btn.book .btn-icon svg{ color: #000000 !important; } /* Randevu: siyah */

/* Sosyal medya ikonlari img oldugu icin kendi filter kurallari yukarida kalsin.
   Inline SVG ikonlarin yaninda social ikonlari etkilenmesin diye img reset devam. */

/* === ICON COLOR OVERRIDES (keep button text black) === */
.link-btn.maps .btn-icon svg{ color:#EA4335 !important; fill: currentColor !important; }
.link-btn.book .btn-icon svg{ color:#000000 !important; fill: currentColor !important; }

/* === FORCE: KONUM ICON RED (ABSOLUTE OVERRIDE) === */
/* Some browsers keep SVG path fill from earlier rules; force both svg + children fill */
.buttons a.link-btn.maps .btn-icon svg,
.buttons a.link-btn.maps .btn-icon svg *{
  fill: #EA4335 !important;
  color: #EA4335 !important;
}

/* Randevu icon siyah */
.buttons a.link-btn.book .btn-icon svg,
.buttons a.link-btn.book .btn-icon svg *{
  fill: #000000 !important;
  color: #000000 !important;
}

/* ===============================
   SCROLL JITTER FIX (BOTTOM BOUNCE)
   Reason: iOS/Safari can jitter when fixed full-screen layers + 100vh are used.
   We switch background layers from fixed -> absolute and avoid hard 100vh.
   =============================== */

/* Avoid dynamic 100vh resize jump on mobile address bar */
.page{ min-height: auto !important; }
@supports (min-height: 100svh){
  .page{ min-height: 100svh !important; }
}

/* Make background layers scroll with the page instead of 'fixed' */
body::before,
body::after{
  position: absolute !important;
}

/* Keep them behind content */
body{ position: relative; }

/* Slightly reduce heavy transforms that can trigger repaint jitter */
body::before{ transform: none !important; }
