@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

/* GENEL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Üst başlık */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 40px;
  text-align: center;
  font-size: 48px;
  background: rgba(0,0,0,0.5);
  transition: opacity 0.5s ease, transform 0.5s ease; /* Opaklık ve pozisyon için geçiş */
}

/* Kaydırma sırasında küçülme ve yukarı kayma efekti */
header.scrolled {
  opacity: 0;         /* Yavaşça kaybolur */
  transform: translateY(-50px) scale(0.8); /* Yukarı kayma ve küçülme */
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* video fills */
  z-index: -1;
}

/* Navbar üst bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* LOGO DÜZENLEMESİ: CORE logosunun bozulmasını engellemek için filter kodu kaldırıldı. */
.logo img {
  height: 35px;
}

/* MENÜ */
.menu a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-left: 15px;
  border: 2px solid red;
  border-radius: 25px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Işık efekti */
.menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,0,0,0.6),
    rgba(255,255,255,0.4),
    rgba(255,0,0,0.6)
  );
  transition: all 0.5s ease;
  z-index: 1;
}

/* Hover olunca ışık geçsin */
.menu a:hover::before {
  left: 100%;
}

/* Hover olunca renk ve animasyon */
.menu a:hover {
  background: red;
  color: black;
  transform: scale(1.1);
}

/* Tıklanınca ufak animasyon */
.menu a:active {
  transform: scale(0.95);
}

/* COOKIES */
.cookies {
  background: rgba(0, 0, 0, 0.85);
  padding: 15px;
  font-size: 12px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999; /* tüm diğer elemanların üstünde */
}

.cookies p {
  margin-bottom: 10px;
}

.cookies a {
  color: #bbb;
  text-decoration: underline;
}

.cookies-buttons {
  display: flex;
  gap: 10px;
}

.cookies-buttons button {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 12px;
}

.cookies-buttons .accept {
  background: #fff;
  color: #000;
  font-weight: bold;
}

/* GENEL BUTON STİLİ */
button, .teaser-btn a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  background: transparent;
  border: 1px solid red;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover efekti: arka plandan ışık süzülmesi */
button::before, .teaser-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,0,0,0.6), rgba(255,255,255,0.3), rgba(255,0,0,0.6));
  transition: all 0.5s ease;
}

button:hover::before, .teaser-btn a:hover::before {
  left: 100%;
}

button:hover, .teaser-btn a:hover {
  color: #000;
  background: red;
  transform: scale(1.05);
}

/* TEASER BUTONU ÖZEL */
.teaser-btn a {
  font-size: 18px;
  border: 2px solid red;
  padding: 12px 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Cookies accept özel */
.cookies-buttons .accept {
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  font-weight: bold;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cookies-buttons .accept:hover {
  transform: scale(1.1) rotate(-2deg);
  background: red;
  color: #fff;
}

/* SOUND butonuna özel */
#sound-btn {
  position: relative;
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid red;
  border-radius: 25px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* İçinden geçen ışık efekti */
#sound-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,0,0,0.6),
    rgba(255,255,255,0.4),
    rgba(255,0,0,0.6)
  );
  transition: all 0.5s ease;
}

#sound-btn:hover::before {
  left: 100%;
}

#sound-btn:hover {
  background: red;
  color: black;
  transform: scale(1.05);
}

/* GENİŞLETİLMİŞ MENÜ PANELİ */
#expanded-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#expanded-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  display: flex;
  gap: 80px;
  padding: 40px;
  text-align: left;
}

.menu-column h2 {
  font-size: 24px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-bottom: 2px solid red;
  padding-bottom: 5px;
}

.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-column ul li {
  margin-bottom: 10px;
}

.menu-column ul li a {
  color: #aaa;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.menu-column ul li a:hover {
  color: red;
  transform: translateX(10px);
}

#close-menu-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: 2px solid red;
  color: red;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 15px;
  transition: all 0.3s ease;
}

#close-menu-btn:hover {
  background: red;
  color: #000;
  transform: rotate(90deg);
}

