/* === JetonShop UI overrides (load LAST after style.css) === */

/* 1) Modal: hide bonus extra-jeton text in checkout package card */
.modal-pkg-bonus,
#modalPackageCard .modal-pkg-bonus,
.checkout-modal-box .modal-pkg-bonus {
  display: none !important;
}

/* 2) Language switcher: hide duplicate currency symbol (functionality kept) */
.jcb-lng-btn .jcb-lng-cur,
.jcb-lng-cur {
  display: none !important;
}

/* 3) Replace flag emoji in lang switcher with a FontAwesome globe (language) icon */
.jcb-lng-btn .jcb-lng-flag {
  font-size: 0 !important;          /* hide emoji */
  width: 26px !important;
  height: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}
.jcb-lng-btn .jcb-lng-flag::before {
  content: "\f0ac";                  /* fa-globe */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  display: inline-block;
}
/* also enlarge the simple language icon used in mobile header */
.mobile-lang-icon-simple {
  font-size: 0 !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.mobile-lang-icon-simple::before {
  content: "\f0ac";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #ffffff;
}

/* ===== Mobile nav: half-width slide-in from left (not full width) ===== */
@media (max-width: 768px) {
  .mobile-nav,
  .top-bar + .mobile-nav,
  body .mobile-nav,
  html body .mobile-nav {
    position: fixed !important;
    top: 70px !important;
    bottom: 0 !important;
    left: 0 !important;
    right: auto !important;
    inset-inline-end: auto !important;
    width: 70vw !important;
    max-width: 320px !important;
    min-width: 240px !important;
    height: auto !important;
    max-height: calc(100vh - 70px) !important;
    overflow-y: auto !important;
    background: linear-gradient(180deg, #0f172a, #060818) !important;
    border-right: 2px solid rgba(245, 158, 11, 0.35) !important;
    border-bottom: 0 !important;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.6) !important;
    padding: 18px 14px !important;
    transform: translateX(-110%) !important;
    transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.3, 1) !important;
    display: block !important;
    visibility: visible !important;
    z-index: 9998 !important;
  }
  .mobile-nav.active,
  body .mobile-nav.active,
  html body .mobile-nav.active {
    transform: translateX(0) !important;
  }
  /* Dim backdrop while menu is open */
  .mobile-nav.active::after {
    content: "";
    position: fixed;
    top: 70px;
    left: 100%;
    width: 200vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
    pointer-events: none;
  }
}
@media (max-width: 480px) {
  .mobile-nav,
  body .mobile-nav,
  html body .mobile-nav {
    top: 62px !important;
    max-height: calc(100vh - 62px) !important;
    width: 76vw !important;
  }
}

/* ===== Phone input fix (services/payment_page.php) ===== */
.phone-cc-wrap { position: relative !important; display: flex !important; gap: 8px !important; align-items: stretch !important; flex-wrap: nowrap !important; }
.phone-cc-wrap #phoneCC { flex: 0 0 auto !important; width: auto !important; min-width: 92px !important; max-width: 110px !important; }
.phone-cc-wrap .phone-num-box {
  position: relative !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: block !important;
}
.phone-cc-wrap .phone-num-box input,
.phone-cc-wrap .phone-num-box input.m,
.phone-cc-wrap .phone-num-box #phoneNumber {
  width: 100% !important;
  pointer-events: auto !important;
  -webkit-user-select: text !important;
  user-select: text !important;
  position: relative !important;
  z-index: 1 !important;
  padding-right: 40px !important;
}
.phone-cc-wrap .phone-num-box .validation-icon,
.input-wrapper .validation-icon,
.f .validation-icon {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
  z-index: 2 !important;
  opacity: 0;
  transition: opacity 0.2s;
}
.phone-cc-wrap .phone-num-box .validation-icon.valid,
.input-wrapper .validation-icon.valid,
.f .validation-icon.valid {
  opacity: 1;
  color: #22c55e;
}
/* Make sure inputs are always interactive */
input, select, textarea {
  pointer-events: auto !important;
  touch-action: manipulation;
}
@media (max-width: 768px) {
  .phone-cc-wrap #phoneCC { max-width: 76px !important; min-width: 76px !important; font-size: 13px !important; padding-left: 6px !important; padding-right: 4px !important; }
  .phone-cc-wrap .phone-num-box input { padding-right: 36px !important; }
}

