/* ============================================
   MegaPari Clone - Mobile First Final CSS
   ============================================ */

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f0f0f0;
  color: #222;
  font-size: 14px;
  line-height: 1.4;
  overflow-x: hidden;
}

.app-container {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

/* ─── HEADER ─── */
.header {
  grid-column: 1 / -1;
  min-height: 50px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  z-index: 100;
  position: sticky;
  top: 0;
}
.header-left { display:flex; align-items:center; gap:6px; min-width: 0; }
.header-right { display:flex; align-items:center; gap:4px; flex-shrink: 0; }
.logo { font-size:16px; font-weight:800; color:#fff; letter-spacing:1px; }
.logo span { color:#e53935; }
.country-flag { display: none; } 
.header-licenses { display:none; } 
.header-icon-btn {
  width:32px; height:32px;
  background:transparent;
  border:none;
  color:#999;
  font-size:18px;
  cursor:pointer;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink: 0;
}
.header-icon-btn:hover { background:#333; color:#fff; }

.btn-register {
  background:#e53935;
  color:#fff;
  border:none;
  padding:7px 10px;
  border-radius:6px;
  font-size:11px;
  font-weight:600;
  cursor:pointer;
  text-transform:uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-register:hover { background:#c62828; }
.btn-login {
  background:transparent;
  color:#fff;
  border:1px solid #555;
  padding:6px 10px;
  border-radius:6px;
  font-size:11px;
  font-weight:600;
  cursor:pointer;
  text-transform:uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-login:hover { border-color:#fff; }
.btn-deposit-header {
  background:#e53935; color:#fff; border:none;
  padding:7px 10px; border-radius:6px; font-size:12px; font-weight:700;
  cursor:pointer; text-transform:uppercase; white-space: nowrap; flex-shrink: 0;
}
.user-balance-header {
  color:#fff; font-size:11px; text-align:right; line-height:1.3;
}
.user-balance-header span { display:block; font-weight:700; font-size:13px; }

/* ─── NAVBAR ─── */
.navbar {
  grid-column: 1 / -1;
  height: 40px;
  background: #009fe3;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.navbar::-webkit-scrollbar { display: none; }
.navbar-item {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.navbar-item:hover, .navbar-item.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-bottom-color: #fff;
}
.navbar-item.hot { background:rgba(229,57,53,0.3); }

/* ─── SIDEBAR (Mobilde Gizli) ─── */
.sidebar { display: none; }

/* ─── MAIN CONTENT ─── */
.main-content {
  background: #f0f0f0;
  overflow-y: auto;
  padding-bottom: 20px;
}

/* ─── HERO BANNER ─── */
.hero-banner {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #1a237e 0%, #009fe3 40%, #e53935 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-content { text-align:center; color:#fff; z-index:2; padding:20px; }
.hero-title { font-size:22px; font-weight:800; margin-bottom:8px; }
.hero-btn {
  display:inline-block;
  background:#e53935;
  color:#fff;
  padding:10px 24px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  text-transform:uppercase;
}
.hero-arrow {
  position:absolute;
  top:50%; transform:translateY(-50%);
  width:32px; height:32px;
  background:rgba(0,0,0,0.3);
  color:#fff;
  border:none;
  border-radius:50%;
  font-size:16px;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  z-index:3;
}
.hero-arrow-left { left:8px; }
.hero-arrow-right { right:8px; }
.hero-nav { position:absolute; bottom:10px; display:flex; gap:6px; z-index:3; }
.hero-dot { width:6px; height:6px; background:rgba(255,255,255,0.4); border-radius:50%; cursor:pointer; }
.hero-dot.active { background:#fff; width:18px; border-radius:3px; }

/* ─── WINNER TICKER ─── */
.winner-ticker { background:#1a1a1a; padding:8px 0; overflow:hidden; }
.ticker-track { display:flex; animation: ticker 30s linear infinite; width: max-content; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item { display:flex; align-items:center; gap:10px; padding:0 20px; white-space:nowrap; color:#888; font-size:12px; }
.ticker-id { color:#666; }
.ticker-game { color:#aaa; }
.ticker-amount { color:#4caf50; font-weight:600; }

/* ─── MATCH FILTERS ─── */
.match-filters {
  background:#fff;
  padding:10px;
  display:flex;
  align-items:center;
  gap:10px;
  border-bottom:1px solid #e0e0e0;
  flex-wrap: wrap;
}
.filter-tabs { display:flex; gap:4px; width:100%; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab { padding:6px 12px; font-size:13px; color:#666; cursor:pointer; border-radius:6px; }
.filter-tab.active { background:#e8e8e8; color:#222; font-weight:600; }
.filter-sports { display:flex; gap:4px; width:100%; overflow-x: auto; scrollbar-width: none; }
.filter-sports::-webkit-scrollbar { display: none; }
.filter-sport-btn { padding:6px 12px; background:#f5f5f5; border:1px solid #ddd; border-radius:6px; font-size:12px; cursor:pointer; color:#555; white-space: nowrap; }
.filter-sport-btn.active { background:#009fe3; color:#fff; border-color:#009fe3; }
.search-box { display:flex; align-items:center; gap:6px; background:#f5f5f5; border:1px solid #ddd; border-radius:6px; padding:5px 10px; width: 100%; }
.search-box input { border:none; background:transparent; outline:none; font-size:13px; width:100%; }

/* ─── MATCH LIST ─── */
.match-list { padding:0; }
.league-header { background:#fff; padding:10px 12px; display:flex; align-items:center; gap:10px; border-bottom:1px solid #eee; font-size:13px; font-weight:600; color:#333; }
.league-icon { width:24px; height:24px; background:#e8e8e8; border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:700; color:#666; }
.league-count { margin-left:auto; color:#999; font-weight:400; font-size:12px; }
.match-row { display:flex; background:#fff; border-bottom:1px solid #f0f0f0; flex-direction: column; padding: 10px 12px; }
.match-row:nth-child(even) { background:#f7f7f7; }
.match-row:hover { background:#fff3e0; }
.match-info { width: 100%; margin-bottom: 10px; }
.match-time { font-size:11px; color:#888; margin-bottom: 4px; display: flex; justify-content: space-between; align-items: center; }
.match-live-badge { display:inline-flex; align-items:center; gap:4px; color:#e53935; font-weight:600; font-size:11px; }
.match-live-dot { width:6px; height:6px; background:#e53935; border-radius:50%; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.match-score { color:#e53935; font-weight:700; font-size: 13px; }
.match-teams { display:flex; flex-direction:column; gap:4px; }
.team-name { font-size:14px; color:#222; display:flex; align-items:center; justify-content: space-between; gap:6px; }
.team-logo { font-size:14px; }
.match-odds { display:flex; align-items:center; justify-content: space-between; gap:6px; width: 100%; }
.odd-group { display:flex; gap:6px; width: 100%; }
.odd-cell { background:#fff; border:1px solid #e0e0e0; border-radius:6px; padding:6px 0; text-align:center; cursor:pointer; flex: 1; }
.odd-cell:hover { background:#fff3e0; border-color:#ff9800; }
.odd-cell.selected { background:#ffe082; border-color:#ff9800; }
.odd-label { font-size:10px; color:#888; margin-bottom:2px; }
.odd-value { font-size:14px; color:#222; font-weight:600; }
.odd-more-btn { background:#f5f5f5; border:1px solid #e0e0e0; border-radius:6px; padding:6px 10px; font-size:12px; color:#666; cursor:pointer; white-space:nowrap; flex: 0.5; }

/* ─── GAME CARDS ─── */
.game-cards-section { padding:12px; }
.section-title { font-size:16px; font-weight:700; color:#222; margin-bottom:12px; }
.game-cards-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:10px; }
.game-card { background:#fff; border-radius:8px; overflow:hidden; cursor:pointer; }
.game-card-img { height:80px; display:flex; align-items:center; justify-content:center; font-size:32px; }
.game-card-name { padding:8px; font-size:12px; font-weight:600; text-align:center; color:#333; }

/* ─── RIGHT PANEL ─── */
.right-panel { display: none; }

/* ─── DASHBOARD MOBİL YAPISI ─── */
.dashboard-container { display: grid; grid-template-columns: 1fr; min-height: calc(100vh - 90px); grid-column: 1 / -1; }
.dash-sidebar { display: none; }
.dash-main { background:#f0f0f0; padding:12px; overflow-y:auto; }
.dash-info-banner { background:#fff9e6; border:1px solid #ffe082; border-radius:8px; padding:12px; display:flex; align-items:center; gap:10px; margin-bottom:12px; font-size:13px; color:#555; flex-wrap: wrap; }
.dash-info-banner .close-btn { margin-left:auto; background:transparent; border:none; font-size:18px; color:#999; cursor:pointer; }
.dash-page-title { font-size:20px; font-weight:700; color:#222; margin-bottom:4px; }
.dash-page-subtitle { font-size:13px; color:#888; margin-bottom:16px; }

/* ─── PAYMENT PAGE (Mobil) ─── */
.payment-layout { display:grid; grid-template-columns:1fr; gap:12px; }
.payment-categories { background:#fff; border-radius:8px; overflow:hidden; display: flex; overflow-x: auto; scrollbar-width: none; }
.payment-categories::-webkit-scrollbar { display: none; }
.payment-cat-item { display:flex; align-items:center; justify-content:center; padding:10px 16px; font-size:13px; color:#555; cursor:pointer; border-right:1px solid #f0f0f0; white-space: nowrap; }
.payment-cat-item.active { background:#555; color:#fff; }
.payment-cat-count { background:#e0e0e0; color:#666; font-size:11px; padding:2px 8px; border-radius:10px; margin-left: 6px; }
.payment-methods { background:#fff; border-radius:8px; padding:16px; }
.payment-methods-title { font-size:13px; font-weight:600; color:#888; text-transform:uppercase; margin-bottom:12px; }
.payment-methods-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:10px; }
.payment-method-card { border:1px solid #e0e0e0; border-radius:10px; padding:12px; text-align:center; cursor:pointer; position:relative; background:#fff; }
.payment-method-badge { position:absolute; top:-6px; left:-6px; padding:2px 8px; border-radius:10px; font-size:9px; font-weight:700; color:#fff; }
.badge-top { background:#e53935; }
.payment-method-icon { font-size:24px; margin-bottom:6px; }
.payment-method-name { font-size:13px; font-weight:700; color:#222; }
.payment-method-desc { font-size:10px; color:#999; margin-top:4px; }

/* ─── PAYMENT CONFIRM (Mobil) ─── */
.payment-confirm-card { max-width:100%; margin:0; background:#fff; padding:20px 16px; }
.confirm-title { text-align:center; font-size:24px; font-weight:800; color:#1f2937; margin-bottom:8px; }
.confirm-title-line { width:60px; height:3px; background:#2563eb; margin:0 auto 16px; border-radius:2px; }
.confirm-field { display:flex; flex-direction: column; align-items:flex-start; border:1px solid #e5e7eb; border-radius:8px; padding:12px; margin-bottom:10px; background:#fff; gap: 6px; }
.confirm-field-label { font-size:12px; font-weight:600; color:#6b7280; text-transform:uppercase; }
.confirm-field-value { font-size:14px; font-weight:600; color:#111827; width: 100%; font-family:'Courier New',monospace; word-break: break-all; }
.confirm-field-copy { align-self: flex-end; width:36px; height:36px; border:1px solid #e5e7eb; border-radius:6px; background:#fff; color:#9ca3af; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:16px; }
.confirm-submit-btn { width:100%; background:#2563eb; color:#fff; border:none; padding:16px; border-radius:8px; font-size:16px; font-weight:600; cursor:pointer; margin-top:16px; }

/* ─── MODALS (Mobil) ─── */
.modal-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,0.6); backdrop-filter:blur(4px);
  z-index:1000; display:flex; align-items:flex-end; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity 0.2s; padding: 0;
}
.modal-overlay.show { opacity:1; pointer-events:all; }
.modal-box {
  background:#fff; border-radius:16px 16px 0 0; width: 100% !important; max-width: 100% !important;
  max-height: 90vh !important; overflow-y:auto; padding:20px 16px !important;
  position:relative; box-shadow:0 -5px 20px rgba(0,0,0,0.3);
  transform:translateY(20px); transition:transform 0.2s;
}
.modal-overlay.show .modal-box { transform:translateY(0); }
.modal-close { position:absolute; top:12px; right:12px; width:32px; height:32px; background:#f0f0f0; border:none; font-size:20px; color:#666; cursor:pointer; border-radius:50%; display:flex; align-items:center; justify-content:center; z-index: 10; }
.modal-title { font-size:20px; font-weight:700; color:#222; text-align:center; margin-bottom:16px; }

.login-input { width:100%; padding:14px 16px; border:1px solid #ddd; border-radius:10px; font-size:15px; outline:none; color:#333; margin-bottom:12px; }
.login-input-wrapper { position:relative; margin-bottom:12px; }
.login-input-wrapper .login-input { margin-bottom:0; padding-right:44px; }
.login-input-icon { position:absolute; right:12px; top:50%; transform:translateY(-50%); font-size:18px; color:#999; cursor:pointer; }
.login-remember-row { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; flex-direction: row-reverse; gap: 10px; }
.login-remember-row label { display:flex; align-items:center; gap:6px; font-size:13px; color:#555; cursor:pointer; }
.login-forgot { font-size:13px; color:#009fe3; cursor:pointer; text-decoration:none; }
.login-btn { width:100%; background:#e53935; color:#fff; border:none; padding:16px; border-radius:10px; font-size:16px; font-weight:700; cursor:pointer; text-transform:uppercase; margin-bottom:16px; }
.login-divider-text { text-align:center; font-size:12px; color:#999; margin-bottom:12px; }
.login-social-row { display:flex; justify-content:center; gap:16px; }
.login-social-btn { width:48px; height:48px; border-radius:50%; border:1px solid #e0e0e0; background:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:20px; }
.login-error { background:#ffebee; color:#c62828; padding:10px 14px; border-radius:8px; font-size:13px; margin-bottom:12px; display:none; }

.reg-tabs { display:flex; gap:4px; margin-bottom:16px; }
.reg-tab { flex:1; padding:10px 8px; background:#f5f5f5; border:none; border-radius:8px; font-size:12px; color:#555; cursor:pointer; text-align:center; font-weight:500; }
.reg-tab.active { background:#333; color:#fff; }
.reg-bonus-section { border:1px solid #e0e0e0; border-radius:10px; padding:12px; margin-bottom:16px; }
.reg-bonus-header { display:flex; align-items:center; justify-content:space-between; cursor:pointer; font-size:14px; font-weight:600; color:#222; margin-bottom:10px; }
.reg-bonus-options { display:flex; gap:8px; flex-direction: column; }
.reg-bonus-opt { width: 100%; padding:12px; border:1px solid #e0e0e0; border-radius:8px; cursor:pointer; font-size:13px; }
.reg-bonus-opt:hover, .reg-bonus-opt.active { border-color:#009fe3; background:#f0f8ff; }
.reg-bonus-opt-title { font-weight:700; color:#222; margin-bottom:4px; }
.reg-bonus-opt-desc { color:#888; font-size:11px; line-height:1.3; }
.reg-row { display:flex; gap:10px; margin-bottom:12px; flex-direction: column; }
.reg-row > * { width: 100%; }
.reg-label { display:block; font-size:12px; font-weight:600; color:#555; margin-bottom:6px; }
.reg-input { width:100%; padding:12px; border:1px solid #ddd; border-radius:8px; font-size:14px; outline:none; color:#333; background:#fff; }
.reg-select { width:100%; padding:12px; border:1px solid #ddd; border-radius:8px; font-size:14px; outline:none; background:#fff; color:#333; }
.reg-submit-row { display:flex; gap:10px; align-items:stretch; flex-direction: column; }
.reg-submit-btn { background:#e53935; color:#fff; border:none; padding:14px; border-radius:8px; font-size:15px; font-weight:700; cursor:pointer; text-transform:uppercase; width: 100%; }
.reg-legal { font-size:11px; color:#999; text-align:center; margin-top:12px; line-height:1.4; }
.reg-error { background:#ffebee; color:#c62828; padding:10px 14px; border-radius:8px; font-size:13px; margin-bottom:12px; display:none; }

.havale-modal-header { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.havale-modal-header i { font-size:24px; color:#666; }
.havale-modal-header h3 { font-size:18px; font-weight:700; color:#333; }
.havale-field { margin-bottom:12px; }
.havale-label { display:block; font-size:13px; font-weight:600; color:#555; margin-bottom:6px; }
.havale-input { width:100%; padding:12px; border:1px solid #ddd; border-radius:8px; font-size:14px; outline:none; color:#333; }
.havale-input:focus { border-color:#009fe3; }
.havale-quick-amounts { display:grid; grid-template-columns: repeat(2, 1fr); gap:8px; margin-bottom:12px; }
.havale-quick-btn { padding:10px; border:1px solid #ddd; border-radius:6px; background:#fff; font-size:13px; font-weight:600; cursor:pointer; color:#333; }
.havale-confirm-btn { width:100%; background:#e53935; color:#fff; border:none; padding:16px; border-radius:8px; font-size:16px; font-weight:700; cursor:pointer; text-transform:uppercase; margin-top:6px; }

/* ─── FOOTER ─── */
.footer { background:#1a1a1a; color:#aaa; padding:20px 12px; }
.footer-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; margin-bottom:20px; }
.footer-col-title { font-size:14px; font-weight:700; color:#fff; margin-bottom:8px; }
.footer-link { display:block; color:#888; text-decoration:none; font-size:13px; padding:3px 0; }
.footer-app-btn { display:inline-flex; align-items:center; gap:6px; color:#888; text-decoration:none; font-size:12px; padding:6px 10px; border:1px solid #444; border-radius:6px; margin-bottom:6px; }
.footer-awards { margin-bottom:20px; }
.footer-awards-title { font-size:14px; font-weight:700; color:#fff; margin-bottom:10px; }
.footer-awards-row { display:flex; gap:10px; flex-wrap:wrap; }
.award-badge { background:#2a2a2a; border:1px solid #444; border-radius:6px; padding:8px 12px; text-align:center; }
.award-badge-name { display:block; font-size:11px; color:#ccc; font-weight:600; }
.award-badge-year { display:block; font-size:10px; color:#888; margin-top:2px; }
.footer-bottom { display:flex; flex-direction: column; gap: 16px; padding-top:16px; border-top:1px solid #333; margin-bottom:16px; }
.footer-support { text-align:center; }
.footer-support-title { font-size:14px; font-weight:700; color:#fff; }
.footer-support-phone { font-size:14px; color:#aaa; }
.footer-copyright { font-size:11px; color:#666; max-width:100%; text-align: center; }
.footer-social { display:flex; gap:10px; justify-content: center; }
.social-icon { width:36px; height:36px; background:#2a2a2a; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#888; text-decoration:none; font-size:14px; }
.footer-legal { display:flex; flex-direction: column; gap: 10px; padding-top:16px; border-top:1px solid #333; text-align: center; }
.footer-18plus { background:#e53935; color:#fff; font-weight:800; font-size:12px; padding:4px 10px; border-radius:4px; align-self: center; }
.footer-mobile-btn { background:#333; color:#aaa; border:1px solid #555; padding:8px 14px; border-radius:6px; font-size:12px; cursor:pointer; }

::-webkit-scrollbar { width:0px; height:0px; }

/* ============================================
   RESPONSIVE: TABLET & DESKTOP (768px ve üzeri)
   ============================================ */
@media (min-width: 768px) {
  .app-container { grid-template-columns: 68px 1fr; }
  .header { padding: 0 16px; }
  .btn-register, .btn-login { padding: 8px 14px; font-size: 13px; }
  .header-left { gap: 12px; }
  .header-right { gap: 8px; }
  
  .main-content { padding-bottom: 0; }
  .sidebar { display: flex; background: #0f0f0f; flex-direction: column; align-items: center; padding: 8px 0; gap: 2px; overflow-y: auto; }
  .sidebar-item { width: 50px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 18px; border-radius: 8px; cursor: pointer; position: relative; color: #888; }
  
  .modal-overlay { align-items: center; }
  .modal-box { border-radius: 16px; max-width: 460px !important; padding: 28px !important; }
  .reg-row { flex-direction: row; }
  .reg-bonus-options { flex-direction: row; flex-wrap: wrap; }
  .reg-bonus-opt { flex: 1; min-width: 120px; }
  .reg-submit-row { flex-direction: row; }
  .havale-quick-amounts { display: flex !important; gap: 8px; margin-bottom: 14px; }
  .havale-quick-btn { flex: 1; min-width: 60px; }
  
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .game-cards-grid { grid-template-columns: repeat(4, 1fr); }

  /* DASHBOARD TABLET/PC YAPISI */
  .dashboard-container { display: grid; grid-template-columns: 280px 1fr; min-height: calc(100vh - 90px); grid-column: 1 / -1; }
  .dash-sidebar { display: block; background: #1a1a1a; color: #fff; padding: 0; overflow-y: auto; position: sticky; top: 90px; height: calc(100vh - 90px); }
  .dash-user-info { padding: 16px; border-bottom: 1px solid #333; margin-bottom: 8px; }
  .dash-user-id { font-size: 14px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
  .dash-user-id .copy-icon { color: #666; cursor: pointer; font-size: 12px; }
  .dash-user-email { font-size: 12px; color: #888; margin-top: 4px; }
  .dash-user-progress { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
  .dash-progress-circle { width: 36px; height: 36px; border-radius: 50%; border: 3px solid #333; border-top-color: #009fe3; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #009fe3; font-weight: 700; }
  .dash-stats { padding: 8px 16px; border-bottom: 1px solid #333; margin-bottom: 8px; }
  .dash-stat-row { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; font-size: 13px; }
  .dash-stat-label { color: #888; }
  .dash-stat-value { color: #fff; font-weight: 600; }
  .dash-menu-section { padding: 4px 0; border-bottom: 1px solid #2a2a2a; }
  .dash-section-title { font-size: 11px; text-transform: uppercase; color: #666; padding: 8px 16px 4px; font-weight: 600; }
  .dash-menu-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; color: #ccc; cursor: pointer; font-size: 13px; position: relative; }
  .dash-menu-item:hover { background: #252525; color: #fff; }
  .dash-menu-item.active { color: #009fe3; background: #1a2a3a; }
  .dash-menu-item.active::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; background: #009fe3; border-radius: 0 3px 3px 0; }
  .dash-menu-item i { width: 20px; text-align: center; font-size: 16px; }
  .dash-menu-badge { margin-left: auto; background: #e53935; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 10px; }
  .dash-main { background: #f0f0f0; padding: 24px; overflow-y: auto; }
  .dash-info-banner { background: #fff9e6; border: 1px solid #ffe082; border-radius: 8px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 13px; color: #555; }
  .dash-info-banner .close-btn { margin-left: auto; background: transparent; border: none; font-size: 18px; color: #999; cursor: pointer; }
  .dash-page-title { font-size: 20px; font-weight: 700; color: #222; margin-bottom: 4px; }
  .dash-page-subtitle { font-size: 14px; color: #888; margin-bottom: 20px; }
  
  /* Ödeme Sayfası PC Düzeni */
  .payment-layout { display: grid; grid-template-columns: 220px 1fr; gap: 16px; }
  .payment-categories { display: block; overflow: visible; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
  .payment-cat-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; font-size: 13px; color: #555; cursor: pointer; border-bottom: 1px solid #f0f0f0; border-right: none; white-space: normal; }
  .payment-methods { background: #fff; border-radius: 8px; padding: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
  .payment-methods-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  
  /* IBAN Onay Ekranı PC */
  .payment-confirm-card { max-width: 600px; margin: 40px auto; background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
  .confirm-field { display: flex; flex-direction: row; align-items: center; border: 1px solid #e5e7eb; border-radius: 8px; padding: 14px 16px; margin-bottom: 12px; background: #fff; gap: 10px; }
  .confirm-field-label { font-size: 13px; font-weight: 600; color: #6b7280; text-transform: uppercase; min-width: 140px; }
  .confirm-field-value { font-size: 15px; font-weight: 600; color: #111827; flex: 1; font-family: 'Courier New', monospace; }
  .confirm-field-copy { width: 36px; height: 36px; border: 1px solid #e5e7eb; border-radius: 6px; background: #fff; color: #9ca3af; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.15s; }
  .confirm-field-copy:hover { border-color: #2563eb; color: #2563eb; }
}

/* ─── DESKTOP (1200px ve üzeri) ─── */
@media (min-width: 1200px) {
  .app-container { grid-template-columns: 68px 1fr 310px; }
  .country-flag { display: block; background: #e53935; color: #fff; font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 3px; }
  .header-licenses { display: flex; gap: 6px; margin-left: 8px; }
  
  /* Sağ Panel PC Düzenlemesi */
  .right-panel { display: block; background:#f0f0f0; border-left:1px solid #e0e0e0; overflow-y:auto; padding-top: 12px; }
  .live-player { position: relative; height: 180px; background: linear-gradient(135deg, #1a1a1a, #333); border-radius: 8px; margin: 0 8px 12px 8px; overflow: hidden; }
  .live-player-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
  .live-player-title { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: space-between; padding: 8px 12px; background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent); color: #fff; font-size: 12px; }
  .live-player-label { font-weight: 600; }
  .live-player-collapse { color: #aaa; cursor: pointer; font-size: 11px; }
  .live-player-controls { position: absolute; bottom: 8px; right: 8px; display: flex; gap: 6px; }
  .live-player-btn { width: 28px; height: 28px; background: rgba(0,0,0,0.5); border: none; color: #fff; border-radius: 4px; cursor: pointer; font-size: 12px; }
  .live-player-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; background: rgba(0,0,0,0.6); border-radius: 50%; cursor: pointer; }
  .live-player-play::after { content: ''; display: block; width: 0; height: 0; border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin: 14px 0 0 18px; }
  
  .register-form-container { background: #fff; border-radius: 8px; padding: 16px; margin: 0 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
  .register-form-header { text-align: center; margin-bottom: 12px; }
  .register-form-title { font-size: 20px; font-weight: 700; color: #222; }
  .form-email-btn { width: 100%; background: #333; color: #fff; border: none; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
  .form-select-group { display: flex; gap: 8px; margin-bottom: 8px; }
  .form-select { flex: 1; padding: 8px 10px; border: 1px solid #ddd; border-radius: 6px; font-size: 12px; background: #fff; color: #333; }
  .form-input-group { position: relative; margin-bottom: 8px; }
  .form-input { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 13px; color: #333; outline: none; }
  .form-input:focus { border-color: #009fe3; }
  .form-submit-btn { width: 100%; background: #e53935; color: #fff; border: none; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; text-transform: uppercase; }
  .form-submit-btn:hover { background: #c62828; }
  
  .footer-grid { grid-template-columns: repeat(6, 1fr); }
}