/* ================================================================
   XSlot — Footer extras
   1) Accordion open/close for the four info sections
      (.info-item-wrapper_50ae7)
   2) Language switcher dropdown (.switcher-wrapper_baea8 -> lang menu)
   Loaded globally by header.php on every page.
================================================================ */

/* ---------- Accordion ---------- */
.info-item-wrapper_50ae7 .info-item-title-wrapper_30dc0 {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background .18s ease;
}
.info-item-wrapper_50ae7 .info-item-title-wrapper_30dc0:hover {
  background: #ffffff05;
}
.info-item-wrapper_50ae7 .arrow-icon_33852 {
  transition: transform .25s ease, color .18s ease;
}
.info-item-wrapper_50ae7.opened_62775 .arrow-icon_33852 {
  transform: rotate(180deg);
  color: #4ad3cc;
}
.info-item-wrapper_50ae7 > .accordion-body_x {
  display: none;
  border-bottom: 1px solid #3d4652;
}
.info-item-wrapper_50ae7.opened_62775 > .accordion-body_x {
  display: block;
  animation: xslotFooterFade .22s ease-out;
}
@keyframes xslotFooterFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Links inside the accordion */
.info-item-wrapper_50ae7 .links-list_40714 {
  list-style: none;
  margin: 0;
  padding: 8px 16px 16px 38px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-item-wrapper_50ae7 .links-list_40714 li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-item-wrapper_50ae7 .links-list_40714 li svg { flex-shrink: 0; color: #45505e; }
.info-item-wrapper_50ae7 .links-list_40714 a {
  color: #c4cbd4;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: color .15s ease;
}
.info-item-wrapper_50ae7 .links-list_40714 a:hover { color: #4ad3cc; }

/* App download cards inside accordion */
.info-item-wrapper_50ae7 .footer-app-links_804fc {
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-item-wrapper_50ae7 .app-download-link_4379e a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #2b323b;
  border: 1px solid #3d4652;
  border-radius: 10px;
  color: #c4cbd4;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.info-item-wrapper_50ae7 .app-download-link_4379e a:hover {
  background: #343c46;
  border-color: #4e5a6a;
}
.info-item-wrapper_50ae7 .app-download-link_4379e svg { flex-shrink: 0; color: #4ad3cc; }
.info-item-wrapper_50ae7 .app-download-link_4379e .title_8baa2 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
}
.info-item-wrapper_50ae7 .app-download-link_4379e .text_0a8c9 {
  color: #7e8da0;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  margin-top: 2px;
}

/* ---------- Language switcher (dropdown) ---------- */
.switcher_993a6 { position: relative; }
.switcher-wrapper_baea8 {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .18s ease, background .18s ease;
}
.switcher-wrapper_baea8:hover {
  border-color: #4e5a6a;
  background: #ffffff05;
}
.switcher_993a6 .arrow-icon_863b7 {
  transition: transform .22s ease;
}
.switcher_993a6.opened_62775 .arrow-icon_863b7 {
  transform: rotate(180deg);
}
.switcher_993a6 .lang-dropdown_x {
  list-style: none;
  margin: 6px 0 0;
  padding: 6px;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: calc(100% - 8px);
  background: #2b323b;
  border: 1px solid #3d4652;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
  z-index: 15;
  display: none;
}
.switcher_993a6.opened_62775 .lang-dropdown_x { display: block; }
.switcher_993a6 .lang-dropdown_x li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #dce0e5;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
  cursor: pointer;
}
.switcher_993a6 .lang-dropdown_x li a:hover {
  background: #343c46;
  color: #4ad3cc;
}
.switcher_993a6 .lang-dropdown_x .flag-emoji_x {
  font-size: 18px;
  line-height: 1;
}

/* ================================================================
   Header — logged-in variant  (matches reference oturum-acmis-header.php)
   The reference is minimal: 36x36 bell in a #45505e rounded square,
   36x36 raw avatar SVG, tight column with username/balance, and a
   small teal circle "+" for deposit. NO extra background boxes.
================================================================ */
.header-links_f5237 {
  align-items: center;
  gap: 4px;
  display: flex;
}
.header-links_f5237 .notification-wrapper_8b65f {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #45505e;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-links_f5237 .notification-wrapper_8b65f svg {
  color: #dce0e5;
  width: 10px;
  height: 12px;
}
.header-links_f5237 .notification-count-wrapper_0e129 {
  position: absolute;
  top: -2px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fe9900;
  border: 2px solid #2b323b;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-links_f5237 .account-side-wrapper_fc2fd {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}
.header-links_f5237 .avatar-image_14ae0 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-links_f5237 .avatar-image_14ae0 svg {
  min-width: 36px;
  width: 36px;
  height: 36px;
  /* Match the reference: muted gray user+lock glyph on the dark bar,
     not pure white. Explicit color beats the parent link's color:#fff. */
  color: #98a1aa;
}
.header-links_f5237 .right-side_ecd7e {
  display: flex;
  flex-direction: column;
}
.header-links_f5237 .username_5dcce {
  color: #dce0e5;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
}
.header-links_f5237 .balance-wrapper_fb7ca {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-links_f5237 .balance-value_9c785 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}
.header-links_f5237 .deposit-link_a0753 {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00afa5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Bonus / promo ticker (top of every logged-in page) ---------- */
.notification_content_ticker_4304b {
  color: #fff;
  background-color: #2b323b;
  border-bottom: 1px solid #3d4652;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 10px;
  display: flex;
}
.notification_content_ticker_4304b > svg { flex-shrink: 0; color: #fe9900; }
.content_header_ticker_80207 {
  justify-content: center;
  align-items: center;
  width: calc(100% - 60px);
  max-width: 500px;
  margin: 0;
  display: flex;
}
.header_ticker_37744 {
  white-space: nowrap;
  width: 100%;
  display: block;
  overflow: hidden;
}
.header_ticker_37744 span {
  padding-left: 100%;
  animation: xslotTickerScroll 10s linear infinite;
  display: inline-block;
}
.header_ticker_37744 p { margin: 0; font-weight: 700; font-size: 13px; }
.close-button_52acb {
  cursor: pointer;
  color: #999;
  margin: 0 10px;
  padding: 3px;
  background: none;
  border: 0;
}
.close-button_52acb:hover { color: #e5142e; }
.close-button_52acb svg { width: 10px; height: 10px; display: block; }
@keyframes xslotTickerScroll {
  0%   { transform: translate(0); }
  100% { transform: translate(-100%); }
}
.notification_content_ticker_4304b.dismissed { display: none; }

/* ================================================================
   Right-menu drawer — logged-in variant
   Replaces the "Welcome" block inside .right-menu-header_3bb33 with
   a user card + account nav + action-button grid. The existing
   Casino/Sports/Common navigation below is untouched.
================================================================ */
.right-menu_05444 .container_2b965 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.right-menu_05444 .user_f88da {
  background: #343c46;
  border: 1px solid #3d4652;
  border-radius: 10px;
  padding: 12px;
}
.right-menu_05444 .user-top_6920a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.right-menu_05444 .user-icon_fa80c {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4e5a6a;
  color: #c4cbd4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.right-menu_05444 .user-info_4616a {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.right-menu_05444 .user-name_6731a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
.right-menu_05444 .user-email_c1eb4 {
  color: #7e8da0;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
}
.right-menu_05444 .user-balance_2af5a { margin-top: 4px; }
.right-menu_05444 .balance-amount_60430 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
.right-menu_05444 .icon-wrapper_251da {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #191d22;
  border: 1px solid #3d4652;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.right-menu_05444 .icon-wrapper_251da .arrow-icon_f8187 { color: #c4cbd4; }
.right-menu_05444 .ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- Account link grid (3 across, per reference) ---------- */
.right-menu_05444 .list_c7ca5 {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.right-menu_05444 .list_c7ca5 .item_2dd03 {
  margin: 0;
  list-style: none;
  border-radius: 8px;
}
.right-menu_05444 .list_c7ca5 .link_07dbd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  background: #343c46;
  border: 1px solid #45505e;
  border-bottom-width: 2px;
  border-radius: 8px;
  color: #dce0e5;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  min-height: 82px;
  text-align: center;
  transition: background .15s ease;
  overflow: hidden;
}
.right-menu_05444 .list_c7ca5 .link_07dbd:hover { background: #3d4652; }
.right-menu_05444 .list_c7ca5 .item_2dd03.active_0d50f > .link_07dbd,
.right-menu_05444 .list_c7ca5 .item_2dd03.active_27426 > .link_07dbd {
  background: #3d4652;
}

/* Dark rounded icon "chip" behind the small colored SVG */
.right-menu_05444 .list_c7ca5 .icon-container_4d214 {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #23282f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg {
  width: 18px;
  height: 18px;
  display: block;
}
/* Icon accents — high specificity so they beat any earlier generic svg rule. */
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg.icon-settings_b916b       { color: #3eacff; }
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg.icon-deposit_d762e        { color: #38f580; }
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg.icon-withdraw_39527       { color: #ff6c47; }
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg.icon-tickets_0e949        { color: #ff5be1; }
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg.icon-promotion_code_43e8f { color: #a385ff; }
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg.icon-promotions_bb970     { color: #5aff60; }
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg.icon-notifications_b3964  { color: #4ad3cc; }
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg.icon-tournaments_f32b7    { color: #ffad33; }
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg.icon-live_tv_f5318        { color: #ff3d64; }
/* Fallback so any account-link icon without a specific accent still colors up */
.right-menu_05444 .list_c7ca5 .icon-container_4d214 svg:not([class*="icon-"]) { color: #dce0e5; }

.right-menu_05444 .list_c7ca5 .text_b76e3 {
  color: #dce0e5;
  font-size: 11px;
  font-weight: 600;
  line-height: 13px;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  padding: 0 2px;
}

/* ---------- Action buttons (Beni Ara / Kayıp Bonusu / Freespin's / Çıkış) ---------- */
.right-menu_05444 .btns-container_21a96 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.right-menu_05444 .btn-item_1b5ed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 10px;
  background: #3d4652;
  color: #dce0e5;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  transition: background .15s ease;
}
.right-menu_05444 .btn-item_1b5ed:hover { background: #45505e; }
.right-menu_05444 .btn-item_1b5ed[data-color="teal"]   svg { color: #4ad3cc; }
.right-menu_05444 .btn-item_1b5ed[data-color="orange"] svg { color: #fe9900; }
.right-menu_05444 .btn-item_1b5ed[data-color="red"]    svg { color: #ff5733; }
.right-menu_05444 .btn-item_1b5ed[data-color="logout"] svg { color: #4ad3cc; }
.right-menu_05444 .btn-item_1b5ed span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.right-menu_05444 .btn-item_1b5ed.logout-btn_x {
  grid-column: 1 / -1;
  color: #dce0e5;
}
.right-menu_05444 .btn-item_1b5ed.logout-btn_x:hover { color: #fff; }
