/*
  VVM Sekabet Desktop UI
  - Font: Roboto
  - Base colors from Burak's sampled values
*/

.vvm-seka{
  --vvm-border:#303337;
  --vvm-panel:#181D21;
  --vvm-login:#333546;
  --vvm-register:#EE9A1B;
  --vvm-dd-highlight:#ECB50D;
  --vvm-dd-bg:#1C1D21;

  --vvm-text:#E9EEF4;
  --vvm-muted:#AAB2BB;
  --vvm-black:#0b0d10;
  --vvm-radius:16px;

  --vvm-wrap-w:1367px;
  --vvm-row-h:55px;
  --vvm-gap:21px;

  --vvm-icon-btn:38px;
  --vvm-icon-size:18px;

  font-family: 'Roboto', sans-serif;
  color: var(--vvm-text);
}

.vvm-seka, .vvm-seka *{ box-sizing:border-box; }

/* Top notice strip */
.vvm-seka-topbar{
  /* Elementor sections are often boxed; stretch strips to full viewport width */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--vvm-black);
  border-bottom: 1px solid rgba(238,154,27,0.25);
  padding: 10px 0;
  text-align:center;
  font-size: 13px;
}
.vvm-seka-topbar a{
  color: var(--vvm-text);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: var(--vvm-topbar-gap, 9px);
}
.vvm-seka-topbar a:hover{ text-decoration:underline; }

/* Top info (expand / collapse) */
.vvm-seka-flippanel{
  /* Keep layout boxed, but stretch only the underline to viewport width */
  position: relative;
  border-bottom: 0;
  overflow: hidden;
  background: #0b0d10;
}

.vvm-seka-flippanel::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:100vw;
  height:1px;
  background:#EE9A1B;
}

.vvm-seka-flip{
  cursor: pointer;
  user-select: none;
  padding: 9px 12px;
  font-size: 12px;
  line-height: 1.2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  /*
    "k" icon in production: 16px x 22.09px with margin: -4px 9px
    To avoid spacing doubling, default gap is 0 (icon provides spacing via margin).
  */
  gap: var(--vvm-topbar-gap, 0px);
}

.vvm-seka-flip__logo{
  width: 16px;
  height: 16px;
  margin: -4px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  /* Let the uploaded SVG/PNG define its own look */
  border-radius: 0;
  background: transparent;
}

.vvm-seka-flip__logo .vvm-icon-wrap{
  --vvm-icon-size: var(--vvm-icon-size, 12px);
  width: var(--vvm-icon-size);
  height: var(--vvm-icon-size);
}

.vvm-seka-flip__logo .vvm-icon-media{
  width: 100%;
  height: 100%;
}

.vvm-seka-flip__fallback{
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}

.vvm-seka-panel{
  padding: 15px 0 18px;
  display: block;
}

.vvm-seka-panel[hidden]{ display:none !important; }

.vvm-seka-panel__inner{
  max-width: var(--vvm-wrap-w);
  margin: 0 auto;
  padding: 0 32px;
}

.vvm-seka-panel__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 80px);
}

