/* E-Pin tema uyumluluk */
.d-none { display: none !important; }

/* Navbar: site adı metin olarak – büyük, okunaklı logo yazısı */
.site-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding-top: 2px;
}
.site-logo-text {
  font-family: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffb320;
  text-shadow: 0 0 24px rgba(255, 179, 32, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: color 0.2s, text-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}
.site-logo:hover .site-logo-text {
  color: #ffc040;
  text-shadow: 0 0 28px rgba(255, 192, 64, 0.4), 0 2px 6px rgba(0, 0, 0, 0.25);
}
.site-logo:active .site-logo-text {
  transform: scale(0.98);
}

/* Footer logo: admin paneldeki Site Adı, tek metin + güzel tasarım */
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-logo-link:hover {
  color: inherit;
  transform: translateY(-1px);
}
.footer-logo-link:hover .footer-brand {
  box-shadow: 0 6px 20px rgba(255, 179, 32, 0.45);
}
.footer-logo .footer-brand {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #131313;
  background: linear-gradient(135deg, #ffb320 0%, #ffc040 48%, #ffb320 100%);
  padding: 12px 20px;
  border-radius: 8px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
  box-shadow: 0 4px 14px rgba(255,179,32,0.35);
  line-height: 1.2;
  transition: box-shadow 0.2s ease;
}
@media (max-width: 767px) {
  .footer-logo .footer-brand {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    padding: 10px 16px;
  }
}

@media (max-width: 767px) {
  .site-logo-text {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }
}

/* Mobil navbar: ince, zarif, logo solda */
@media (max-width: 767px) {
  .header-section {
    padding: 8px 0;
    border-bottom-width: 1px;
  }
  .header-section .container {
    gap: 6px 12px;
    padding-left: 10px;
    padding-right: 10px;
    justify-content: flex-start;
    align-items: center;
  }
  .header-section .site-logo {
    order: 1;
    flex-shrink: 0;
    margin-right: auto;
  }
  .header-section .user-panel {
    order: 2;
    gap: 4px;
    flex-shrink: 0;
  }
  .header-section .nav-switch {
    order: 3;
    flex-shrink: 0;
    min-width: 36px;
    min-height: 36px;
    font-size: 18px;
    padding: 6px;
  }
  .header-section .user-panel-btn {
    padding: 6px 10px;
    font-size: 12px;
    min-height: 32px;
    border-radius: 6px;
  }
  .header-section .user-panel-name {
    display: none;
  }
  .header-section .lang-dropdown-trigger {
    padding: 5px 8px;
    font-size: 12px;
  }
  .header-section .main-menu {
    margin-top: 2px;
    padding-top: 6px;
  }
  .header-section .main-menu ul li a {
    padding: 10px 12px;
    font-size: 14px;
  }
}
/* Navbar: logo sol, oyun arama ortada, sağ boş (denge) */
.site-header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.site-header-side.left { justify-self: start; }
.site-header-center {
  justify-self: center;
  width: 100%;
  max-width: 320px;
}
.site-header-center form { width: 100%; }
.site-header-side.right { justify-self: end; min-width: 0; }
.site-header-center form input,
.site-header-center form input[type="search"] {
  width: 100%;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  color: var(--text-color);
  background: var(--darker-color);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius-sm);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.site-header-center form input::placeholder { color: rgba(255,255,255,0.5); }
.site-header-center form input:focus { outline: none; border-color: var(--blue-color); }

/* Language dropdown: globe icon + current lang (EN/TR), tıklanınca seçenekler açılır */
.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}
.lang-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lang-dropdown-trigger::-webkit-details-marker { display: none; }
.lang-dropdown-trigger::marker { content: none; }
.lang-dropdown-trigger:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  color: #ffb320;
}
.lang-dropdown-icon { font-size: 16px; opacity: 0.95; }
.lang-dropdown-current { min-width: 22px; text-align: center; }
.lang-dropdown-chevron {
  font-size: 10px;
  opacity: 0.8;
  transition: transform 0.2s;
}
.lang-dropdown[open] .lang-dropdown-chevron { transform: rotate(180deg); }
.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  min-width: 80px;
  padding: 4px 0;
  background: #1a1d24;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 100;
}
.lang-dropdown-item {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.lang-dropdown-item:hover {
  background: rgba(255,255,255,0.1);
  color: #ffb320;
}
.lang-dropdown-item.is-active {
  background: rgba(255,179,32,0.2);
  color: #ffb320;
}

/* Menü ve footer – okunaklı metin */
.top-navigation a { color: #fff !important; }
.top-navigation a:hover { color: #0f1216 !important; background: #fff !important; }
.top-navigation a.payment { color: #86efac !important; }
.top-navigation a.payment:hover { color: #0f1216 !important; }
.site-footer-top-box h3 { color: #fff; }
.site-footer-top-box p { color: rgba(255,255,255,0.88); }
.site-footer-bottom { color: rgba(255,255,255,0.85); }
.section-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.section-header h1, .section-header h2 { margin: 0; font-size: 1.25rem; font-weight: 600; color: #fff; }
.section-header a { display: inline-flex; align-items: center; gap: 0.25rem; color: #5eb8f5 !important; text-decoration: none; font-weight: 500; }
.section-header a:hover { color: #8ed4ff !important; }
.section-header a .icon { width: 1em; height: 1em; fill: currentColor; }

/* Oyun çevrimiçi göstergesi */
.online-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-color, #0f0);
  box-shadow: 0 0 0 2px var(--dark-color, #212630);
}
.category-btn, .product { position: relative; }
.category-btn .online-dot { top: 2px; right: 2px; }
/* Kategori butonu: banner/resim sabit kutuya tam oturur */
.category-btn {
  min-width: 4.75rem;
  height: 3.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Ürün kartı: resim sarmalayıcı (Dosyalar .product>.product-image uyumu) */
.product-image-wrap,
.product .product-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: -1.25rem;
  width: calc(100% + 2.5rem);
  aspect-ratio: 1.25;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1/3;
}
/* Hangi boyut resim yüklenirse yüklensin kutuya tam oturur */
.product-image-wrap img,
.product .product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: var(--darker-color);
  color: var(--text-secondary-color);
  font-size: 1.5rem;
  font-weight: 500;
}
.category-btn-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4.75rem;
  height: 3.75rem;
  background: var(--darker-color);
  color: var(--text-secondary-color);
  font-size: 1rem;
  font-weight: 500;
}
.product-name { font-size: var(--font-size-base); font-weight: 400; margin: 1rem 0; grid-column: 1/3; color: #fff; }
.product .product-cta { grid-column: 1/3; align-self: end; justify-self: start; }
/* Neden E-Pin? – içerik ve Daha Fazla Göster butonu */
.section-content { color: rgba(255,255,255,0.9); }
.section-content a { color: #5eb8f5; }
.section-content a:hover { color: #8ed4ff; }

/* Order / Bank transfer cards */
.bank-transfer-card { max-width: 640px; margin: 0 auto; padding: 1.5rem; background: var(--darker-color); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; }
.bank-details-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1.25rem; }
.bank-details-box .order-no,
.order-no-highlight { font-size: 1.05rem; letter-spacing: 1.5px; font-weight: 700; color: #93c5fd; }
.order-result-card { max-width: 560px; margin: 0 auto; padding: 1.5rem; background: var(--darker-color); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; }
.epin-code-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 1rem 1.25rem; font-size: 1.2rem; letter-spacing: 3px; font-weight: 700; color: #93c5fd; text-align: center; }
.order-result-card .epin-code-box { font-size: 1.25rem; letter-spacing: 4px; }
.order-result-card .order-no-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 1rem; font-size: 1.1rem; letter-spacing: 2px; font-weight: 600; text-align: center; color: #fff; }
#homepage-desc .about-section-body { color: rgba(255,255,255,0.88); }
#homepage-desc .btn-more-desc {
  color: #5eb8f5 !important;
  font-weight: 600;
  padding: 0.5rem 0;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  font-size: 0.9375rem;
}
#homepage-desc .btn-more-desc:hover { color: #8ed4ff !important; }
/* Oyun sahibi / Merchant CTA – okunaklı kart ve butonlar */
.merchant-cta-card {
  background: linear-gradient(180deg, #1e242e 0%, #181c24 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.merchant-cta-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.merchant-cta-desc {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.merchant-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
}
.btn-site-primary {
  color: #fff !important;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 3px 12px rgba(59,130,246,0.35);
}
.btn-site-primary:hover {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
}
.btn-site-outline {
  color: #e8eaed !important;
  background: transparent;
  border-color: rgba(255,255,255,0.35);
}
.btn-site-outline:hover {
  border-color: #3b82f6;
  background: rgba(59,130,246,0.12);
  color: #fff !important;
}
.section-header.merchant-cta { flex-direction: column; align-items: flex-start; }
.section-header.merchant-cta p { margin: 0.5rem 0 1rem; }
.section-header.merchant-cta .btn { margin-top: 0.25rem; }

/* Banner slider: sabit çerçeve, her resim bannere kırpılarak tam oturur */
.top-banner-section { margin-bottom: 1.25rem; }
.top-banner-section .top-banner {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.top-banner .fit-slider { border-radius: inherit; overflow: hidden; background: var(--dark-color); }
.top-banner .fit-slider-wrapper {
  height: 160px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.top-banner .fit-slider-wrapper > a {
  display: block;
  flex: 1 0 100%;
  min-width: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.top-banner .fit-slider-wrapper > a picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  inset: 0;
}
.top-banner .fit-slider-wrapper > a picture .slider-banner-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  vertical-align: top;
}
@media (min-width: 768px) {
  .top-banner .fit-slider-wrapper { height: 200px; }
}
.top-banner .fit-slider { position: relative; }
.fit-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 6px 0;
  z-index: 2;
}
.fit-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.fit-slider-dot:hover {
  background: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.9);
}
.fit-slider-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}
.fit-slider-dot:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
.faq-question:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Anasayfa istatistik şeridi */
.home-stats-strip { margin-bottom: 1rem; }
.home-stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(30,36,46,0.95) 0%, rgba(24,28,36,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.home-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.home-stat-icon { font-size: 1.1rem; }

/* SSS (FAQ) bölümü */
.home-faq-section { margin-bottom: 2rem; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.06); color: #fff; }
.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-left: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(-135deg); }
.faq-answer {
  padding: 0 1.15rem 1rem;
}
.faq-answer[hidden] { display: none; }
.faq-answer p {
  margin: 0;
  padding: 0.25rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.faq-answer p + p { margin-top: 0.5rem; }

/* Footer hızlı linkler */
.site-footer-links {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
}
.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
.site-footer-nav a {
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.site-footer-nav a:hover { color: #fff !important; }

/* Form ve uyarı (merchant giriş, sipariş sorgula vb.) */
.form-label { display: block; margin-bottom: 0.25rem; font-weight: 500; }
.form-control, select.form-control { width: 100%; padding: 0.75rem; background: var(--darker-color); color: var(--text-color); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--border-radius-sm); box-sizing: border-box; font-size: inherit; }
.form-control:focus, select.form-control:focus { outline: none; border-color: var(--blue-color); }
select.form-control { cursor: pointer; appearance: auto; }
.alert { padding: 0.75rem 1rem; border-radius: var(--border-radius-sm); margin-bottom: 1rem; }
.alert-danger { background: rgba(255,55,55,0.2); color: var(--red-color); border: 1px solid var(--red-color); }
.alert-success { background: rgba(0,144,57,0.2); color: var(--jungle-color, #009039); border: 1px solid var(--jungle-color, #009039); }
.alert-info { background: rgba(50,160,219,0.15); color: var(--blue-color); border: 1px solid var(--blue-color); }
.alert-warning { background: rgba(255,204,51,0.15); color: var(--yellow-color, #fc3); border: 1px solid var(--yellow-color, #fc3); }
.row { display: flex; flex-wrap: wrap; margin-left: -0.5rem; margin-right: -0.5rem; }
.row > [class*="col-"] { padding-left: 0.5rem; padding-right: 0.5rem; }
.col-12 { width: 100%; }
@media (min-width: 992px) {
  .col-lg-6 { width: 50%; flex: 0 0 50%; max-width: 50%; }
}
.justify-content-center { justify-content: center; }
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-lg-0 { margin-top: 0; }
@media (min-width: 992px) { .mt-lg-0 { margin-top: 0; } }
.ms-2 { margin-left: 0.5rem; }
.w-100 { width: 100%; }
.form-group { margin-bottom: 1rem; }
.text-muted { color: var(--text-secondary-color); }
.text-center { text-align: center; }
.text-success { color: var(--jungle-color, #009039); }
.text-warning { color: var(--yellow-color, #fc3); }
.font-weight-bold { font-weight: 700; }
/* Tüm sitede butonlar okunaklı (styles.css .btn all:unset üzerine) */
.btn,
.btn-blue,
.btn-primary,
.btn-secondary,
.btn-outline-secondary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-blue,
.btn-primary {
  color: #fff !important;
  background: #3b82f6 !important;
  border: 1px solid #3b82f6 !important;
}
.btn-blue:hover,
.btn-primary:hover {
  background: #2563eb !important;
  color: #fff !important;
}
.btn-blue svg,
.btn-primary svg { fill: #fff !important; }
.btn-secondary,
.btn-outline-secondary {
  color: #e8eaed !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
}
.btn-secondary:hover,
.btn-outline-secondary:hover {
  border-color: #3b82f6 !important;
  background: rgba(59,130,246,0.15) !important;
  color: #fff !important;
}
.btn-secondary svg,
.btn-outline-secondary svg { fill: currentColor !important; }
.product .btn-blue.product-cta,
.product .product-cta {
  color: #fff !important;
  background: #3b82f6 !important;
  border: none !important;
  padding: 0.6rem 1rem !important;
  font-weight: 600 !important;
}
.product .btn-blue.product-cta:hover,
.product .product-cta:hover {
  background: #2563eb !important;
  color: #fff !important;
}
.product-placeholder .btn-blue { color: #fff !important; background: #3b82f6 !important; }
.product-placeholder .btn-blue:hover { background: #2563eb !important; color: #fff !important; }

/* Oyun kaydı sayfası: sağ sütun bilgi kutusu */
.register-page .register-info-card .icon-wrap {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--darker-color);
  border-radius: var(--border-radius);
}
.register-page .register-info-card .icon-wrap svg { width: 2rem; height: 2rem; fill: var(--blue-color); }
.register-page .register-info-card h3 { font-size: 1.125rem; margin: 0 0 0.5rem; font-weight: 500; }
.register-page .register-info-card p { margin: 0 0 1rem; font-size: var(--font-size-sm); line-height: 1.4; }
.register-page .btn-block { display: block; width: 100%; }

/* ========== E-Pin Satın Al – yenilenen sayfa tasarımı ========== */
/* Not: .ep-buy-page-wrap asıl yükseklik/padding epin-buy-page.css ile ayarlanır; footer içeriğin altında kalır */
.ep-buy-page-wrap {
  min-height: calc(100vh - 140px);
  background: linear-gradient(180deg, #1a1d24 0%, #252a33 12%, #1e2229 22%, #f0f2f5 22%);
  overflow: visible;
}
.ep-hero {
  background: transparent;
  padding: 2rem 1rem 1.5rem;
  text-align: center;
  border-bottom: none;
  flex-shrink: 0;
}
.ep-hero-inner { max-width: 560px; margin: 0 auto; padding: 0 0.5rem; }
.ep-hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.ep-hero-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.5;
}

.ep-page {
  background: transparent;
  padding: 0 1rem 0 1rem;
  padding-bottom: 4rem; /* Ödeme Yöntemi + Ödemeye Geç alanı ile footer arası boşluk */
  min-height: 0;
  flex: 1 0 auto;
}
.ep-page-inner {
  max-width: 560px;
  margin: 0 auto;
}

.ep-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.ep-step-first { padding: 1.25rem 1.25rem; }
.ep-step .ep-step-body { padding-left: 0; }
.ep-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.ep-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb320 0%, #e59a00 100%);
  color: #1a1a1a;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ep-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
  min-width: 0;
}
.ep-step-title em { color: #dc2626; font-style: normal; font-weight: 600; }
.ep-step-body { margin-top: 0.5rem; }
.ep-step .ep-step-body { margin-left: 0; }

.ep-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.ep-label-game {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.ep-step-game .ep-step-body { padding-bottom: 0.25rem; }
.ep-select-wrap {
  width: 100%;
  position: relative;
}
.ep-step-body .ep-field,
.ep-step-body .ep-select {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.ep-field {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  color: #1a1a1a;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ep-field:focus {
  outline: none;
  border-color: #ffb320;
  box-shadow: 0 0 0 3px rgba(255,179,32,0.2);
}
.ep-field::placeholder { color: #9ca3af; }
.ep-select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a !important;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 10'%3E%3Cpath d='M8 9.12L.33 1.45C-.11 1-.11.29.33-.15.77-.6 1.48-.6 1.92-.15L8 6.42l6.08-6.57c.44-.45 1.15-.45 1.59 0 .44.44.44 1.15 0 1.6L8 9.12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ep-select:hover,
.ep-select:focus {
  border-color: #ffb320;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,179,32,0.2);
}
.ep-select option {
  background: #fff !important;
  color: #1a1a1a !important;
  font-weight: 500;
  padding: 0.5rem;
}
.ep-payment-hint {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0 0 1rem;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #ffb320;
}
.ep-payment-hint strong { color: #1a1a1a; }

.ep-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}
.ep-product-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1rem 1rem;
  background: #f8f9fa;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.ep-product-item:hover {
  border-color: #ffb320;
  background: #fffbf0;
  box-shadow: 0 2px 8px rgba(255,179,32,0.15);
}
.ep-product-item.is-active {
  border-color: #ffb320;
  background: #fff9e6;
  box-shadow: 0 0 0 1px rgba(255,179,32,0.3);
}
.ep-product-label { font-weight: 600; margin-bottom: 0.35rem; color: #1a1a1a; }
.ep-product-price { font-size: 1rem; color: #b45309; font-weight: 700; }
.ep-empty { color: #6b7280; margin: 0; font-size: 0.9375rem; }
.ep-stripe-bakimda { grid-column: 1 / -1; margin-top: 0.5rem; }

.ep-payment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}
.ep-payment-item {
  padding: 0.9rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  background: #f8f9fa;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.ep-payment-item:hover {
  border-color: #ffb320;
  background: #fffbf0;
}
.ep-payment-item.is-active {
  border-color: #ffb320;
  background: #fff9e6;
  color: #1a1a1a;
  box-shadow: 0 0 0 1px rgba(255,179,32,0.25);
}
.ep-payment-item--disabled,
.ep-payment-item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  border-color: #e5e7eb;
  background: #f3f4f6;
}
.ep-badge {
  display: inline-block;
  margin-left: 0.25rem;
  padding: 0.15rem 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  background: #f59e0b;
  color: #fff;
  border-radius: 4px;
  vertical-align: middle;
}

.ep-form-footer {
  margin-top: 1.5rem;
  margin-bottom: 3rem; /* Footer’a yer bırak */
  padding-top: 1.25rem;
  padding-bottom: 2rem;
  border-top: 1px solid #e5e7eb;
}
.ep-footer-note {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0 0 1rem;
  line-height: 1.5;
}
.ep-footer-note a { color: #b45309; text-decoration: none; font-weight: 500; }
.ep-footer-note a:hover { text-decoration: underline; }
.ep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.ep-btn--block { width: 100%; }
.ep-btn--primary {
  color: #1a1a1a !important;
  background: linear-gradient(180deg, #ffb320 0%, #e59a00 100%);
  box-shadow: 0 2px 10px rgba(229,154,0,0.35);
}
.ep-btn--primary:hover:not(:disabled) {
  background: linear-gradient(180deg, #ffc040 0%, #ffb320 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(229,154,0,0.4);
}
.ep-btn--primary:active:not(:disabled) { transform: translateY(0); }
.ep-btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ep-alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #1a1a1a;
}
.ep-alert a { color: #b45309; text-decoration: underline; font-weight: 500; }
.ep-alert--info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.ep-alert--info a { color: #1d4ed8; }
.ep-alert--danger { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.ep-alert--warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.ep-alert--warning a { color: #b45309; }

/* ========== Hesabım sayfası – okunaklı tablolar ve metin ========== */
.hesabim-page { background: #f0f2f5; }
.hesabim-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.hesabim-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1rem;
}
.hesabim-desc, .hesabim-note {
  font-size: 0.9375rem;
  color: #4b5563;
  margin: 0 0 1rem;
  line-height: 1.5;
}
.hesabim-empty { color: #6b7280; margin: 0 0 1rem; }
.hesabim-empty a { color: #b45309; font-weight: 500; }
.hesabim-table {
  background: #fff !important;
  color: #1a1a1a !important;
  margin-bottom: 1rem;
}
.hesabim-table th {
  background: #f8f9fa !important;
  color: #374151 !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-color: #e5e7eb !important;
}
.hesabim-table td {
  color: #1a1a1a !important;
  padding: 0.75rem 1rem;
  border-color: #e5e7eb !important;
  vertical-align: middle;
}
.hesabim-table tbody tr:hover { background: #f8f9fa !important; }
.hesabim-table .text-muted { color: #6b7280 !important; }
.hesabim-table .text-success { color: #059669 !important; }
.hesabim-table .text-danger { color: #dc2626 !important; }
.hesabim-table .text-warning { color: #b45309 !important; }
.hesabim-table a { color: #b45309; font-weight: 500; }
.hesabim-table code,
.epin-code-display {
  font-size: 0.9rem;
  background: #f3f4f6;
  color: #1a1a1a;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.hesabim-details { margin: 0; }
.hesabim-summary {
  cursor: pointer;
  color: #b45309 !important;
  font-weight: 600;
  font-size: 0.9rem;
}
.hesabim-summary:hover { text-decoration: underline; }
.hesabim-reply {
  margin-top: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.5;
  border: 1px solid #e5e7eb;
}
.hesabim-reply-date { display: block; margin-top: 0.5rem; color: #6b7280; font-size: 0.8125rem; }

/* ========== Oyun Sahibi Girişi – modern kart tasarımı ========== */
.merchant-login-page {
  padding: 2rem 1rem 3rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merchant-login-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.merchant-login-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #5eb8f5;
  margin-bottom: 1.25rem;
  text-decoration: none;
  transition: color 0.2s;
}
.merchant-login-back:hover { color: #8ed4ff; }
.merchant-login-back-arrow { font-weight: 700; }
.merchant-login-card {
  background: linear-gradient(180deg, #1e242e 0%, #181c24 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.04) inset;
}
.merchant-login-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.merchant-login-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.merchant-login-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.45;
}
.merchant-login-alert {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}
.merchant-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.merchant-login-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.merchant-login-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  display: block;
}
.merchant-login-input {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  color: #fff;
  background: #0f1216;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.merchant-login-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}
.merchant-login-input::placeholder { color: rgba(255,255,255,0.4); }
.merchant-login-submit {
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(59,130,246,0.35);
}
.merchant-login-submit:hover {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(59,130,246,0.4);
}
.merchant-login-submit:active { transform: translateY(0); }

/* ========== Mobil uyumluluk – tüm site ========== */
@media (max-width: 991px) {
  .container { padding-left: 1rem; padding-right: 1rem; max-width: 100%; box-sizing: border-box; }
}

@media (max-width: 767px) {
  .container { padding-left: 0.875rem; padding-right: 0.875rem; width: 100%; }
  /* Header: logo üstte, arama ortada tam genişlik */
  .site-header .container,
  .site-header-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
    min-height: auto;
  }
  .site-header-side.left { justify-self: center; text-align: center; }
  .site-header-side.right { display: none; }
  .site-header-side.left a picture img { max-width: 120px; height: auto; }
  .site-header-center { justify-self: stretch; max-width: none; width: 100%; }
  .site-header-center form { max-width: none; width: 100%; }
  .site-header-center form input { min-width: 0; width: 100%; padding: 0.65rem 1rem; font-size: 16px; }
  /* Menü: 2 sütun */
  .top-navigation { grid-template-columns: repeat(2, 1fr); font-size: 0.8rem; gap: 0.25rem; }
  .top-navigation a { padding: 0.65rem 0.5rem; text-align: center; }
  /* Oyunlar grid */
  .grid-6 { grid-template-columns: repeat(2, 1fr); grid-gap: 0.75rem; }
  .product { padding: 0.75rem; }
  .product .product-image { margin: -0.75rem; width: calc(100% + 1.5rem); }
  .product-name { font-size: 0.9rem; margin: 0.5rem 0; }
  .product .product-cta { padding: 0.5rem 0.75rem; font-size: 0.9rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .merchant-cta-buttons { flex-direction: column; }
  .merchant-cta-buttons .btn-site { width: 100%; }
  /* Anasayfa stats & FAQ */
  .home-stats-inner { gap: 0.75rem 1rem; padding: 0.65rem 0.85rem; }
  .home-stat { font-size: 0.85rem; }
  .faq-question { padding: 0.9rem 1rem; font-size: 0.95rem; }
  .faq-answer { padding: 0 1rem 0.85rem; }
  /* Footer */
  .site-footer-links { padding: 0.85rem 0; }
  .site-footer-nav { gap: 0.5rem 1rem; font-size: 0.85rem; }
  .site-footer-top .container { grid-template-columns: 1fr; text-align: center; }
  .site-footer-top-box { grid-template-columns: 1fr; justify-items: center; }
  .site-footer-top-box .icon { margin: 0 auto; }
  .site-footer-top-box p { grid-column: 1; }
  .site-footer-bottom .container { grid-template-columns: 1fr; text-align: center; }
  /* E-Pin Satın Al – mobil uyumlu, footer içeriğin altında kalsın */
  .ep-buy-page-wrap { min-height: calc(100vh - 160px); padding-bottom: 10rem; }
  .ep-page { padding: 0 12px; padding-bottom: 3rem; }
  .ep-hero { padding: 1.5rem 12px 1rem; }
  .ep-hero-title { font-size: 1.4rem; }
  .ep-hero-desc { font-size: 0.875rem; }
  .ep-box { padding: 1rem 1rem; margin-bottom: 0.875rem; border-radius: 14px; }
  .ep-step-head { margin-bottom: 0.75rem; gap: 0.5rem; }
  .ep-step-num { width: 26px; height: 26px; font-size: 0.8125rem; }
  .ep-step-title { font-size: 0.9375rem; }
  .ep-product-list { grid-template-columns: 1fr; gap: 0.5rem; }
  .ep-product-item { padding: 0.875rem 1rem; }
  .ep-payment-list { grid-template-columns: 1fr; gap: 0.5rem; }
  .ep-payment-item { width: 100%; padding: 0.85rem 0.75rem; font-size: 0.875rem; }
  .ep-form-footer { margin-top: 1.25rem; padding-top: 1rem; padding-bottom: 1rem; }
  .ep-btn { padding: 0.9rem 1.25rem; font-size: 0.9375rem; }
  .ep-footer-note { font-size: 0.75rem; margin-bottom: 0.75rem; }
  /* Banner slider mobil */
  .top-banner .fit-slider-wrapper { height: 140px; }
  .fit-slider-nav { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding-left: 0.75rem; padding-right: 0.75rem; }
  .top-navigation { grid-template-columns: 1fr; font-size: 0.85rem; }
  .top-navigation a { padding: 0.75rem; }
  .grid-6 { grid-template-columns: 1fr; }
  .site-header-side.left a picture img { max-width: 100px; }
}

/* Contact page – koyu kartlar, beyaz/açık yazı (eskisi gibi) */
.recent-game-section.contact-content-section {
  background: #1a1a1a;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.recent-game-section.contact-content-section .mp-card,
.recent-game-section.contact-content-section .contact-card {
  background: #2a2a2a;
  border: 1px solid #404040;
  border-radius: 14px;
  padding: 1.5rem;
  color: #e0e0e0;
}
.recent-game-section.contact-content-section .mp-card h4,
.recent-game-section.contact-content-section .contact-card__title,
.recent-game-section.contact-content-section .contact-card__heading {
  color: #ffb320;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.recent-game-section.contact-content-section .mp-card p,
.recent-game-section.contact-content-section .contact-card__company {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}
.recent-game-section.contact-content-section .contact-card__address,
.recent-game-section.contact-content-section .contact-card__number,
.recent-game-section.contact-content-section .contact-card__text,
.recent-game-section.contact-content-section .contact-card__hint {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0.75rem;
}
.recent-game-section.contact-content-section .contact-card__email {
  color: #b8b8b8;
  font-size: 14px;
  margin-top: 0.5rem;
}
.recent-game-section.contact-content-section .contact-card__link {
  color: #ffb320;
  text-decoration: none;
}
.recent-game-section.contact-content-section .contact-card__link:hover {
  text-decoration: underline;
  color: #ffc040;
}
.recent-game-section.contact-content-section .contact-form__label {
  color: #e8e8e8;
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}
.recent-game-section.contact-content-section .contact-form__control,
.recent-game-section.contact-content-section .form-control {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #404040;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  width: 100%;
  font-size: 1rem;
}
.recent-game-section.contact-content-section .contact-form__control::placeholder,
.recent-game-section.contact-content-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.recent-game-section.contact-content-section .contact-form__control:focus,
.recent-game-section.contact-content-section .form-control:focus {
  outline: none;
  border-color: #ffb320;
}
.recent-game-section.contact-content-section .contact-form__hint {
  color: #9ca3af;
  font-size: 12px;
  display: block;
  margin-top: 0.25rem;
}
.recent-game-section.contact-content-section .contact-form .form-group {
  margin-bottom: 1rem;
}
.recent-game-section.contact-content-section .contact-form .site-btn {
  margin-top: 0.5rem;
  background: #ffb320;
  color: #131313;
}
.recent-game-section.contact-content-section .contact-form .site-btn:hover {
  background: #e59a00;
  color: #131313;
}
.recent-game-section.contact-content-section .alert-success {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.5);
}
.recent-game-section.contact-content-section .alert-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.5);
}
.recent-game-section.contact-content-section .text-muted {
  color: #9ca3af !important;
}
/* Fallback when not inside contact-content-section */
.contact-card {
  background: #2a2a2a;
  border: 1px solid #404040;
  border-radius: 14px;
  padding: 1.5rem;
}
.contact-card__title,
.contact-card__heading { color: #ffb320; margin-bottom: 1rem; font-size: 1.1rem; }
.contact-card__company { color: #e0e0e0; margin-bottom: 0.5rem; }
.contact-card__address,
.contact-card__number,
.contact-card__text,
.contact-card__hint { color: #b0b0b0; font-size: 14px; line-height: 1.6; margin-top: 0.75rem; }
.contact-card__email { color: #b0b0b0; font-size: 14px; margin-top: 0.5rem; }
.contact-card__link { color: #ffb320; text-decoration: none; }
.contact-card__link:hover { text-decoration: underline; }
.contact-form__label { color: #e0e0e0; display: block; margin-bottom: 0.35rem; }
.contact-form__control {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #404040;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  width: 100%;
}
.contact-form__control:focus { outline: none; border-color: #ffb320; }
.contact-form__hint { color: #888; font-size: 12px; display: block; margin-top: 0.25rem; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form .site-btn { margin-top: 0.5rem; }

/* Order Lookup (order-status) – okunaklı tasarım */
.ep-order-status-hero.page-info-section {
  min-height: 200px;
  background: #252525;
}
.ep-order-status-hero .pi-content {
  bottom: 28px;
}
.ep-order-status-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.ep-order-status-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
}
.ep-order-status-section {
  background: #1a1a1a;
}
.ep-order-status-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.ep-order-status-help {
  color: #b8b8b8;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}
.ep-order-status-form .form-label {
  color: #e8e8e8;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.ep-order-status-form .form-control {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
}
.ep-order-status-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.ep-order-status-form .form-control:focus {
  border-color: #ffb320;
  outline: none;
}
.ep-order-status-form .site-btn {
  margin-top: 0.25rem;
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
  min-width: 140px;
}
.ep-order-status-hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 1.5rem 0 1rem;
}
.ep-order-status-result {
  color: #e0e0e0;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.ep-order-status-result code {
  background: rgba(255, 255, 255, 0.1);
  color: #ffb320;
  padding: 0.2em 0.5em;
  border-radius: 6px;
  font-size: 0.9em;
}
.ep-order-status-card .alert-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.4);
}
.ep-order-status-card .epin-code-box {
  background: rgba(255, 179, 32, 0.12);
  color: #ffb320;
  border: 1px solid rgba(255, 179, 32, 0.35);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}
@media (max-width: 767px) {
  .ep-order-status-hero .pi-content { bottom: 20px; }
  .ep-order-status-title { font-size: 1.4rem; }
  .ep-order-status-intro { font-size: 0.9375rem; }
  .ep-order-status-card { padding: 1.25rem 1rem; }
}

/* Bank Transfer (order-bank) – büyük, net, havale hesabı belirgin */
.ep-bank-hero.page-info-section {
  min-height: 180px;
  background: #252525;
}
.ep-bank-hero .pi-content {
  position: absolute;
  width: 100%;
  bottom: 32px;
  left: 0;
  z-index: 2;
}
.ep-bank-hero-title {
  font-size: 1.85rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.ep-bank-section {
  background: #1a1a1a;
  padding-bottom: 2rem;
}
.ep-bank-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}
.ep-bank-instructions {
  color: #d8d8d8;
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.ep-bank-details-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffb320;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.ep-bank-details {
  margin-bottom: 2rem;
  padding: 2rem 2rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 100%);
  border: 2px solid rgba(255, 179, 32, 0.35);
  border-radius: 14px;
  border-left: 4px solid #ffb320;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.ep-bank-detail-row {
  color: #f5f5f5;
  font-size: 1.2rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  font-weight: 500;
}
.ep-bank-detail-row strong {
  color: #ffb320;
  font-weight: 700;
  min-width: 8rem;
  display: inline-block;
  font-size: 1.05rem;
}
.ep-bank-detail-last { margin-bottom: 0; }
.ep-bank-code {
  display: block;
  background: rgba(255, 179, 32, 0.18);
  color: #ffe066;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-family: 'Consolas', 'Monaco', 'Liberation Mono', monospace;
  margin-top: 0.5rem;
  border: 2px solid rgba(255, 179, 32, 0.5);
  word-break: break-all;
  line-height: 1.5;
}
.ep-bank-detail-row .ep-bank-code {
  margin-top: 0.45rem;
}
.ep-bank-amount-box {
  background: rgba(255, 179, 32, 0.14);
  border: 2px solid rgba(255, 179, 32, 0.4);
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.75rem;
}
.ep-bank-amount-row {
  color: #f5ecd8;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.ep-bank-amount-row:last-of-type { margin-bottom: 0.6rem; }
.ep-bank-order-no {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffb320;
  margin: 0.4rem 0 0.5rem;
  letter-spacing: 0.03em;
}
.ep-bank-order-hint {
  color: rgba(255, 179, 32, 0.95);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0.5rem 0 0;
}
.ep-bank-receipt-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border: 1px solid rgba(255, 179, 32, 0.3);
}
.ep-bank-receipt-title {
  color: #ffb320;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.ep-bank-receipt-intro {
  color: #b8b8b8;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.ep-bank-receipt-uploaded {
  color: #86efac;
  margin: 0 0 0.25rem;
}
.ep-bank-uploaded-at {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}
.ep-bank-alert-success {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: #86efac;
}
.ep-bank-alert-danger {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  margin-bottom: 1rem;
}
.ep-bank-receipt-form .ep-bank-receipt-label {
  display: block;
  color: #e0e0e0;
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
}
.ep-bank-file-input {
  color: #e0e0e0;
  font-size: 0.9375rem;
}
.ep-bank-receipt-form .site-btn { margin-top: 0.25rem; }
.ep-bank-footer-note {
  color: #b0b0b0;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 1.25rem 0 0;
}
.ep-bank-link {
  color: #ffb320;
  text-decoration: none;
}
.ep-bank-link:hover { color: #ffc040; text-decoration: underline; }
.ep-bank-btn-lookup { margin-top: 1rem; }
@media (max-width: 767px) {
  .ep-bank-hero-title { font-size: 1.5rem; }
  .ep-bank-card { padding: 1.5rem 1.25rem; }
  .ep-bank-details { padding: 1.5rem 1.25rem; }
  .ep-bank-detail-row { font-size: 1.1rem; }
  .ep-bank-code { font-size: 1.15rem; padding: 0.7rem 1rem; letter-spacing: 0.08em; }
}

/* Order Result – okunaklı tasarım + EN/TR */
.ep-order-result-hero.page-info-section {
  min-height: 160px;
  background: #252525;
}
.ep-order-result-hero .pi-content {
  position: absolute;
  width: 100%;
  bottom: 28px;
  left: 0;
  z-index: 2;
}
.ep-order-result-title {
  font-size: 1.65rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.ep-order-result-section {
  background: #1a1a1a;
}
.ep-order-result-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.ep-order-result-alert-success {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: #86efac;
  margin-bottom: 1rem;
}
.ep-order-result-alert-info {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  color: #93c5fd;
  margin-bottom: 1rem;
}
.ep-order-result-alert-warning {
  background: rgba(255, 179, 32, 0.15);
  border-color: rgba(255, 179, 32, 0.4);
  color: #f0e6d0;
  margin-bottom: 1rem;
}
.ep-order-result-product {
  color: #d0d0d0;
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.ep-order-result-epin-label {
  color: #b8b8b8;
  font-size: 0.9375rem;
  margin: 0 0 0.35rem;
}
.ep-order-result-code.epin-code-box {
  background: rgba(255, 179, 32, 0.12);
  color: #ffb320;
  border: 1px solid rgba(255, 179, 32, 0.35);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}
.ep-order-result-hint {
  color: #b0b0b0;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 0 0.75rem;
}
.ep-order-result-link {
  color: #ffb320;
  text-decoration: none;
}
.ep-order-result-link:hover { color: #ffc040; text-decoration: underline; }
.ep-order-result-order-label {
  color: #e0e0e0;
  font-size: 0.9375rem;
  margin: 0 0 0.35rem;
}
.ep-order-result-order-no {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffb320;
  background: rgba(255, 179, 32, 0.12);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.ep-order-result-pending {
  color: #9ca3af;
  font-size: 0.9375rem;
  margin: 0 0 1rem;
}
.ep-order-result-card .site-btn { margin-top: 0.25rem; }
@media (max-width: 767px) {
  .ep-order-result-title { font-size: 1.35rem; }
  .ep-order-result-card { padding: 1.25rem 1rem; }
}