/* GENEL AYARLAR */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* NAVBAR (Geliştirdiğiniz Navbar'a benzer) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}


.menu a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-left: 15px;
    border: 2px solid red;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu a:hover {
    background: red;
    color: black;
    transform: scale(1.1);
}

.footer {
  background: #000;
  color: #fff;
  padding: 40px 10%;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.new {
  color: red;
  font-size: 0.8em;
  margin-left: 5px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
}

.socials a {
  margin: 0 10px;
  color: #ccc;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover {
  color: #fff;
  transform: scale(1.2) rotate(5deg);
}

.footer-legal {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
}

.footer-legal a {
  color: #aaa;
  margin: 0 5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}


/* Cookies accept özel */
.cookies-buttons .accept {
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  font-weight: bold;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cookies-buttons .accept:hover {
  transform: scale(1.1) rotate(-2deg);
  background: red;
  color: #fff;
}

html, body {
  overflow-x: hidden !important;  /* tüm sitede yatay kaydırmayı kapat */
  width: 100%;
}

.divider-simple {
  border: none;
  height: 1px;
  width: 93%;          /* çizginin uzunluğunu kısalttım */
  background-color: #555;
  margin: 40px auto;   /* ortalanması için */
}

  :root{
    --bg1:#050505;
    --panel:#111111;
    --panel-2:#0f0f0f;
    --border:#222;
    --muted:#9b9b9b;
    --accent:#b51717; /* kırmızı vurgular */
    --glass: rgba(255,255,255,0.02);
  }
  /* Genel sayfa */
  html,body {
    height:100%;
    margin:0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background:
      radial-gradient(ellipse at center, rgba(0,0,0,0.8) 10%, rgba(0,0,0,0.95) 60%),
      linear-gradient(180deg,#060606 0%, #040404 100%);
    color:#e6e6e6;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }

  /* Arkaplan atmosferik doku */
  body::before{
    content:"";
    position:fixed;
    inset:0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600"><filter id="g"><feTurbulence baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23g)" opacity="0.02" /></svg>') center/cover no-repeat;
    mix-blend-mode:overlay;
    pointer-events:none;
    z-index:0;
    opacity:0.9;
  }

  /* Konteyner - navbar'a müdahale etmeyecek şekilde yerleştirilebilir */
  .dashboard-wrap{
    position:relative;
    z-index:1;
    max-width:1100px;
    margin:60px auto 120px; /* üstte navbar boşluğu bıraktık */
    padding:40px 36px;
    box-sizing:border-box;
    min-height:520px;
  }

  /* Panel card (Outlast benzeri büyük koyu kutu) */
  .card{
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
    border:1px solid rgba(255,255,255,0.03);
    box-shadow: 0 6px 30px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.01);
    border-radius:4px;
    overflow:hidden;
  }

  /* Üst başlık çubuğu (açılır panel görünümü) */
  .panel-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.02));
    border-bottom:1px solid var(--border);
    cursor:pointer;
    gap:12px;
  }
  .panel-header h2{
    margin:0;
    font-size:14px;
    letter-spacing:1px;
    color:#ddd;
    text-transform:uppercase;
    font-weight:600;
  }
  .panel-header .sub{
    color:var(--muted);
    font-size:12px;
    opacity:0.9;
  }

  .chev{
    width:20px;height:20px;
    display:inline-grid;
    place-items:center;
    transform:rotate(90deg);
    transition: transform 0.35s cubic-bezier(.2,.9,.2,1);
    color:var(--muted);
    opacity:0.9;
  }
  .chev svg{display:block; width:10px;height:10px; transform:translateX(1px);}

  /* İçerik bölümü */
  .panel-body{
    padding:22px;
    display:grid;
    grid-template-columns: 1fr;
    gap:18px;
    background:linear-gradient(180deg, rgba(0,0,0,0.01), rgba(0,0,0,0.03));
    animation: fadeInUp .6s ease both;
  }

  @keyframes fadeInUp{
    from{opacity:0; transform:translateY(8px);}
    to{opacity:1; transform:none;}
  }

  .grid-2{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:16px;
  }

  .field{
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.02));
    border:1px solid rgba(255,255,255,0.02);
    padding:12px;
    border-radius:3px;
    position:relative;
    transition: transform .22s ease, box-shadow .22s ease;
  }
  .field:focus-within{
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.015);
    border-color: rgba(181,23,23,0.85);
  }

  label{
    display:block;
    color:var(--muted);
    font-size:13px;
    margin-bottom:8px;
  }
  input[type="text"], input[type="password"], input[type="tel"], textarea{
    width:100%;
    background:transparent;
    border:0;
    outline:none;
    color:#eaeaea;
    font-size:15px;
    padding:6px 0;
    box-sizing:border-box;
    caret-color:var(--accent);
  }
  textarea{
    min-height:140px;
    resize:vertical;
  }

  /* avatar */
  .profile-row{
    display:flex;
    gap:16px;
    align-items:center;
  }
  .avatar{
    width:110px;height:110px;border-radius:6px;
    background:linear-gradient(180deg,#0b0b0b,#151515);
    border:1px solid rgba(255,255,255,0.03);
    display:flex;align-items:center;justify-content:center;
    overflow:hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  }
  .avatar img{width:100%;height:100%;object-fit:cover;display:block;}
  .avatar .initial{
    font-size:32px;color:#bdbdbd;text-transform:uppercase;
  }
  .avatar .change{
    position:absolute;bottom:8px;left:8px;right:8px;text-align:center;font-size:12px;color:var(--muted);
  }

  .small{
    font-size:13px;color:var(--muted);
  }

  /* Kırmızı küçük link */
  .links{
    font-size:13px;
    color:var(--accent);
    margin-top:8px;
  }
  .links a{color:var(--accent); text-decoration:underline; opacity:0.95;}

  /* Buton */
  .btn{
    display:inline-block;
    width:100%;
    padding:16px 18px;
    border-radius:2px;
    text-align:center;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    border:1px solid rgba(255,255,255,0.03);
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.02));
    cursor:pointer;
    transition: all .22s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.7);
    color:#e8e8e8;
  }
  .btn:hover{
    transform:translateY(-3px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.8);
    border-color:rgba(181,23,23,0.8);
  }

  /* Secondary small button */
  .btn-ghost{
    background:transparent;
    border:1px dashed rgba(255,255,255,0.06);
    padding:10px 12px;
    border-radius:3px;
    cursor:pointer;
    color:var(--muted);
    font-size:13px;
  }
  .btn-danger{
    background: linear-gradient(180deg,#3a0000,#250000);
    border:1px solid rgba(181,23,23,0.9);
    color:#ffdede;
  }

  /* Bölümler arası */
  .section{
    display:grid;
    gap:12px;
  }

  /* Password fields satırı */
  .pw-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:16px;
    align-items:end;
  }

  /* Hata / Başarı mesaj */
  .msg{
    padding:12px 14px;
    border-radius:3px;
    font-size:13px;
    display:none;
  }
  .msg.success{background:linear-gradient(180deg, rgba(20,60,20,0.4), rgba(10,30,10,0.35)); color:#bfe8b5; border:1px solid rgba(20,80,20,0.6);}
  .msg.error{background:linear-gradient(180deg, rgba(60,20,20,0.4), rgba(30,10,10,0.35)); color:#ffbdbd; border:1px solid rgba(80,20,20,0.6);}

  /* Kolay responsive */
  @media (max-width:820px){
    .grid-2, .pw-grid{grid-template-columns:1fr;}
    .dashboard-wrap{padding:22px;}
    .avatar{width:86px;height:86px;}
  }

  /* Açılır panel kapatıldığında */
  .collapsed .panel-body{
    display:none;
  }
  .collapsed .chev{ transform:rotate(-90deg); }
  /* küçük animasyonlu toast */
  .toast{
    position:fixed;
    right:22px;
    bottom:22px;
    background:#0d0d0d;
    border:1px solid rgba(255,255,255,0.03);
    padding:12px 16px;
    border-radius:6px;
    box-shadow:0 10px 40px rgba(0,0,0,0.6);
    transform:translateY(14px);
    opacity:0;
    transition: all .35s cubic-bezier(.2,.9,.2,1);
    z-index:9999;
  }
  .toast.show{ transform:none; opacity:1; }
  .toast.success{ border-color: rgba(20,80,20,0.6); color:#bfe8b5;}
  .toast.error{ border-color: rgba(80,20,20,0.6); color:#ffbdbd;}
  .muted-note{ color:var(--muted); font-size:13px; margin-top:6px;}

  /* ===========================
   UXHDR (unique header) styles
   Prefix: uxhdr-
   =========================== */

/* Sadece demo sayfaya ait temel gövde stili (izole: .uxhdr-demo) */
.uxhdr-demo { font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; background: #050505; color: #e6e6e6; margin:0; min-height:200vh; }

/* Root değişkenleri (tamamen scope içinde) */
.uxhdr-root {
  --uxhdr-height: 58px;  /* 🔴 Eskiden 72px idi */
  --uxhdr-bg: rgba(12,12,12,0.6);
  --uxhdr-bg-scrolled: rgba(10,10,10,0.92);
  --uxhdr-accent: #c51b2d;     /* kırmızı vurgu */
  --uxhdr-text: #d7d7d7;
  --uxhdr-muted: #9a9a9a;
  --uxhdr-glow: 0 8px 30px rgba(197,27,45,0.08);
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(6px) saturate(100%);
  -webkit-backdrop-filter: blur(6px);
  transition: background 280ms ease, box-shadow 280ms ease, height 240ms ease;
}

/* Header container */
.uxhdr-container {
  height: var(--uxhdr-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 8px 20px;   /* 🔴 Eskiden 12px 28px idi */
  border-bottom: 1px solid rgba(255,255,255,0.02);
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(0,0,0,0.02));
}

/* Small variant when scrolled (JS ekliyor .uxhdr-scrolled) */
.uxhdr-root.uxhdr-scrolled { background: var(--uxhdr-bg-scrolled); box-shadow: var(--uxhdr-glow); }

/* Logo area */
.uxhdr-brand {
  display:flex;
  gap:10px;
  align-items:center;
  min-width:120px;
}
.uxhdr-logo {
  display:inline-grid;
  place-items:center;
  width:36px;   /* 🔴 Eskiden 44px */
  height:36px;
  border-radius:6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: inset 0 -4px 12px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.6);
  overflow:hidden;
  position:relative;
  transform-origin:center;
  animation: uxhdr-logo-pop 600ms cubic-bezier(.2,.9,.3,1);
  border:1px solid rgba(255,255,255,0.03);
}
@keyframes uxhdr-logo-pop {
  from { transform: translateY(-6px) scale(0.96); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.uxhdr-logo svg { width:22px; height:22px; display:block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }

/* Brand text */
.uxhdr-brand-title { font-weight:600; letter-spacing:0.08em; color:var(--uxhdr-text); font-size:13px; }
.uxhdr-brand-sub { font-size:11px; color:var(--uxhdr-muted); margin-top:2px; }

/* Main navigation (desktop) */
.uxhdr-nav {
  display:flex;
  gap:4px;
  align-items:center;
  margin-left:4px;
}
.uxhdr-nav-list { display:flex; gap:2px; list-style:none; margin:0; padding:0; align-items:center; }
.uxhdr-nav-item { position:relative; }
.uxhdr-nav-link {
  display:inline-block;
  padding:8px 12px;  /* 🔴 Eskiden 12px 16px */
  border-radius:6px;
  color:var(--uxhdr-text);
  text-decoration:none;
  font-size:13px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
  opacity:0.96;
}
.uxhdr-nav-link:hover, .uxhdr-nav-link:focus {
  transform: translateY(-3px);
  outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
}
.uxhdr-nav-link::after {
  content: "";
  position:absolute;
  left:12px;
  right:12px;
  bottom:6px;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--uxhdr-accent), transparent);
  transform: scaleX(0);
  transform-origin:center;
  transition: transform 240ms cubic-bezier(.2,.9,.3,1);
  border-radius:2px;
}
.uxhdr-nav-link:hover::after { transform: scaleX(1); }

/* Right-side group (search + profile) */
.uxhdr-actions {
  display:flex;
  gap:8px;
  align-items:center;
}

/* Search: collapsible */
.uxhdr-search {
  display:flex;
  align-items:center;
  gap:6px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.03);
  padding:4px 6px;
  border-radius:8px;
  transition: width 220ms ease, opacity 220ms ease;
  min-width:36px;
}
.uxhdr-search .uxhdr-search-input {
  width:0;
  opacity:0;
  border:0;
  background:transparent;
  color:var(--uxhdr-text);
  font-size:13px;
  outline:none;
  transition: width 220ms ease, opacity 220ms ease;
}
.uxhdr-search.uxhdr-open { min-width:180px; padding-left:8px; }
.uxhdr-search.uxhdr-open .uxhdr-search-input { width:120px; opacity:1; }

/* Profile button */
.uxhdr-profile {
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
}
.uxhdr-profile-btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;  /* 🔴 Eskiden 8px 12px */
  border-radius:999px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,0.04);
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(255,255,255,0.01));
  transition: transform 160ms ease, box-shadow 160ms ease;
  color:var(--uxhdr-text);
  font-size:13px;
}
.uxhdr-profile-btn:hover { transform:translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.6); }
.uxhdr-avatar {
  width:28px; height:28px; border-radius:50%; overflow:hidden; display:inline-grid; place-items:center;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.2));
  border:1px solid rgba(255,255,255,0.03);
}
.uxhdr-avatar svg { width:16px; height:16px; opacity:0.95; }