.vvm-seka-panel__item{ color: #ffffff; }
.vvm-seka-panel__item p{ margin: 0 0 10px; color: #fff; line-height: 1.5; font-size: 14px; }
.vvm-seka-panel__icon{
  font-size: 42px;
  float: left;
  margin-right: 12px;
  color: #ecb50d;
  margin-bottom: 20px;
}

.vvm-seka-panel__address{
  padding: 5px 10px;
  background-color: #322359;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

.vvm-seka-panel__address i{ font-size: 18px !important; float: none !important; margin: 0 !important; color: white !important; padding-right: 8px !important; }

.vvm-seka-panel__security span{
  background-color: #312107;
  padding: 5px 10px;
  border-radius: 10px;
  color: #f7b750;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
}
.vvm-seka-panel__security span i{ font-size: 18px !important; float: none !important; margin: 0 !important; }

@media (max-width: 768px){
  .vvm-seka-panel__grid{ grid-template-columns: 1fr; }
  .vvm-seka-panel__inner{ padding: 0 16px; }
  .vvm-seka-panel__icon{ margin-top: 40px; }
}

/* Main wrapper */
.vvm-seka-shell{
  width: min(var(--vvm-wrap-w), 100%);
  margin: 0 auto;
  padding: 14px 0 0 0;
}

.vvm-seka-row{
  height: var(--vvm-row-h);
  background: var(--vvm-panel);
  border: 1px solid var(--vvm-border);
  border-radius: var(--vvm-radius);
  display:flex;
  align-items:center;
  padding: 0 16px;
}

.vvm-seka-row + .vvm-seka-row{ margin-top: var(--vvm-gap); }

.vvm-seka-left{ display:flex; align-items:center; gap:14px; }
.vvm-seka-logo img{ display:block; height: 36px; width:auto; }

.vvm-seka-right{ margin-left:auto; display:flex; align-items:center; gap:10px; }

/* Buttons */
.vvm-seka-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 34px;
  padding: 0 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  text-decoration:none;
  border: 1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
}
.vvm-seka-btn--register{ background: var(--vvm-register); color:#111317; }
.vvm-seka-btn--login{ background: var(--vvm-login); color: var(--vvm-text); }

.vvm-seka-btn--outline{
  background: transparent;
  border-color: rgba(238,154,27,0.6);
  color: var(--vvm-register);
}

/* Icon button */
.vvm-seka-iconbtn{
  width: var(--vvm-icon-btn);
  height: var(--vvm-icon-btn);
  border-radius: 12px;
  border: 1px solid var(--vvm-border);
  background: rgba(0,0,0,0.10);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  position:relative;
}
.vvm-seka-iconbtn img,
.vvm-seka-iconbtn svg{
  width: var(--vvm-icon-size);
  height: var(--vvm-icon-size);
}

/* Currency / balance pill */
.vvm-seka-balance{
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--vvm-border);
  background: rgba(0,0,0,0.10);
  display:flex;
  align-items:center;
  gap:10px;
  padding: 0 10px;
  font-weight: 600;
}
.vvm-seka-balance .vvm-seka-plus{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 14px;
  line-height: 1;
}

/* Dropdown base */
.vvm-dd{ position:relative; }
.vvm-ddBtn{
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--vvm-border);
  background: rgba(0,0,0,0.10);
  color: var(--vvm-text);
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 0 12px;
  cursor:pointer;
  font-weight: 600;
  white-space:nowrap;
}
.vvm-ddBtn--accent{
  background: var(--vvm-register);
  color:#111317;
  border-color: rgba(0,0,0,0.2);
}
.vvm-ddCaret{
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255,255,255,0.85);
}
.vvm-ddBtn--accent .vvm-ddCaret{ border-top-color: rgba(0,0,0,0.7); }

/* Orange "pill" buttons that still use dd caret */
.vvm-seka-btn--register .vvm-ddCaret{ border-top-color: rgba(0,0,0,0.7); }

.vvm-ddMenu{
  display:none;
  position:absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  border-radius: 12px;
  border: 1px solid var(--vvm-border);
  background: var(--vvm-dd-bg);
  padding: 8px;
  z-index: 50;
}
.vvm-dd.is-open .vvm-ddMenu{ display:block; }

.vvm-ddItem{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 10px;
  border-radius: 10px;
  color: var(--vvm-text);
  text-decoration:none;
  font-size: 13px;
}
.vvm-ddItem:hover{ background: rgba(255,255,255,0.06); }
.vvm-ddItem.is-active{ color: var(--vvm-register); }

/* Badge dot */
.vvm-badge-dot{
  width: 8px;
  height: 8px;
  background: #E53B2C;
  border-radius: 999px;
  display:inline-block;
}

/* Second row menu */
.vvm-seka-menu{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 8px;
}
.vvm-seka-menuList{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}
.vvm-seka-menuItem{
  flex: 1 1 0;
  text-align:center;
}
.vvm-seka-menuLink{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding: 10px 6px;
  text-decoration:none;
  color: var(--vvm-muted);
  font-size: 12px;
}
.vvm-seka-menuLink:hover{ color: var(--vvm-text); }
.vvm-seka-menuIcon{
  width: 20px; height: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.vvm-seka-menuIcon img,
.vvm-seka-menuIcon svg{ width: 20px; height: 20px; }

/* Pages shared */
.vvm-page{
  width: min(var(--vvm-wrap-w), 100%);
  margin: 0 auto;
  padding: 24px 0 40px 0;
}
.vvm-breadcrumb{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.20);
  border: 1px solid var(--vvm-border);
  font-size: 13px;
  color: var(--vvm-text);
}
.vvm-breadcrumb strong{ font-weight: 700; }

.vvm-panel{
  margin-top: 18px;
  background: transparent;
}

.vvm-fieldRow{
  display:flex;
  align-items:flex-end;
  gap: 16px;
  flex-wrap:wrap;
}

.vvm-field{ min-width: 260px; }
.vvm-label{ font-size: 13px; color: var(--vvm-text); margin-bottom: 8px; font-weight: 600; }

