/* ===========================================================
   L2 Emerge — Laravel additions (NEW only).
   Original styles in style.css / style_pages.css stay intact.
   This file extends the theme: account dropdown (logged in),
   shop, rankings, settings, dashboard polish.
   =========================================================== */

/* ---------- Server card — BETA LIVE badge ---------- */
.srv_card_live_badge {
  position: absolute;
  top: -10px;
  right: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4b53d, #c98a23);
  border: 1px solid #e0a030;
  color: #fff;
  font: 800 10px/1 'Onest', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(200, 138, 35, .55);
}

.srv_live_dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(200, 138, 35, .7);
  animation: live_pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live_pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 138, 35, .7); }
  70%  { box-shadow: 0 0 0 6px rgba(200, 138, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 138, 35, 0); }
}

/* ---------- servers_wrap needs position:relative for the badge ---------- */
.servers_wrap { position: relative; }

/* ---------- Dimmed server cards (not yet open) ---------- */
.servers_wrap_dimmed {
  opacity: 0.5;
  filter: saturate(0.6);
  pointer-events: none;
}

/* ---------- Logged-in account dropdown ---------- */
.account_wrap_logged {
  min-width: 280px !important;
  padding: 10px !important;
  gap: 0 !important;
}

.account_dd_master {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: #1f1b18;
  border: 1px solid #3C342F;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
}
.account_dd_master_label {
  font: 500 11px/1 'Onest', sans-serif;
  color: #9c8b7a;
  text-transform: none;
}
.account_dd_master_info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  gap: 4px;
}
.account_dd_master_email {
  font: 500 13px/1.2 'Onest', sans-serif;
  color: #f1eae1;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account_dd_master_email_row {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
}
.account_email_toggle {
  background: transparent;
  border: 0;
  padding: 2px;
  margin: 0;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #9c8b7a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.account_email_toggle svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}
.account_email_toggle:hover { color: #e3b975; background: rgba(255,255,255,.04); }
.account_email_toggle:focus-visible { outline: 2px solid #e3b975; outline-offset: 2px; }
.account_dd_master_arrow {
  color: #9c8b7a;
  display: inline-flex;
  text-decoration: none;
  flex: 0 0 auto;
  transition: color .15s;
}
.account_dd_master_arrow:hover { color: #e3b975; }
.account_dd_master > div:first-child {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}

.account_dd_link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 6px;
  color: #cfc4b6;
  text-decoration: none;
  font: 500 13px/1 'Onest', sans-serif;
  transition: background .15s, color .15s;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.account_dd_link svg { color: #9c8b7a; flex-shrink: 0; }
.account_dd_link span { flex: 1; }
.account_dd_link:hover { background: #2e2925; color: #fff; }
.account_dd_link:hover svg { color: #e3b975; }

.account_dd_badge {
  font: 600 12px/1 'Onest', sans-serif;
  color: #66c46b;
  flex: none !important;
}

.account_dd_sep {
  height: 1px;
  background: #3C342F;
  margin: 6px 4px;
  width: calc(100% - 8px);
}

.account_dd_logout { color: #cfc4b6; }
.account_dd_logout svg { color: #b07b5a; }
.account_dd_logout_form { width: 100%; margin: 0; padding: 0; }


/* ---------- Buttons used across new pages ---------- */
.btn_outline_gold {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #6c5635;
  background: transparent;
  color: #e3b975;
  font: 600 13px/1 'Onest', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.btn_outline_gold:hover { background: #2a2421; border-color: #b08850; color: #fff; }

.btn_solid_gold {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #b08850;
  background: linear-gradient(180deg, #d8a665, #a07535);
  color: #1a120a;
  font: 400 13px/1 'Onest', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: filter .15s;
}
.btn_solid_gold:hover { filter: brightness(1.08); }
.btn_solid_gold:disabled { opacity: .55; cursor: not-allowed; }

/* ---------- Shop ---------- */
.shop_layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 24px 0 60px;
}
.shop_sidebar {
  background: #1f1b18;
  border: 1px solid #3C342F;
  border-radius: 12px;
  padding: 16px;
  height: fit-content;
  position: sticky;
  top: 80px;
}
.shop_sidebar_title {
  font: 700 12px/1 'Onest', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9c8b7a;
  margin: 0 0 10px 4px;
}
.shop_cat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font: 500 13px 'Onest', sans-serif;
  color: #cfc4b6;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.shop_cat:hover { background: #2a2522; color: #fff; }
.shop_cat.active { background: #2e2925; color: #e3b975; border: 1px solid #6c5635; }

.shop_main { min-width: 0; }
.shop_topbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}
.shop_server_tabs {
  display: flex; gap: 6px;
  background: #1f1b18;
  border: 1px solid #3C342F;
  border-radius: 8px;
  padding: 4px;
}
.shop_server_tab {
  padding: 8px 14px;
  font: 600 12px 'Onest', sans-serif;
  color: #9c8b7a;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.shop_server_tab.active { background: #2e2925; color: #e3b975; }
.shop_search_input {
  background: #1f1b18;
  border: 1px solid #3C342F;
  color: #f1eae1;
  padding: 9px 14px;
  border-radius: 8px;
  font: 400 13px 'Onest', sans-serif;
  min-width: 220px;
}
.shop_search_input:focus { outline: none; border-color: #b08850; }

.shop_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.shop_card {
  background: #1f1b18;
  border: 1px solid #3C342F;
  border-radius: 12px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s, border-color .15s;
}
.shop_card:hover { transform: translateY(-2px); border-color: #6c5635; }
.shop_card_img {
  width: 100%; aspect-ratio: 1/1;
  background: #15110e;
  border: 1px solid #2a2421;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.shop_card_img img { max-width: 70%; max-height: 70%; object-fit: contain; }
.shop_card_name { font: 600 14px/1.3 'Onest', sans-serif; color: #f1eae1; min-height: 36px; }
.shop_card_meta { font: 500 11px 'Onest', sans-serif; color: #9c8b7a; text-transform: uppercase; letter-spacing: .04em; }
.shop_card_footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px; border-top: 1px solid #2a2421;
}
.shop_card_price { font: 700 14px 'Onest', sans-serif; color: #e3b975; }
.shop_card_price small { color: #9c8b7a; font-weight: 500; }


/* ---------- Rankings ---------- */
.ranking_layout { padding: 24px 0 60px; }
.ranking_header {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px;
}
.ranking_title { font: 700 22px/1.2 'Onest', sans-serif; color: #f1eae1; margin: 0; }
.ranking_filters {
  display: flex; flex-wrap: wrap; gap: 6px;
  background: #1f1b18;
  border: 1px solid #3C342F;
  border-radius: 8px;
  padding: 4px;
}
.ranking_filter {
  padding: 8px 14px;
  font: 600 12px 'Onest', sans-serif;
  color: #9c8b7a;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.ranking_filter.active { background: #2e2925; color: #e3b975; }

.ranking_table_wrap {
  background: #1f1b18;
  border: 1px solid #3C342F;
  border-radius: 12px;
  overflow: hidden;
}
.ranking_table { width: 100%; border-collapse: collapse; }
.ranking_table thead th {
  text-align: center;
  font: 700 11px/1 'Onest', sans-serif;
  color: #9c8b7a;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 16px;
  background: #15110e;
  border-bottom: 1px solid #3C342F;
}
.ranking_table tbody td {
  padding: 14px 16px;
  font: 500 13px/1.2 'Onest', sans-serif;
  color: #cfc4b6;
  border-bottom: 1px solid #2a2421;
}
.ranking_table tbody tr:last-child td { border-bottom: 0; }
.ranking_table tbody tr:hover td { background: #221d1a; color: #fff; }
.ranking_rank { font: 700 13px 'Onest', sans-serif; color: #e3b975; width: 60px; }
.ranking_rank_top { color: #ffd07a; }
.ranking_name_col { color: #f1eae1; font-weight: 600; }
.ranking_status_dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #555; margin-right: 6px; vertical-align: middle; }
.ranking_status_dot.online { background: #66c46b; box-shadow: 0 0 6px rgba(102,196,107,.6); }


/* ---------- Settings page ---------- */
.settings_layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 24px 0 60px;
}
.settings_sidebar {
  background: #1f1b18;
  border: 1px solid #3C342F;
  border-radius: 12px;
  padding: 12px;
  height: fit-content;
  position: sticky;
  top: 80px;
}
.settings_sidebar_link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font: 500 13px 'Onest', sans-serif;
  color: #cfc4b6;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.settings_sidebar_link:hover { background: #2a2522; color: #fff; }
.settings_sidebar_link.active { background: #2e2925; color: #e3b975; }

.settings_card {
  background: #1f1b18;
  border: 1px solid #3C342F;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}
.settings_card_title {
  font: 700 16px/1.3 'Onest', sans-serif;
  color: #f1eae1;
  margin: 0 0 6px;
}
.settings_card_subtitle {
  font: 400 13px/1.5 'Onest', sans-serif;
  color: #9c8b7a;
  margin: 0 0 18px;
}
.settings_form_grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.settings_form_full { grid-column: 1 / -1; }
.settings_actions {
  display: flex; justify-content: flex-end; gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #2a2421;
}

.settings_2fa_status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font: 600 11px 'Onest', sans-serif;
  text-transform: uppercase; letter-spacing: .05em;
}
.settings_2fa_on  { background: rgba(102,196,107,.12); color: #66c46b; border: 1px solid rgba(102,196,107,.3); }
.settings_2fa_off { background: rgba(176,123,90,.12); color: #d49671; border: 1px solid rgba(176,123,90,.3); }


/* ---------- Buy coins / PayPal modal ---------- */
.coin_packs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.coin_pack {
  background: #15110e;
  border: 1px solid #3C342F;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, transform .15s;
}
.coin_pack:hover { border-color: #b08850; transform: translateY(-2px); }
.coin_pack.selected { border-color: #e3b975; background: #1f1a16; }
.coin_pack_amount {
  font: 700 22px 'Onest', sans-serif;
  color: #e3b975;
}
.coin_pack_label {
  font: 500 11px 'Onest', sans-serif;
  color: #9c8b7a;
  text-transform: uppercase; letter-spacing: .05em;
  margin-top: 4px;
}
.coin_pack_price {
  margin-top: 8px;
  font: 600 14px 'Onest', sans-serif;
  color: #f1eae1;
}
.coin_pack_bonus {
  margin-top: 6px;
  font: 600 10px 'Onest', sans-serif;
  color: #66c46b;
  text-transform: uppercase;
}
#paypal-button-container { margin-top: 18px; }


/* ---------- Responsive helpers ---------- */
@media (max-width: 900px) {
  .shop_layout, .settings_layout { grid-template-columns: 1fr; }
  .shop_sidebar, .settings_sidebar { position: static; }
  .settings_form_grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ranking_table thead th, .ranking_table tbody td { padding: 10px 8px; font-size: 12px; }
  .ranking_table .col_hide_mobile { display: none; }
}

/* ===== Static / informational pages ===== */
.static_page_wrap{max-width:900px;margin:0 auto;padding:100px 24px 20px;color:#CCC3BF;font-family:'Onest',sans-serif;text-align:left;}
.static_page_header{display:flex;flex-direction:column;gap:8px;margin-bottom:40px;}
.static_page_title{font-size:42px;font-weight:800;color:#FFF;line-height:1.1;}
.static_page_sub{font-size:16px;font-weight:400;color:#9A877E;}
.static_page_body{font-size:15px;line-height:1.7;color:#B3A59E;}

.legal_card{background:#26211E;border:1px solid #3C342F;border-radius:14px;padding:40px 48px;}

/* Legal page two-column layout (content + right sidebar) */
.static_page_wrap.legal_layout{max-width:1200px;padding-top:0;display:grid;grid-template-columns:minmax(0,1fr) 280px;gap:32px;align-items:flex-start;}
.legal_main{min-width:0;}
.legal_sidebar{position:sticky;top:100px;}
.legal_sidebar_card{background:#26211E;border:1px solid #3C342F;border-radius:14px;padding:28px 24px;}
.legal_sidebar_title{font-size:20px;font-weight:800;color:#FFF;margin-bottom:18px;}
.legal_sidebar_nav{display:flex;flex-direction:column;gap:4px;}
.legal_sidebar_link{display:block;padding:10px 12px;border-radius:8px;font-size:14px;font-weight:500;color:#B3A59E;text-decoration:none;transition:.2s ease;}
.legal_sidebar_link:hover{color:#FFF;background:rgba(255,255,255,.04);}
.legal_sidebar_link.is-active{color:#FAC459;background:rgba(250,196,89,.08);font-weight:700;}

.static_card_grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;margin-bottom:32px;}
.static_card_grid.two_cols{grid-template-columns:repeat(auto-fit,minmax(360px,1fr));}
.static_card{display:flex;flex-direction:column;gap:10px;padding:24px;background:#26211E;border:1px solid #3C342F;border-radius:14px;transition:.3s ease;text-decoration:none;color:#CCC3BF;}
.static_card:hover{border-color:#FAC459;transform:translateY(-2px);}
.static_card_icon{width:42px;height:42px;border-radius:12px;background:#3C342F;display:flex;align-items:center;justify-content:center;font-size:20px;color:#FAC459;}
.static_card_title{font-size:17px;font-weight:700;color:#FFF;}
.static_card_text{font-size:13.5px;color:#B3A59E;line-height:1.6;}
.static_card_link{font-size:12.5px;color:#FAC459;font-weight:600;text-transform:uppercase;letter-spacing:.5px;margin-top:auto;}

.static_news_grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:20px;}
.static_news_card{display:flex;flex-direction:column;gap:8px;padding:24px;background:#26211E;border:1px solid #3C342F;border-radius:14px;}
.static_news_date{font-size:11.5px;font-weight:600;color:#FAC459;text-transform:uppercase;letter-spacing:.5px;}
.static_news_title{font-size:18px;font-weight:700;color:#FFF;line-height:1.3;}
.static_news_excerpt{font-size:13.5px;color:#B3A59E;line-height:1.6;}

.static_callout{display:flex;flex-direction:column;gap:10px;padding:28px;background:rgba(250,196,89,.06);border:1px solid rgba(250,196,89,.25);border-radius:14px;margin-top:24px;}
.static_callout_title{font-size:17px;font-weight:700;color:#FAC459;}
.static_callout_text{font-size:14px;color:#CCC3BF;line-height:1.6;}

.static_legal{font-size:14.5px;line-height:1.75;color:#B3A59E;text-align:left;}
.static_legal h2{font-size:20px;font-weight:700;color:#FFF;margin:32px 0 10px;}
.static_legal h2:first-of-type{margin-top:0;}
.static_legal h3{font-size:17px;font-weight:600;color:#FFF;margin:24px 0 8px;}
.static_legal p{margin-bottom:14px;}
.static_legal ul{padding-left:20px;margin-bottom:14px;list-style:disc;}
.static_legal ul li{margin-bottom:6px;}
.static_legal ol{padding-left:20px;margin-bottom:14px;list-style:decimal;}
.static_legal ol li{margin-bottom:6px;}
.static_legal code{font-family:monospace;font-size:13px;background:#1C1816;color:#FAC459;padding:2px 5px;border-radius:3px;border:1px solid #3C342F;}
.static_legal a{color:#FAC459;text-decoration:none;}
.static_legal a:hover{text-decoration:underline;}

@media only screen and (max-width:1024px){
  .static_page_wrap.legal_layout{grid-template-columns:1fr;}
  .legal_sidebar{position:static;order:-1;}
  .legal_sidebar_card{padding:18px 20px;}
}

@media only screen and (max-width:768px){
  .static_page_wrap{padding:80px 16px 60px;}
  .static_page_title{font-size:30px;}
  .legal_card{padding:24px 20px;}
}

/* ===== Flash alerts ===== */
.alert_flash{position:fixed;top:80px;right:24px;max-width:380px;padding:14px 18px;border-radius:12px;font-size:14px;z-index:9999;box-shadow:0 8px 24px rgba(0,0,0,.4);}
.alert_success{background:rgba(72,187,120,.12);border:1px solid rgba(72,187,120,.4);color:#9AE6B4;}
.alert_error{background:rgba(229,62,62,.12);border:1px solid rgba(229,62,62,.4);color:#FEB2B2;}

/* ---------- Streamers page ---------- */
.streamers_page { width:100%; max-width: 1200px; margin: 0 auto; padding: 24px 24px 80px; font-family: 'Onest', sans-serif; }

/* CTA banner */
.streamers_cta {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  border-radius: 14px;
  background: linear-gradient(95deg, #6c3fb5 0%, #9148ff 55%, #6c3fb5 100%);
  box-shadow: 0 6px 20px -8px rgba(145,72,255,.55), inset 0 1px 0 rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.streamers_cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 12% 50%, rgba(255,255,255,.18), transparent 45%);
  pointer-events: none;
}
.streamers_cta_icon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative; z-index: 1;
}
.streamers_cta_text { flex: 1 1 auto; min-width: 0; position: relative; z-index: 1; }
.streamers_cta_title { font: 700 18px/1.2 'Onest', sans-serif; color: #fff; }
.streamers_cta_sub { font: 400 13px/1.4 'Onest', sans-serif; color: rgba(255,255,255,.85); margin-top: 4px; }
.streamers_cta_btn {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  background: #f4b53d;
  color: #1a120a;
  font: 400 13px/1 'Onest', sans-serif;
  border: 1px solid rgba(0,0,0,.15);
  position: relative; z-index: 1;
  transition: filter .15s, transform .15s;
}
.streamers_cta:hover .streamers_cta_btn { filter: brightness(1.06); transform: translateY(-1px); }

/* Panel */
.streamers_panel {
  background: #1f1b18;
  border: 1px solid #3C342F;
  border-radius: 14px;
  padding: 22px 22px 26px;
}
.streamers_panel_title {
  font: 700 22px/1.2 'Onest', sans-serif;
  color: #f1eae1;
  margin: 0 0 18px;
}

/* Tab strips */
.streamers_tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.streamers_tabs_servers { margin-bottom: 14px; }

.streamers_tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: #2a2421;
  border: 1px solid #3C342F;
  border-radius: 10px;
  color: #cfc4b6;
  font: 400 13px/1 'Onest', sans-serif;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.streamers_tab:hover { background: #322b27; color: #fff; }
.streamers_tab.is_active {
  background:  #f4b53d;
  color: #1a120a;
  border-color: #b08850;
}
.streamers_tab_server.is_active { box-shadow: 0 4px 12px -4px rgba(244,181,61,.5); }

/* Disabled-look tab (e.g. dimmer for inactive servers like in screenshot) */
.streamers_tab_dim { opacity: .55; }

/* Sub bar with platform tabs + materials button */
.streamers_subbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  background: #15110e;
  border: 1px solid #2a2421;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 18px;
}
.streamers_tabs_platform .streamers_tab {
  background: transparent;
  border: 1px solid transparent;
  padding: 8px 14px;
  border-radius: 8px;
  color: #b9ad9c;
}
.streamers_tabs_platform .streamers_tab:hover { background: #221d1a; color: #fff; }
.streamers_tabs_platform .streamers_tab.is_active {
  background: #2a2421;
  color: #fff;
  border-color: #3C342F;
  box-shadow: none;
}

.streamers_tab_icon { display: inline-block; width: 14px; height: 14px; background: currentColor; mask-position: center; mask-repeat: no-repeat; mask-size: contain; -webkit-mask-position: center; -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain; }
.streamers_icon_twitch  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11.571 4.714h1.715v5.143H11.57zm4.715 0H18v5.143h-1.714zM6 0L1.714 4.286v15.428h5.143V24l4.286-4.286h3.428L22.286 12V0zm14.571 11.143l-3.428 3.428h-3.429l-3 3v-3H6.857V1.714h13.714z' fill='black'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11.571 4.714h1.715v5.143H11.57zm4.715 0H18v5.143h-1.714zM6 0L1.714 4.286v15.428h5.143V24l4.286-4.286h3.428L22.286 12V0zm14.571 11.143l-3.428 3.428h-3.429l-3 3v-3H6.857V1.714h13.714z' fill='black'/></svg>"); }
.streamers_icon_youtube { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.6 12 3.6 12 3.6s-7.5 0-9.4.5A3 3 0 0 0 .5 6.2 31 31 0 0 0 0 12a31 31 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.5 9.4.5 9.4.5s7.5 0 9.4-.5a3 3 0 0 0 2.1-2.1A31 31 0 0 0 24 12a31 31 0 0 0-.5-5.8zM9.6 15.6V8.4l6.3 3.6z' fill='black'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.6 12 3.6 12 3.6s-7.5 0-9.4.5A3 3 0 0 0 .5 6.2 31 31 0 0 0 0 12a31 31 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.5 9.4.5 9.4.5s7.5 0 9.4-.5a3 3 0 0 0 2.1-2.1A31 31 0 0 0 24 12a31 31 0 0 0-.5-5.8zM9.6 15.6V8.4l6.3 3.6z' fill='black'/></svg>"); }
.streamers_icon_trovo   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='9' fill='black'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='9' fill='black'/></svg>"); }
.streamers_icon_tiktok  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M16 3v3a4 4 0 0 0 4 4v3a7 7 0 0 1-4-1v6a6 6 0 1 1-6-6v3a3 3 0 1 0 3 3V3z' fill='black'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M16 3v3a4 4 0 0 0 4 4v3a7 7 0 0 1-4-1v6a6 6 0 1 1-6-6v3a3 3 0 1 0 3 3V3z' fill='black'/></svg>"); }
.streamers_icon_kick    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 3h5v6h2V6h2V3h5v6h-2v3h2v6h-5v-3h-2v-3H8v6H3z' fill='black'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 3h5v6h2V6h2V3h5v6h-2v3h2v6h-5v-3h-2v-3H8v6H3z' fill='black'/></svg>"); }

.streamers_materials_btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: #2a2421;
  border: 1px solid #3C342F;
  border-radius: 8px;
  color: #e3b975;
  font: 600 12.5px/1 'Onest', sans-serif;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.streamers_materials_btn:hover { border-color: #b08850; color: #fff; }

/* Streams grid */
.streamers_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  background: #15110e;
  border: 1px solid #2a2421;
  border-radius: 12px;
  padding: 14px;
  min-height: 240px;
}
.streamers_card {
  background: #0f0c0a;
  border: 1px solid #2a2421;
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s, border-color .15s;
}
.streamers_card:hover { border-color: #6c5635; }
.streamers_card_thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: #000 center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.streamers_thumb_1 { background-image: linear-gradient(135deg, #1a1310 0%, #2c1d14 100%); }
.streamers_thumb_2 { background-image: linear-gradient(135deg, #181014 0%, #2c1424 100%); }
.streamers_thumb_3 { background-image: linear-gradient(135deg, #10181a 0%, #14242c 100%); }

.streamers_live_badge {
  position: absolute; top: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px;
  background: #ed1f3a;
  color: #fff;
  font: 700 10.5px/1 'Onest', sans-serif;
  border-radius: 4px;
  letter-spacing: .04em;
}
.streamers_live_dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: streamers_pulse 1.4s infinite;
}
@keyframes streamers_pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.streamers_platform_badge {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 8px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font: 600 10.5px/1 'Onest', sans-serif;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.1);
}
.streamers_platform_twitch  { background: #9146ff; border-color: rgba(255,255,255,.18); }
.streamers_platform_youtube { background: #ff0000; border-color: rgba(255,255,255,.18); }
.streamers_platform_kick    { background: #53fc18; color: #0a0a0a; border-color: rgba(0,0,0,.2); }
.streamers_platform_tiktok  { background: #000; border-color: rgba(255,255,255,.25); }
.streamers_platform_trovo   { background: #19d459; color: #0a0a0a; border-color: rgba(0,0,0,.2); }

.streamers_card_overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .15s;
}
.streamers_card:hover .streamers_card_overlay { opacity: 1; }

.streamers_card_info { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; }
.streamers_card_identity { display: flex; align-items: center; gap: 8px; min-width: 0; }
.streamers_card_avatar {
  width: 28px; height: 28px; border-radius: 50%;
  flex: 0 0 28px;
  display: block;
  object-fit: cover;
  background: #2a2421;
  border: 1px solid rgba(227,185,117,.35);
}
.streamers_card_name { font: 700 14px/1.2 'Onest', sans-serif; color: #fff; }
.streamers_card_desc { text-align: left; font: 400 12.5px/1.4 'Onest', sans-serif; color: #9c8b7a; min-height: 34px; }
.streamers_card_meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-top: 4px;
  font: 600 11px 'Onest', sans-serif;
}
.streamers_viewers { display: inline-flex; align-items: center; gap: 6px; color: #ed4257; }
.streamers_server_tag {
  padding: 3px 8px;
  background: #2a2421;
  color: #e3b975;
  border-radius: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}

.streamers_empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: #9c8b7a;
  font: 500 14px 'Onest', sans-serif;
}

@media (max-width: 720px) {
  .streamers_cta { flex-direction: column; align-items: flex-start; }
  .streamers_cta_btn { align-self: stretch; justify-content: center; }
  .streamers_subbar { flex-direction: column; align-items: stretch; }
  .streamers_materials_btn { justify-content: center; }
}