/* 4) Mobile: enlarge package footer price (.package-foot-price) */
@media (max-width: 768px) {
  .package-foot-price,
  .package .package-foot-price {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.3px;
  }
}
@media (max-width: 480px) {
  .package-foot-price,
  .package .package-foot-price {
    font-size: 1.4rem !important;
    line-height: 1.1 !important;
  }
}
@media (max-width: 360px) {
  .package-foot-price,
  .package .package-foot-price {
    font-size: 1.25rem !important;
  }
}

/* === Modal username input fix (mobil yazılamama sorunu) === */
.checkout-modal-box .search-box,
#modalSearchBox.search-box {
  display: flex !important;
  gap: 8px !important;
  align-items: stretch !important;
  width: 100% !important;
  margin: 0 0 14px 0 !important;
}
.checkout-modal-box .search-input,
#modalUsernameInput {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 12px 14px !important;
  font-size: 16px !important;            /* iOS auto-zoom önler */
  line-height: 1.3 !important;
  background: #334155 !important;
  border: 1px solid #5a5a5a !important;
  border-radius: 10px !important;
  color: #fff !important;
  pointer-events: auto !important;
  -webkit-user-select: text !important;
  user-select: text !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  position: relative !important;
  z-index: 1 !important;
}
.checkout-modal-box .search-input:focus,
#modalUsernameInput:focus {
  outline: none !important;
  border-color: #fb923c !important;
  box-shadow: 0 0 0 3px rgba(251,146,60,.18) !important;
}
.checkout-modal-box .search-btn,
#modalSearchBtn {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  white-space: nowrap !important;
  pointer-events: auto !important;
}
@media (max-width: 480px) {
  .checkout-modal-box .search-box,
  #modalSearchBox.search-box { gap: 6px !important; }
  .checkout-modal-box .search-input,
  #modalUsernameInput {
    padding: 11px 12px !important;
    font-size: 16px !important;          /* iOS zoom önleme için 16px sabit */
  }
  .checkout-modal-box .search-btn,
  #modalSearchBtn {
    padding: 11px 14px !important;
    font-size: 13px !important;
    min-width: 0 !important;
  }
  /* Sorgula yazısı her zaman görünsün */
  .checkout-modal-box .search-btn span,
  #modalSearchBtn span { display: inline !important; }
}

/* 5) SEO page font consistency with index.html — uses same body font stack */
body, .seo-page, .seo-page h1, .seo-page h2, .seo-page h3, .seo-page p, .seo-page li {
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif !important;
}


/* ======================================================================
   6) SEO LINKS — wrapper background kaldırıldı, her kart ayrı kutu
   ====================================================================== */
.seo-links-section {
  background: transparent !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding: 50px 20px 30px !important;
}
.seo-links-section .seo-links-inner {
  background: transparent !important;
  box-shadow: none !important;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 !important;
}
.seo-link-card {
  background: linear-gradient(180deg, #0f172a 0, #0a1226 100%) !important;
  border: 1px solid rgba(245, 158, 11, 0.20) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
  border-radius: 14px !important;
}
.seo-link-card:hover {
  background: linear-gradient(180deg, #131c33 0, #0a1226 100%) !important;
  border-color: rgba(245, 158, 11, 0.55) !important;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.20) !important;
  transform: translateY(-3px);
}

/* ======================================================================
   7) FOOTER — tam genişlik, etrafında boşluk yok
   ====================================================================== */
body { margin: 0 !important; padding: 0 !important; }
html, body { overflow-x: hidden; }
footer {
  width: 100% !important;
  max-width: 100% !important;
  margin: 80px 0 0 0 !important;
  padding: 50px 0 0 0 !important;
  box-sizing: border-box;
}
footer .footer-content,
footer .footer-quicklinks,
footer .footer-bottom {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
footer .footer-bottom {
  padding: 14px 20px 24px !important;
  max-width: 100% !important;
}
footer .footer-trust-row {
  max-width: 100% !important;
  padding: 22px 16px !important;
}
@media (max-width: 768px) {
  footer { padding-top: 30px !important; margin-top: 40px !important; }
  footer .footer-content { padding: 0 14px !important; gap: 14px !important; }
  footer .footer-bottom { padding: 12px 14px 20px !important; }
}

/* Mobilde 4 kolon dengeli: tüm kolonlar tek sütun, eşit dağıtım */
@media (max-width: 768px) {
  footer .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
    align-items: start;
  }
  footer .footer-column ul {
    column-count: 1;
  }
}
@media (max-width: 480px) {
  footer .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 12px !important;
  }
  footer .footer-column h3 { font-size: 0.95rem !important; margin-bottom: 8px !important; }
  footer .footer-column ul li { margin-bottom: 6px !important; }
  footer .footer-column ul li a {
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: inline-block !important;
    max-width: 100% !important;
  }
}
@media (max-width: 360px) {
  footer .footer-column ul li a { font-size: 0.68rem !important; }
}