/* Profile dropdown */
.uxhdr-dropdown {
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  min-width:200px;
  background: linear-gradient(180deg, rgba(6,6,6,0.98), rgba(12,12,12,0.98));
  border:1px solid rgba(255,255,255,0.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  padding:8px;
  border-radius:8px;
  transform-origin: top right;
  opacity:0;
  pointer-events:none;
  transform: translateY(-4px) scale(0.98);
  transition: transform 180ms cubic-bezier(.2,.9,.3,1), opacity 180ms ease;
  z-index:1400;
}
.uxhdr-dropdown.uxhdr-open {
  transform: translateY(0) scale(1);
  opacity:1;
  pointer-events:auto;
}
.uxhdr-dropdown .uxhdr-dd-item {
  padding:8px;
  border-radius:6px;
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:var(--uxhdr-text);
  font-size:13px;
}
.uxhdr-dd-item:hover { background: rgba(255,255,255,0.02); }

/* CTA (My Profile style) inside header */
.uxhdr-cta {
  background: linear-gradient(90deg, rgba(197,27,45,0.98), rgba(220,80,90,0.95));
  padding:4px 10px;   /* 🔴 Eskiden 5px 14px */
  border-radius:6px;
  color:white;
  font-weight:600;
  text-decoration:none;
  box-shadow: 0 4px 12px rgba(197,27,45,0.12);
  border: 1px solid rgba(255,255,255,0.02);
  transition: transform 140ms ease, opacity 120ms ease;
  font-size:13px;        /* 🔴 Eskiden 14px */
}
.uxhdr-cta:hover { transform: translateY(-3px); opacity:0.98; }

/* Mobile: hamburger */
.uxhdr-hamburger {
  display:none;
  width:38px;height:38px;border-radius:8px;align-items:center;justify-content:center;
  background: transparent; border:1px solid rgba(255,255,255,0.03);
}
.uxhdr-hamburger svg { width:18px;height:18px; }

/* Mobile nav panel */
.uxhdr-mobile-panel {
  position:fixed;
  inset:0 auto auto 0;
  width:100%;
  max-width:380px;
  height:100vh;
  background: linear-gradient(180deg,#080808,#050505);
  transform: translateX(-110%);
  transition: transform 300ms cubic-bezier(.2,.9,.3,1);
  z-index:1300;
}
.uxhdr-mobile-panel.uxhdr-open { transform: translateX(0); }
.uxhdr-mobile-content { padding:72px 16px 16px; }
.uxhdr-mobile-item { padding:12px 10px; border-radius:6px; margin-bottom:6px; color: var(--uxhdr-text); display:block; text-decoration:none; font-size:13px; }

/* small screens */
@media (max-width: 880px) {
  .uxhdr-nav { display:none; }
  .uxhdr-hamburger { display:flex; }
  .uxhdr-search.uxhdr-open { min-width:140px; }
}

/* tiny touches */
.uxhdr-pill { font-size:11px; color:var(--uxhdr-muted); background: rgba(255,255,255,0.01); padding:4px 6px; border-radius:999px; border:1px solid rgba(255,255,255,0.02); }

/* Accessibility focus style */
.uxhdr-root :focus { box-shadow: 0 0 0 2px rgba(197,27,45,0.12); outline: none; }

/* small entrance animation for nav-items */
.uxhdr-nav-link { animation: uxhdr-fade-in 420ms ease both; }
@keyframes uxhdr-fade-in { from { opacity:0; transform: translateY(-6px); } to { opacity:1; transform:translateY(0); } }

/* ---- Profile accessories styles (append to dashboard.css) ---- */
#bannerPreview { background-size: cover; background-position: center; color: #cfcfcf; font-size: 14px; }
.accessory-item { display:inline-flex; align-items:center; gap:6px; padding:6px 10px; background:rgba(255,255,255,0.02); border-radius:8px; cursor:pointer; user-select:none; color:var(--muted); }
.accessory-item input { transform:translateY(1px); }
#gradPreview { box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.msg.success { color: #9fe39f; background: rgba(159,227,159,0.06); padding:4px 8px; border-radius:6px; }
.msg.error { color: #ff9999; background: rgba(255,153,153,0.04); padding:4px 8px; border-radius:6px; }