.vvm-input{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--vvm-border);
  background: rgba(0,0,0,0.20);
  color: var(--vvm-text);
  padding: 0 14px;
  outline: none;
}
.vvm-input::placeholder{ color: rgba(233,238,244,0.55); }

.vvm-btnAction{
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--vvm-border);
  background: rgba(51,53,70,0.55);
  color: var(--vvm-text);
  padding: 0 18px;
  cursor:pointer;
  font-weight: 700;
}
.vvm-btnAction--accent{
  background: var(--vvm-register);
  border-color: rgba(0,0,0,0.2);
  color:#111317;
}

/* Custom select (Transaction filters) */
.vvm-select{ position:relative; }
.vvm-selectBtn{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--vvm-border);
  background: rgba(0,0,0,0.20);
  color: var(--vvm-text);
  padding: 0 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.vvm-selectMenu{
  display:none;
  position:absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--vvm-border);
  background: var(--vvm-dd-bg);
  overflow:hidden;
  z-index: 40;
}
.vvm-select.is-open .vvm-selectMenu{ display:block; }
.vvm-selectSearch{
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
  color: var(--vvm-text);
  padding: 0 12px;
  outline: none;
}
.vvm-selectOption{
  padding: 10px 12px;
  cursor:pointer;
  font-size: 13px;
}
.vvm-selectOption:hover{ background: rgba(255,255,255,0.06); }
.vvm-selectOption.is-highlight{ background: var(--vvm-dd-highlight); color:#111317; }

/* Table header */
.vvm-table{
  margin-top: 18px;
  border-radius: 12px;
  border: 1px solid var(--vvm-border);
  background: rgba(0,0,0,0.15);
  overflow:hidden;
}
.vvm-tableHead{
  display:grid;
  gap: 0;
  align-items:center;
  padding: 14px 14px;
  font-size: 12px;
  color: #8FA1B2;
  text-transform: uppercase;
}
.vvm-tableHead--bonus{ grid-template-columns: 60px 1.2fr 1fr 1.2fr 1fr 0.8fr; }
.vvm-tableHead--tx{ grid-template-columns: 1.1fr 1fr 1.3fr 0.8fr 0.8fr 0.8fr 0.8fr; }

/* Warning */
.vvm-warning{
  margin-top: 22px;
  color: #E53B2C;
  font-weight: 700;
  font-size: 14px;
}

/* Responsive: hide on small screens if needed */
@media (max-width: 1024px){
  .vvm-seka{ --vvm-wrap-w: 100%; }
  .vvm-seka-row{ height:auto; padding: 12px; }
  .vvm-seka-menuList{ flex-wrap:wrap; justify-content:center; }
  .vvm-seka-menuItem{ flex: 0 0 auto; }
}

/* Field dropdown variants (Transaction filters) */
.vvm-ddBtn--field{
  height: 44px;
  width: 100%;
  justify-content: space-between;
  padding: 0 14px;
}
.vvm-ddMenu--left{ left: 0; right: auto; }

/* Bonus input alignment */
.vvm-page[data-vvm-page="bonus"] .vvm-fieldRow{ gap: 12px; }
.vvm-page[data-vvm-page="bonus"] .vvm-btnAction{ height: 44px; }

/* Table body placeholder */
.vvm-tableBody{ min-height: 52px; }


/* =========================================================
   v2 FIX: Sekabet header-topbar (red area) + menu icon sizing
   (scoped to .vvm-seka so it won't leak)
   ========================================================= */

.vvm-seka .vvm-seka-shell{ padding-top: 0 !important; }

/* Topbar (red rectangle area) */
.vvm-seka .vvm-seka-topRow{
  background-color: rgba(55, 119, 135, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 12px !important;
  margin-top: 14px !important;
  padding: 11px 15px !important;
  height: auto !important;
  min-height: 69px;
  white-space: nowrap;
}

/* Use logo size like the original */
.vvm-seka .vvm-seka-logoImg{
  height: 33px !important;
  width: auto !important;
  display: block;
}

/* Icon buttons (notification/phone/chat/gift etc.) */
.vvm-seka .vvm-seka-iconBtn{
  height: 40px !important;
  width: 40px !important;
  border: solid 1px rgba(255, 255, 255, .10) !important;
  border-radius: 12px !important;
  background: none !important;
  padding: 7px !important;
  box-shadow: none !important;
}
.vvm-seka .vvm-seka-iconBtn img{
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

/* Buttons: match Sekabet style */
.vvm-seka .vvm-seka-btn{
  border-radius: 12px !important;
  text-transform: capitalize;
  font-size: 14px;
  line-height: normal;
  box-shadow: none !important;
}

/* "Kripto Yatır" */
.vvm-seka .vvm-seka-btn--crypto{
  height: 40px !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  border: solid 1px #EE9A1B !important;
  background-color: #2d2a24 !important;
  color: #df9c3e !important;
  font-weight: 500;
  font-size: 15px;
}
.vvm-seka .vvm-seka-btn--crypto img{ width: 20px; height: 20px; }

/* Balance pill */
.vvm-seka .vvm-seka-balance{
  height: 45px !important;
  padding: 8px 12px 8px 8px !important;
  border-radius: 12px !important;
  border: none !important;
  background: #292F35 !important; /* amount_styles_header */
}
.vvm-seka .vvm-seka-balanceSymbol{
  width: 17px !important;
  height: 17px !important;
  background-color: #EE9A1B !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000 !important;
  font-size: 12px;
  font-weight: 700;
  margin-right: 5px !important;
}
.vvm-seka .vvm-seka-plusLink{ margin-left: 5px; display: inline-flex; align-items:center; justify-content:center; }
.vvm-seka .vvm-seka-plusIcon{
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
  background: #EE9A1B;
  position: relative;
}
.vvm-seka .vvm-seka-plusIcon:before,
.vvm-seka .vvm-seka-plusIcon:after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  background:#fff;
  border-radius: 1px;
}
.vvm-seka .vvm-seka-plusIcon:before{ width: 8px; height: 2px; }
.vvm-seka .vvm-seka-plusIcon:after{ width: 2px; height: 8px; }

/* Wallet + Language + User dropdown buttons */
.vvm-seka .vvm-seka-btn--wallet{
  height: 40px !important;
  padding: 8px 12px 12px 12px !important;
  background-color: #EE9A1B !important;
  color: #1C1B1F !important;
  border: solid 1px rgba(255, 255, 255, .40) !important;
}
.vvm-seka .vvm-seka-btn--lang,
.vvm-seka .vvm-seka-btn--user{
  height: 40px !important;
  padding: 8px 12px 12px 12px !important;
  background-color: #333546 !important;
  border: solid 1px rgba(255, 255, 255, .10) !important;
  color: #EE9A1B !important;
}

/* Guest buttons (Login/Register) – keep same style */
.vvm-seka .vvm-seka-btn--login{
  background-color: #333546 !important;
  border: solid 1px rgba(255, 255, 255, .10) !important;
  color: #EE9A1B !important;
}
.vvm-seka .vvm-seka-btn--register{
  background-color: #EE9A1B !important;
  border: solid 1px rgba(255, 255, 255, .40) !important;
  color: #1C1B1F !important;
}

/* Dropdown menu (wallet/user/lang) */
.vvm-seka .vvm-ddMenu{
  border-radius: 8px !important;
  background-color: #1a1d21 !important;
  border: solid 1px rgba(255, 255, 255, .10) !important;
  font-size: 14px;
  padding: 5px 0 !important;
}
.vvm-seka .vvm-ddItem{
  color: #fff !important;
  background: transparent !important;
  font-weight: 400;
  text-transform: capitalize;
}
.vvm-seka .vvm-ddItem:hover{
  color: #EE9A1B !important;
  background: transparent !important;
}
.vvm-seka .vvm-ddItem.is-active{
  color: #EE9A1B !important;
}

/* Fix 2nd row menu icons not being styled (circles huge issue) */
.vvm-seka .vvm-seka-menuLink{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #C7D2DC;
}
.vvm-seka .vvm-seka-menuIcon{
  width: 28px;
  height: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: #8d8e90;
  opacity: .9;
}
.vvm-seka .vvm-seka-menuIcon i{
  font-size: 22px; /* keep placeholders reasonable */
  line-height: 1;
}
.vvm-seka .vvm-seka-menuText{
  font-size: 13px;
  color: #C7D2DC;
  opacity: .95;
  text-align: center;
}

/* Plus circle (balance) */
.vvm-seka .vvm-seka-plus{
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EE9A1B;
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  text-decoration: none !important;
}
.vvm-seka .vvm-seka-plus:hover{ opacity: .85; }

/* Respect Elementor control: icon size */
.vvm-seka .vvm-seka-iconBtn img{
  width: var(--vvm-icon-size) !important;
  height: var(--vvm-icon-size) !important;
}
.vvm-seka .vvm-seka-btn--crypto img{
  width: calc(var(--vvm-icon-size) + 4px) !important;
  height: calc(var(--vvm-icon-size) + 4px) !important;
}

/* =========================================================
   Sekabet Desktop Topbar (kırmızı alan)
   ========================================================= */

.vvm-seka .header-topbar{
  background-color: rgba(55, 119, 135, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  margin-top: 14px;
  padding: 11px 15px;
  white-space: nowrap;
}

/* Minimal “bootstrap utility” set (scoped to this widget) */
.vvm-seka .header-topbar .row{display:flex;flex-wrap:nowrap;margin:0;--bs-gutter-x:0.75rem;--bs-gutter-y:0;}
/* If the theme includes Bootstrap, kill default column paddings to avoid inter-group gaps */
.vvm-seka .header-topbar .row > *{padding-left:0!important;padding-right:0!important;}
.vvm-seka .header-topbar .col{flex:1 0 0%;min-width:0;}
.vvm-seka .header-topbar .col-auto{flex:0 0 auto;width:auto;min-width:0;}
.vvm-seka .header-topbar .ms-auto{margin-left:auto!important;}
.vvm-seka .header-topbar .main_logo{flex:0 0 auto;}
.vvm-seka .header-topbar .header-topbar-balance{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex:0 0 auto;min-width:0;}
/* Balance grubu ile kullanıcı aksiyon grubu arasında kontrollü boşluk */
/* 3-group layout (Balance | Icons | Account) — group-to-group spacing = 60px */
.vvm-seka .header-topbar .header-topbar-right{display:flex;align-items:center;gap:60px!important;column-gap:60px!important;flex-wrap:nowrap;min-width:0;}

/* Daha dar ekranlarda grup arası boşluğu biraz azalt */
@media screen and (max-width:1200px){
  .vvm-seka .header-topbar .header-topbar-right{gap:60px;}
}
.vvm-seka .header-topbar .account-menu{
  display:flex;
  padding:0;
  justify-content:flex-end;
  align-items:center;
  flex-wrap:nowrap;
  margin-left:0;
}

.vvm-seka .vvm-user-actions__group{
  display: flex;
  align-items: center;
  gap: 8px; /* item gap */
  flex-wrap: nowrap;
}

/* Wrapper around group blocks */
.vvm-seka .vvm-user-actions{
  display:flex;
  align-items:center;
  gap:60px!important; /* spacing between icon-group and account-group */
  column-gap:60px!important;
  flex-wrap:nowrap;
}

/* GetLucky (clover) button lives in the balance block; make it identical to main-info framed buttons */
.vvm-seka .header-topbar .header-topbar-balance .getLuckyButton_header{
  height:40px;
  min-width:40px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  background:none!important;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:7px;
}
.vvm-seka .header-topbar .header-topbar-balance .getLuckyButton_header:hover{border-color:rgba(255,255,255,.20);}
.vvm-seka .header-topbar .header-topbar-balance .getLuckyButton_header .vvm-icon-media--img{background:transparent!important;}

/* Prevent the right column from stretching and creating large empty gaps between groups */
.vvm-seka .header-topbar .account-menu{
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  margin-left: 0;
}

/* Guest mode: container should take remaining space so its content can stick to the right */
.vvm-seka .header-topbar .vvm-topbar-guest{
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0;
  margin-left: auto !important;
  justify-content: flex-end !important;
}


/* We control spacing via flex gap in header-topbar-balance */
.vvm-seka .header-topbar-balance > .me-0,
.vvm-seka .header-topbar-balance > .me-1,
.vvm-seka .header-topbar-balance > .me-2,
.vvm-seka .header-topbar-balance > .me-3,
.vvm-seka .header-topbar-balance > .me-4,
.vvm-seka .header-topbar-balance > .me-sm-2{margin-right:0!important;}
/* Bootstrap utility margin overrides (we manage spacing via flex gap) */
.vvm-seka .vvm-user-actions .me-1,
.vvm-seka .vvm-user-actions .me-2,
.vvm-seka .vvm-user-actions .me-3,
.vvm-seka .vvm-user-actions .me-4{
  margin-right: 0 !important;
}

.vvm-seka .vvm-user-actions .ms-1,
.vvm-seka .vvm-user-actions .ms-2,
.vvm-seka .vvm-user-actions .ms-3,
.vvm-seka .vvm-user-actions .ms-4{
  margin-left: 0 !important;
}

/* Legacy styles had margin-left on these buttons; remove to avoid double spacing */
.vvm-seka .vvm-user-actions .btn-ntf,
.vvm-seka .vvm-user-actions .invite_friends-btn{
  margin-left: 0 !important;
}
.vvm-seka .header-topbar .justify-content-between{justify-content:space-between;}
.vvm-seka .header-topbar .justify-content-center{justify-content:center;}
.vvm-seka .header-topbar .align-items-center{align-items:center;}
.vvm-seka .header-topbar .d-flex{display:flex;}
.vvm-seka .header-topbar .d-none{display:none;}
.vvm-seka .header-topbar .d-sm-flex,
.vvm-seka .header-topbar .d-sm-block,
.vvm-seka .header-topbar .d-sm-none{display:none;}
@media (min-width:576px){
  .vvm-seka .header-topbar .d-sm-flex{display:flex!important;}
  .vvm-seka .header-topbar .d-sm-block{display:block!important;}
  .vvm-seka .header-topbar .d-sm-none{display:none!important;}
}
.vvm-seka .header-topbar .flex-row{flex-direction:row;}
.vvm-seka .header-topbar .flex-column{flex-direction:column;}
.vvm-seka .header-topbar .w-100{width:100%;}
.vvm-seka .header-topbar .me-0{margin-right:0;}
.vvm-seka .header-topbar .me-1{margin-right:.25rem;}
.vvm-seka .header-topbar .me-2{margin-right:.5rem;}
.vvm-seka .header-topbar .me-3{margin-right:1rem;}
.vvm-seka .header-topbar .me-4{margin-right:1.5rem;}
.vvm-seka .header-topbar .ms-2{margin-left:.5rem;}

.vvm-seka .header-topbar-content{width:100%;justify-content:flex-start;}

/* Buttons */
.vvm-seka .header-topbar .btn{
  border-radius: 12px;
  text-transform: capitalize;
  font-size: 14px;
  line-height: normal;
  border: 1px solid transparent;
  background: transparent;
  padding: 8px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  user-select: none;
}
.vvm-seka .header-topbar .btn:focus{outline:none;box-shadow:none;}

.vvm-seka .header-topbar .btn-primary{
  background-color: #EE9A1B;
  color: #1C1B1F;
  border: 1px solid rgba(255, 255, 255, .4);
}
.vvm-seka .header-topbar .btn-primary:hover{opacity:.9;}

.vvm-seka .header-topbar .btn-primary.btn-outline{
  font-weight: 500;
  font-size: 15px;
  border: 1px solid #EE9A1B;
  color: #000000;
  background-color: #EE9A1B;
  border-radius: 8px;
  padding: 8px;
}

.vvm-seka .header-topbar .btn-secondary{
  background-color: #333546;
  border: 1px solid rgba(255, 255, 255, .10);
  color: #EE9A1B;
}

/* Logo */
.vvm-seka .header-topbar .main_logo{margin-left:15px;padding:0;display:flex;gap:5px;align-items:center;}
.vvm-seka .header-topbar .main_logo a{display:flex;align-items:center;gap:8px;}
.vvm-seka .header-topbar .main_logo .main_logo-desktop{
  height:33px;width:150px;
  background-repeat:no-repeat;
  background-size:contain;
  background-position:left center;
}
.vvm-seka .header-topbar .main_logo .main_logo-mobile{
  height:22px;width:98px;
  background-repeat:no-repeat;
  background-size:contain;
  background-position:left center;
  display:none;
}

/* Balance area */
.vvm-seka .header-topbar .header-topbar-balance{display:flex;align-items:center;justify-content:flex-end;gap:8px;}
.vvm-seka .header-topbar .header-topbar-balance .header-topbar-amount{
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  height: 45px;
  padding: 8px 12px 8px 8px;
  display:flex;
  align-items:center;
}
.vvm-seka .header-topbar .header-topbar-balance .header-topbar-amount span{color:#fff;line-height:1.1em;}
.vvm-seka .header-topbar .header-topbar-currency-symbol{
  width:17px;height:17px;
  background-color:#EE9A1B;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#000;
  font-size:12px;
  font-weight:700;
  line-height:normal;
  margin-right:5px;
}

.vvm-seka .header-topbar .header-topbar-deposit-btn{color:#df9c3e!important;background-color:#2d2a24!important;}

.vvm-seka .header-topbar .amount_styles_header{border:none!important;background:#292F35;}

.vvm-seka .header-topbar .depRedirect{margin-left:5px;margin-bottom:1px;}
.vvm-seka .header-topbar .vvm-plus-circle{
  width:18px;height:18px;
  border-radius:50%;
  background:#EE9A1B;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:14px;
  line-height:1;
}

/* Account menu icons */
.vvm-seka .header-topbar .account-menu{
  display:flex;
  gap:8px;
  justify-content:flex-end;
  align-items:center;
  padding:0;
  margin-left:0;
  flex:0 0 auto; /* prevent a stretched column that creates huge inter-group gaps */
}
.vvm-seka .header-topbar .account-menu.vvm-user-actions{
  gap:60px!important;
  column-gap:60px!important;
}
.vvm-seka .header-topbar .account-menu .main-info{
  height:40px;min-width:40px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  background:none;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:7px;
  position:relative;
}
.vvm-seka .header-topbar .account-menu .main-info-language{
  min-width:60px;
  padding:7px 10px;
  font-weight:700;
  text-transform:uppercase;
  color:#EE9A1B!important;
}
.vvm-seka .header-topbar .account-menu .main-info-language::after{
  margin-left:6px;
  opacity:.6;
}
.vvm-seka .header-topbar .account-menu .main-info:hover{border-color:rgba(255,255,255,.20);}


.vvm-seka .header-topbar .vvm-icon-media--img{background:transparent;display:block;}
/* Icons sizing */
.vvm-seka .header-topbar .cryptoDepMobile img,
.vvm-seka .header-topbar .getLuckyButton_header img{width:20px;height:20px;}
.vvm-seka .header-topbar .main-info img{width:16px;height:16px;object-fit:contain;}

.vvm-seka .header-topbar .vvm-seka-menu-spacer{display:block;width:18px;}


/* Dropdowns */
.vvm-seka .header-topbar .dropdown{position:relative;}
.vvm-seka .header-topbar .dropdown-toggle{white-space:nowrap;}
.vvm-seka .header-topbar .dropdown-toggle::after{
  display:inline-block;
  margin-left:8px;
  vertical-align:.255em;
  content:"";
  border-top:.3em solid;
  border-right:.3em solid transparent;
  border-bottom:0;
  border-left:.3em solid transparent;
  opacity:.6;
}

.vvm-seka .header-topbar .dropdown-menu{
  border-radius:8px;
  background-color:#1a1d21;
  border:1px solid rgba(255,255,255,.10);
  font-size:14px;
  padding:5px 0;
  /* Fix unwanted list bullets / left indent inside dropdown menus */
  list-style:none!important;
  padding-left:0!important;
  margin-left:0!important;
}
.vvm-seka .header-topbar .dropdown-menu>li{
  list-style:none!important;
}
.vvm-seka .header-topbar .dropdown-menu>li::marker{
  content:"";
}

/* Also reset list markers on dropdown items (some browsers still render ::marker) */
.vvm-seka .header-topbar .dropdown-menu > li{
  list-style:none!important;
}
.vvm-seka .header-topbar .dropdown-menu > li::marker{
  content:"";
}

.vvm-seka .header-topbar .dropdown-item{
  display:block;
  width:100%;
  padding:8px 12px;
  color:#fff;
  text-decoration:none;
  white-space:nowrap;
}
.vvm-seka .header-topbar .dropdown-item:hover{color:#EE9A1B;background:transparent;}

.vvm-seka .header-topbar .header-topbar-username{max-width:105px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}

/* Badge dot */
.vvm-seka .header-topbar .user-navigation-msg-badge{
  border-radius:50%;
  background-color:red;
  border:1px solid red;
  width:9px;height:9px;
  position:absolute;
  display:none;
  top:7px;
  right:6.5px;
}

/* Menu icon placeholder fix */
.vvm-seka-menuIcon.is-empty{display:none;}
.vvm-seka .vvm-seka-menuLink{color:#bfc7cf !important;}
.vvm-seka .vvm-seka-menuLink:hover{color:#ffffff !important;}


/* ------------------------------------------------------------
   Bottom bar (Sekabet desktop menu)
   ------------------------------------------------------------ */
.vvm-seka .container.custom-container{
  max-width:1392px;
}

.vvm-seka .vvm-bottom-bar-container{
  padding-left:0;
  padding-right:0;
}

.vvm-seka .bottom_bar{
  margin:0;
  margin-top:7px;
  border:1px solid rgba(255, 255, 255, .1);
  border-radius:12px;
  display:flex;
  justify-content:space-between;
  list-style:none;
  padding:0 17px;
  overflow:auto;
  position:relative;
  z-index:1;
  background-color:#16181B;
}

.vvm-seka .bottom_bar li{
  position:relative;
}

.vvm-seka .bottom_bar a{
  text-decoration:none;
  color:#fff;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:12px 0;
  line-height:normal;
  transition:0.2s;
  min-width:75px;
  white-space:nowrap;
  opacity:.75;
  cursor:pointer;
}

.vvm-seka .bottom_bar a:hover{
  opacity:1;
}

.vvm-seka .bottom_bar a div{
  font-size:12px;
  margin-top:5px;
}

.vvm-seka .bottom_bar img,
.vvm-seka .bottom_bar svg,
.vvm-seka .bottom_bar i{
  width:24px;
  height:24px;
}

.vvm-seka .bottom_bar i{
  font-size:24px;
  line-height:24px;
  display:inline-block;
}

.vvm-seka .bottom_bar-icon--empty{
  width:24px;
  height:24px;
  display:inline-block;
}

.vvm-seka .bottom_bar li a::after{
  content:'';
  width:0;
  height:3px;
  background-color:#EE9A1B;
  position:absolute;
  left:2%;
  bottom:0;
  transform:scaleX(0);
  transition:transform 250ms ease-in-out;
  z-index:2;
}

.vvm-seka .bottom_bar li a:hover::after{
  width:96%;
  transform:scaleX(1);
}

.vvm-seka .bottom_bar li.active > a{
  opacity:1;
}

.vvm-seka .bottom_bar li.active > a::after{
  width:96%;
  transform:scaleX(1);
}

/* Optional: first item extra spacing (matches production CSS) */
.vvm-seka .bottom_bar li:first-child > a{
  padding-right:10px;
}

@media screen and (max-width: 768px){
  .vvm-seka .bottom_bar{display:none;}
}


/* === Icon theming (SVG + size) === */
.vvm-icon-media{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.vvm-icon-media--svg{
  width: var(--vvm-icon-size, 16px);
  height: var(--vvm-icon-size, 16px);
}
.vvm-icon-media--svg svg{
  width:100%;
  height:100%;
  display:block;
}
.vvm-icon-media--svg svg,
.vvm-icon-media--svg svg *{
  fill: var(--vvm-icon-color, #ffffff);
  stroke: var(--vvm-icon-color, #ffffff);
}
.header-topbar .main-info:hover .vvm-icon-media--svg svg,
.header-topbar .main-info:hover .vvm-icon-media--svg svg *,
.vvm-icon-media--svg:hover svg,
.vvm-icon-media--svg:hover svg *{
  fill: var(--vvm-icon-hover-color, #EE9A1B);
  stroke: var(--vvm-icon-hover-color, #EE9A1B);
}

/* ------------------------------------------------------------
   VVM tooltip (Bootstrap bağımsız) – Elementor edit modunda da çalışır
------------------------------------------------------------ */
.vvm-seka .vvm-tip{position:relative;overflow:visible;}
.vvm-seka .header-topbar,
.vvm-seka .vvm-seka-shell,
.vvm-seka .account-menu{overflow:visible;}

/* boş tooltip değerlerinde hiç gösterme */
.vvm-seka .vvm-tip[data-vvm-tooltip=""]::before,
.vvm-seka .vvm-tip[data-vvm-tooltip=""]::after{display:none !important;}

.vvm-seka .vvm-tip[data-vvm-tooltip]::after{
  content:attr(data-vvm-tooltip);
  position:absolute;
  left:50%;
  top:calc(100% + 10px);
  transform:translateX(-50%) translateY(-2px);
  background:#0b0d10;
  color:#ffffff;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:8px;
  padding:6px 10px;
  font-size:12px;
  line-height:1.1;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  z-index:99999;
  box-shadow:0 10px 30px rgba(0,0,0,0.45);
  transition:opacity .12s ease, transform .12s ease;
}

.vvm-seka .vvm-tip[data-vvm-tooltip]::before{
  content:"";
  position:absolute;
  left:50%;
  top:calc(100% + 4px);
  transform:translateX(-50%);
  width:0;height:0;
  border-left:6px solid transparent;
  border-right:6px solid transparent;
  border-bottom:6px solid #0b0d10;
  opacity:0;
  pointer-events:none;
  z-index:99999;
  transition:opacity .12s ease;
}

.vvm-seka .vvm-tip[data-vvm-tooltip]:hover::after,
.vvm-seka .vvm-tip[data-vvm-tooltip]:hover::before,
.vvm-seka .vvm-tip[data-vvm-tooltip]:focus-within::after,
.vvm-seka .vvm-tip[data-vvm-tooltip]:focus-within::before{
  opacity:1;
}

.vvm-seka .vvm-tip[data-vvm-tooltip]:hover::after,
.vvm-seka .vvm-tip[data-vvm-tooltip]:focus-within::after{
  transform:translateX(-50%) translateY(0);
}


/* Topbar announcement icon */
.vvm-seka-flip__logo img{display:block;object-fit:contain}

/* --- Icon visibility fix (PNG) ---
   Some pages/scripts were setting inline style="display:none" on the
   promotions link wrapper (.promotions-main-info-a), which hides the PNG.
   Force visibility.
*/
.vvm-seka .promotions-main-info-a{
  display: flex !important;
  align-items: center;
}

.vvm-seka .promotions-main-info-a .vvm-icon-media--img{
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