/* =======================================================================
   11) PAYMENT OPTION ICONS — mobilde tek sırada kalsın, alt satıra geçmesin
   ======================================================================= */
.pay-option-icons {
  display: inline-flex !important;
  align-items: center;
  flex-wrap: nowrap !important;
  gap: 4px;
  flex-shrink: 0;
  overflow: hidden;
}
.pay-option-icons img {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.pay-option-icons .pay-other-button {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .pay-option-icons {
    gap: 3px !important;
  }
  .pay-option-icons img {
    height: 14px !important;
  }
  .pay-option-icons .pay-other-button {
    font-size: 0.62rem !important;
    padding: 1px 4px !important;
  }
  /* pay-option layout: title left, icons right, no wrap */
  .pay-option-body {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0;
  }
  .pay-option-title {
    flex: 1 1 auto;
    min-width: 0;
  }
  .pay-option-sub {
    font-size: 0.7rem !important;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 360px) {
  .pay-option-icons img { height: 12px !important; }
  .pay-option-icons .pay-other-button { font-size: 0.56rem !important; padding: 1px 3px !important; }
}

/* İletişim formu status mesajı */
.content-page .contact-form-status {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
}
.content-page .contact-form-status.is-success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #4ade80;
}
.content-page .contact-form-status.is-error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}
.content-page .btn.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ======================================================================
   8) İLETİŞİM — contact-grid kart layout
   ====================================================================== */
.content-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin: 30px 0 40px;
}
.content-page .contact-info,
.content-page .contact-form-wrapper {
  background: linear-gradient(180deg, #0f172a 0, #0a1226 100%);
  border: 1px solid rgba(245, 158, 11, 0.20);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.content-page .contact-info h2,
.content-page .contact-form-wrapper h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.45rem;
  color: #f59e0b;
  background: none !important;
  -webkit-text-fill-color: #f59e0b !important;
}
.content-page .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(245, 158, 11, 0.15);
}
.content-page .contact-item:last-child { border-bottom: 0; }
.content-page .contact-icon {
  font-size: 1.6rem;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.content-page .contact-item h3 {
  font-size: 0.95rem;
  color: #fb923c;
  margin: 0 0 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.content-page .contact-item p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}
.content-page .contact-form .form-group {
  margin-bottom: 14px;
}
.content-page .contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.content-page .contact-form input,
.content-page .contact-form select,
.content-page .contact-form textarea {
  width: 100%;
  background: #1e293b;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.content-page .contact-form input:focus,
.content-page .contact-form select:focus,
.content-page .contact-form textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.content-page .contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.content-page .btn.btn-primary {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  color: #0f172a;
  border: 0;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.35);
  transition: all .25s ease;
}
.content-page .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.5);
}
.content-page .btn.btn-block { width: 100%; }
@media (max-width: 768px) {
  .content-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .content-page .contact-info,
  .content-page .contact-form-wrapper {
    padding: 20px 16px;
  }
}

/* ======================================================================
   9) MODAL USER CARD — masaüstü/tablet/mobil HER zaman aynı düzen
   ====================================================================== */

/* Modal değişim butonlarını tamamen kaldır */
.modal-change-pkg-btn,
.modal-change-user-btn {
  display: none !important;
}

.modal-user-card {
  display: grid !important;
  grid-template-columns: 56px 1fr 28px !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px !important;
  position: relative !important;
}
.modal-user-avatar {
  width: 56px !important;
  height: 56px !important;
  flex-shrink: 0 !important;
}
.modal-user-info {
  min-width: 0 !important;
  overflow: hidden !important;
}
.modal-user-name {
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-bottom: 4px !important;
}
/* Stats: HER ekran boyutunda yan yana, asla alt alta geçmesin */
.modal-user-stats {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  font-size: 0.72rem !important;
  line-height: 1.3 !important;
  color: #cbd5e1 !important;
  min-width: 0 !important;
  width: 100% !important;
  justify-content: space-between !important;
  overflow: hidden !important;
}
.modal-user-stats span {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 3px !important;
  white-space: nowrap !important;
  flex: 0 1 auto !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.modal-user-stats span b {
  color: #f59e0b !important;
  font-weight: 900 !important;
  margin-right: 2px !important;
}
.modal-user-ok {
  position: static !important;
  color: #22c55e !important;
  font-size: 1.4rem !important;
  align-self: center !important;
  justify-self: end !important;
}
@media (max-width: 480px) {
  .modal-user-card {
    grid-template-columns: 40px 1fr 20px !important;
    gap: 8px !important;
    padding: 10px !important;
  }
  .modal-user-avatar { width: 40px !important; height: 40px !important; }
  .modal-user-name { font-size: 0.82rem !important; }
  .modal-user-stats { font-size: 0.6rem !important; gap: 4px !important; }
  .modal-user-stats span b { font-size: 0.62rem !important; }
  .modal-user-ok { font-size: 1rem !important; }
}
@media (max-width: 360px) {
  .modal-user-stats { font-size: 0.54rem !important; gap: 3px !important; }
}

/* ======================================================================
   10) KRİPTO ÖDEME — mobile dahil tüm kırılmalar düzeltildi
   ====================================================================== */
.crypto-choice-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.crypto-choice-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #1e293b;
  border: 1px solid rgba(245, 158, 11, 0.20);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
  color: #cbd5e1;
  min-width: 0;
}
.crypto-choice-btn img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.crypto-choice-btn .ccb-text {
  text-align: left;
  min-width: 0;
  overflow: hidden;
}
.crypto-choice-btn .ccb-name {
  font-weight: 900;
  color: #fff;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.crypto-choice-btn .ccb-net {
  font-size: 0.72rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.crypto-choice-btn:hover,
.crypto-choice-btn.is-active {
  background: rgba(245, 158, 11, 0.08);
  border-color: #f59e0b;
  color: #fff;
}

.crypto-pay-card {
  background: linear-gradient(180deg, #0f172a 0, #0a1226 100%);
  border: 1px solid rgba(245, 158, 11, 0.20);
  border-radius: 14px;
  padding: 16px;
}
.crypto-pay-card .cpc-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(245, 158, 11, 0.15);
  align-items: center;
}
.crypto-pay-card .cpc-row.cpc-row--col {
  grid-template-columns: 1fr;
  gap: 6px;
}
.crypto-pay-card .cpc-row:last-of-type { border-bottom: 0; }
.crypto-pay-card .cpc-label {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 700;
}
.crypto-pay-card .cpc-value {
  font-weight: 900;
  color: #fff;
  word-break: break-all;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.crypto-pay-card .cpc-amount #cryptoAmount {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
}
.crypto-pay-card .cpc-addr-row {
  display: flex;
  gap: 6px;
  align-items: stretch;
}
.crypto-pay-card .cpc-addr-input {
  flex: 1;
  background: #1e293b;
  border: 1px solid rgba(245, 158, 11, 0.20);
  border-radius: 8px;
  padding: 9px 12px;
  color: #fff;
  font-size: 0.78rem;
  font-family: 'Courier New', monospace;
  min-width: 0;
  word-break: break-all;
}
.crypto-pay-card .cpc-copy,
.crypto-pay-card .cpc-paste {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.30);
  color: #f59e0b;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.crypto-pay-card .cpc-copy:hover,
.crypto-pay-card .cpc-paste:hover {
  background: rgba(245, 158, 11, 0.25);
}
.crypto-pay-card .cpc-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0;
  padding: 12px;
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.20);
  border-radius: 10px;
  font-size: 0.82rem;
  color: #fcd34d;
  line-height: 1.5;
}
.crypto-pay-card .cpc-note i { color: #f59e0b; margin-top: 2px; flex-shrink: 0; }
.crypto-pay-card .crypto-paid-btn {
  width: 100%;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border: 0;
  color: #fff;
  font-weight: 900;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(34, 197, 94, .35);
  transition: all .25s;
}
.crypto-pay-card .crypto-paid-btn:hover { transform: translateY(-2px); }
.crypto-pay-card .cpc-rate-text {
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .crypto-choice-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .crypto-choice-btn { padding: 10px 8px !important; gap: 8px !important; }
  .crypto-choice-btn img { width: 26px !important; height: 26px !important; }
  .crypto-choice-btn .ccb-name { font-size: 0.82rem !important; }
  .crypto-choice-btn .ccb-net { font-size: 0.66rem !important; }
  .crypto-pay-card { padding: 12px !important; }
  .crypto-pay-card .cpc-row {
    grid-template-columns: 110px 1fr !important;
    gap: 8px !important;
    padding: 8px 0 !important;
    align-items: center !important;
  }
  /* Sadece cuzdan adresi gibi uzun degerler alt alta kalsin */
  .crypto-pay-card .cpc-row.cpc-row--col {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }
  .crypto-pay-card .cpc-label { font-size: 0.75rem !important; }
  .crypto-pay-card .cpc-value { font-size: 0.88rem !important; justify-content: flex-end; text-align: right; }
  .crypto-pay-card .cpc-row--col .cpc-value { justify-content: flex-start; text-align: left; }
  .crypto-pay-card .cpc-addr-input { font-size: 0.72rem !important; padding: 8px 10px !important; }
  .crypto-pay-card .cpc-note {
    font-size: 0.72rem !important;
    padding: 8px 10px !important;
    line-height: 1.4 !important;
    margin: 10px 0 !important;
    border-radius: 8px !important;
  }
  .crypto-pay-card .cpc-note i { font-size: 0.85rem !important; }
}

/* TXID paneli mobil */
.crypto-txid-panel { margin-top: 14px; padding: 14px; background: rgba(245,158,11,0.05); border: 1px solid rgba(245,158,11,0.18); border-radius: 12px; }
.crypto-txid-panel .cpc-txid-help { font-size: 0.78rem; color: #94a3b8; margin-bottom: 10px; line-height: 1.5; }
.crypto-txid-panel .cpc-txid-row { display: flex; gap: 6px; }
.crypto-txid-panel .cpc-txid-actions { display: flex; gap: 8px; margin-top: 10px; }
.crypto-txid-panel .crypto-txid-cancel,
.crypto-txid-panel .crypto-txid-submit {
  flex: 1;
  border-radius: 8px;
  padding: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  border: 0;
}
.crypto-txid-panel .crypto-txid-cancel { background: #334155; color: #fff; }
.crypto-txid-panel .crypto-txid-submit { background: linear-gradient(90deg, #f59e0b, #fbbf24); color: #0f172a; }
@media (max-width: 480px) {
  .crypto-txid-panel .cpc-txid-row { flex-direction: column; gap: 8px; }
}

/* ======================================================================
   FORCE FIX — modal-user-stats mobilde TEK SATIR (desktoptaki gibi)
   ID + class spesifikliği ile diğer her şeyi override eder.
   ====================================================================== */
@media (max-width: 768px) {
  div#modalUserResult .modal-user-card {
    display: grid !important;
    grid-template-columns: 44px 1fr !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 4px 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    position: relative !important;
  }
  div#modalUserResult .modal-user-avatar {
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
  }
  div#modalUserResult .modal-user-info {
    min-width: 0 !important;
    overflow: hidden !important;
    width: 100% !important;
  }
  div#modalUserResult .modal-user-name {
    font-size: 0.88rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding-right: 22px !important;
    margin-bottom: 4px !important;
  }
  div#modalUserResult .modal-user-stats {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 6px !important;
    overflow: hidden !important;
    justify-content: space-between !important;
    align-items: baseline !important;
  }
  div#modalUserResult .modal-user-stats > span {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 0.62rem !important;
    line-height: 1.2 !important;
    color: #cbd5e1 !important;
  }
  div#modalUserResult .modal-user-stats > span b {
    font-size: 0.64rem !important;
    color: #f59e0b !important;
    font-weight: 900 !important;
    margin-right: 1px !important;
  }
  div#modalUserResult .modal-user-ok {
    position: absolute !important;
    top: 8px !important;
    right: 10px !important;
    font-size: 1rem !important;
    margin: 0 !important;
  }
}
@media (max-width: 360px) {
  div#modalUserResult .modal-user-stats > span {
    font-size: 0.54rem !important;
  }
  div#modalUserResult .modal-user-stats > span b {
    font-size: 0.56rem !important;
  }
}



/* ======================================================================
   8) FAQ ITEMS — ince uzun çubuk (thin long bar) tasarımı
   ====================================================================== */
.faq{max-width:900px !important;margin:60px auto !important;padding:0 !important;width:100% !important}
.faq-item{
  background:linear-gradient(180deg, rgba(15,23,42,.85) 0, rgba(6,8,24,.85) 100%) !important;
  border:1px solid rgba(245,158,11,.14) !important;
  border-left:3px solid rgba(245,158,11,.55) !important;
  border-radius:8px !important;
  margin-bottom:8px !important;
  overflow:hidden !important;
  transition:all .25s ease !important;
  box-shadow:0 2px 8px rgba(0,0,0,.25) !important;
}
.faq-item:hover{
  border-color:rgba(245,158,11,.35) !important;
  border-left-color:#f59e0b !important;
  transform:translateX(2px);
  box-shadow:0 4px 14px rgba(245,158,11,.15) !important;
}
.faq-q{
  padding:12px 18px !important;
  font-size:.92rem !important;
  font-weight:600 !important;
  line-height:1.35 !important;
  color:#e5e7eb !important;
  min-height:44px !important;
}
.faq-q i{color:#f59e0b !important;font-size:.78rem !important}
.faq-item.active{border-left-color:#f59e0b !important;border-color:rgba(245,158,11,.35) !important}
.faq-item.active .faq-a{padding:0 18px 14px !important;max-height:500px !important}
.faq-a{padding:0 18px !important;font-size:.86rem !important;line-height:1.6 !important;color:#94a3b8 !important}
@media(max-width:640px){
  .faq{padding:0 !important}
  .seo-links-section .seo-links-inner{padding:0 !important}
  .faq-q{padding:10px 14px !important;font-size:.86rem !important;min-height:40px !important}
  .faq-a{font-size:.8rem !important;padding:0 14px !important}
  .faq-item.active .faq-a{padding:0 14px 12px !important}
}

/* ======================================================================
   9) SEO LINKS GRID — FAQ ile aynı ince uzun çubuk stili
   ====================================================================== */
.seo-links-section .seo-links-inner{max-width:900px !important;margin:0 auto !important;padding:0 !important;width:100% !important}
.seo-links-grid{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:8px !important;
  max-width:900px !important;
  margin:0 auto !important;
  width:100% !important;
}
.seo-link-card{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:12px !important;
  background:linear-gradient(180deg, rgba(15,23,42,.85) 0, rgba(6,8,24,.85) 100%) !important;
  border:1px solid rgba(245,158,11,.14) !important;
  border-left:3px solid rgba(245,158,11,.55) !important;
  border-radius:8px !important;
  padding:12px 18px !important;
  min-height:44px !important;
  box-shadow:0 2px 8px rgba(0,0,0,.25) !important;
  transition:all .25s ease !important;
  text-decoration:none !important;
}
.seo-link-card:hover{
  border-color:rgba(245,158,11,.35) !important;
  border-left-color:#f59e0b !important;
  transform:translateX(2px) !important;
  box-shadow:0 4px 14px rgba(245,158,11,.15) !important;
  background:linear-gradient(180deg, rgba(20,30,55,.9) 0, rgba(6,8,24,.9) 100%) !important;
}
.seo-link-icon{
  font-size:1rem !important;
  color:#f59e0b !important;
  margin:0 !important;
  flex-shrink:0 !important;
  width:22px !important;
  text-align:center !important;
}
.seo-link-card:hover .seo-link-icon{transform:none !important}
.seo-link-title{
  font-size:.92rem !important;

/* ======================================================================
   11) PACKAGE FOOT — mobilde şeridi genişlet (tutar + buton arka planı)
   ====================================================================== */
@media(max-width:768px){
  .package{
    grid-template-rows:44px minmax(0,1fr) 54px !important;
  }
  .package .package-foot{
    padding:8px 12px !important;
    height:100% !important;
    gap:8px !important;
  }
  .package .package-foot-price{
    font-size:1.15rem !important;
    font-weight:800 !important;
  }
  .package .package-foot-add{
    width:34px !important;
    height:34px !important;
  }
}
@media(max-width:480px){
  .package{
    grid-template-rows:44px minmax(0,1fr) 50px !important;
  }
  .package .package-foot{
    padding:7px 10px !important;
  }
}
  font-weight:600 !important;
  color:#e5e7eb !important;
  line-height:1.3 !important;
  flex-shrink:0 !important;
}
.seo-link-desc{
  font-size:.78rem !important;
  color:#94a3b8 !important;
  line-height:1.35 !important;
  margin-left:auto !important;
  text-align:right !important;
}
@media(max-width:640px){
  .seo-link-card{padding:10px 14px !important;gap:10px !important;min-height:40px !important}
  .seo-link-title{font-size:.84rem !important}
  .seo-link-desc{font-size:.7rem !important}
}
@media(max-width:480px){
  .seo-link-desc{display:none !important}
}

/* ======================================================================
   10) FOOTER KAŞE — Kolonların ÜSTÜNDE, footer'ın en üst kısmında
   Kutu/çizgi YOK. Doğrudan footer arka planı üzerinde düz metin.
   Kolonları (Mağaza / Yardım / Ödeme / Yasal) biraz aşağı çeker.
   ====================================================================== */
.footer-kase-top{
  max-width:1280px;
  margin:0 auto 22px;
  padding:0 20px;
  text-align:left;
  border:0;
  background:transparent;
}
.footer-kase-top .footer-kase-heading{
  color:#ea580c;
  font-size:1.2rem;
  font-weight:700;
  margin:0 0 12px;
  letter-spacing:.3px;
  line-height:1.2;
  text-transform:uppercase;
}
.footer-kase-top .footer-kase-title{
  color:#fb923c;
  font-weight:700;
  font-size:12px;
  letter-spacing:.3px;
  margin-bottom:5px;
  line-height:1.35;
}
.footer-kase-top .footer-kase-line{
  color:#94a3b8;
  font-size:11px;
  line-height:1.55;
  font-weight:500;
  margin-bottom:2px;
}
/* Kolonları biraz aşağı it */
footer .footer-content{
  margin-top:6px;
}
@media(max-width:1024px){
  .footer-kase-top{margin-bottom:18px;padding:0 20px}
  .footer-kase-top .footer-kase-heading{font-size:1.1rem;margin-bottom:10px}
  .footer-kase-top .footer-kase-title{font-size:11.5px}
  .footer-kase-top .footer-kase-line{font-size:10.5px;line-height:1.5}
}
@media(max-width:480px){
  .footer-kase-top{margin-bottom:14px;padding:0 14px}
  .footer-kase-top .footer-kase-heading{font-size:1rem;margin-bottom:8px}
  .footer-kase-top .footer-kase-title{font-size:11px}
  .footer-kase-top .footer-kase-line{font-size:10px;line-height:1.45}
}
