/* ePIN Market - Ana CSS */
/* Gaming / Dark tema */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary:    #0a0a0f;
  --bg-secondary:  #12121a;
  --bg-card:       #1a1a26;
  --bg-hover:      #22223a;
  --border:        #2a2a40;
  --border-glow:   #4f46e5;

  --accent:        #6c63ff;
  --accent-2:      #f72585;
  --accent-3:      #4cc9f0;
  --gold:          #ffd700;

  --text-primary:  #f0f0ff;
  --text-secondary:#9999bb;
  --text-muted:    #5555777;

  --success:  #10b981;
  --warning:  #f59e0b;
  --danger:   #ef4444;
  --info:     #3b82f6;

  --radius:   10px;
  --radius-lg:16px;
  --shadow:   0 4px 24px rgba(0,0,0,.4);
  --shadow-glow: 0 0 20px rgba(108,99,255,.25);

  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-3); }

img { max-width: 100%; height: auto; }

::selection { background: var(--accent); color: #fff; }

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-glow); border-radius: 3px; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .02em;
}

/* =============================================
   LAYOUT
============================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 20px; }

.page-wrapper { min-height: calc(100vh - 140px); padding: 30px 0; }

.grid { display: grid; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* =============================================
   HEADER
============================================= */
.site-header {
  background: rgba(10,10,15,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo span { color: var(--accent); }
.site-logo:hover { color: var(--text-primary); }

.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 10px 44px 10px 16px;
  border-radius: 50px;
  font-size: 14px;
  transition: border-color .2s;
}
.header-search input:focus {
  outline: none;
  border-color: var(--accent);
}
.header-search-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--bg-card); }

.header-balance {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

/* =============================================
   MOBILE NAV
============================================= */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
}

/* =============================================
   HERO / SLIDER
============================================= */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  background: var(--bg-card);
  min-height: 380px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, #12122a 0%, #0a0a18 100%);
  opacity: 0;
  transition: opacity .5s;
}
.hero-slide.active { opacity: 1; position: relative; }

.hero-content { max-width: 500px; }
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub { color: var(--text-secondary); margin-bottom: 28px; }

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  object-fit: cover;
  opacity: .7;
}

/* =============================================
   SECTION TITLE
============================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  border-radius: 2px;
}

/* =============================================
   CATEGORY CHIPS
============================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}

.category-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
  color: var(--text-primary);
}
.category-chip:hover {
  border-color: var(--accent);
  background: var(--bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--text-primary);
}
.category-chip-icon { font-size: 28px; display: block; margin-bottom: 6px; }
.category-chip-name { font-size: 12px; font-weight: 600; }

/* =============================================
   PRODUCT CARDS
============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
  position: relative;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108,99,255,.2);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-secondary);
}
.product-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.product-card-body { padding: 14px; }
.product-card-category {
  font-size: 11px;
  color: var(--accent-3);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.product-card-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.product-price-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-stock-badge {
  font-size: 11px;
  color: var(--success);
  font-weight: 600;
}
.product-stock-badge.low { color: var(--warning); }
.product-stock-badge.out { color: var(--danger); }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* =============================================
   BUTONLAR
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #5a52e0);
  color: #fff;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.btn-outline:hover { border-color: var(--accent); color: var(--text-primary); }

.btn-success { background: var(--success); color: #fff; }
.btn-danger  { background: var(--danger); color: #fff; }
.btn-gold    { background: linear-gradient(135deg, var(--gold), #ffaa00); color: #000; }

.btn:disabled { opacity: .5; cursor: not-allowed; }

/* =============================================
   FORMLAR
============================================= */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 11px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--accent); }
.form-control::placeholder { color: var(--text-muted); }

select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }

/* =============================================
   KARTLAR
============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-body { padding: 20px; }
.card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

/* =============================================
   BADGE
============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge-success { background: rgba(16,185,129,.15); color: var(--success); }
.badge-danger  { background: rgba(239,68,68,.15);  color: var(--danger); }
.badge-warning { background: rgba(245,158,11,.15); color: var(--warning); }
.badge-info    { background: rgba(59,130,246,.15); color: var(--info); }
.badge-accent  { background: rgba(108,99,255,.15); color: var(--accent); }

/* =============================================
   TABLO
============================================= */
.table-wrap { overflow-x: auto; }
table.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 16px;
  text-align: left;
}
.data-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.data-table tbody tr:hover { background: var(--bg-hover); }

/* =============================================
   ALERT
============================================= */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-success { background: rgba(16,185,129,.1); border-color: var(--success); color: var(--success); }
.alert-danger   { background: rgba(239,68,68,.1);  border-color: var(--danger);  color: var(--danger); }
.alert-warning  { background: rgba(245,158,11,.1); border-color: var(--warning); color: var(--warning); }
.alert-info     { background: rgba(59,130,246,.1); border-color: var(--info);    color: var(--info); }

/* =============================================
   MODAL
============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform .2s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-title { font-family: var(--font-heading); font-size: 20px; }
.modal-close { background: none; border: none; color: var(--text-secondary); cursor: pointer; font-size: 20px; }
.modal-body  { padding: 20px; }
.modal-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; gap: 10px; justify-content: flex-end; }

/* =============================================
   SAYFALAMA
============================================= */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 30px;
}
.page-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.page-btn:hover, .page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* =============================================
   ÜRÜN DETAY
============================================= */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
}
.product-gallery img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.product-detail-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

/* =============================================
   SEPET
============================================= */
.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img { width: 64px; height: 64px; border-radius: var(--radius); object-fit: cover; background: var(--bg-secondary); }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; margin-bottom: 4px; }
.cart-item-price { color: var(--accent); font-weight: 700; }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-btn {
  width: 32px;
  height: 32px;
  background: var(--bg-secondary);
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 16px;
  transition: background .2s;
}
.qty-btn:hover { background: var(--accent); }
.qty-val { padding: 0 12px; font-weight: 600; font-size: 14px; }

/* =============================================
   KULLANICI PANELİ SIDEBAR
============================================= */
.panel-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
}
.panel-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 0;
  height: fit-content;
  position: sticky;
  top: 88px;
}
.panel-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  border-left: 3px solid transparent;
}
.panel-nav-item:hover { color: var(--text-primary); background: var(--bg-hover); }
.panel-nav-item.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(108,99,255,.08);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
}

/* =============================================
   YÜKLEME
============================================= */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* =============================================
   YILDIZ PUANLAMA
============================================= */
.stars { color: var(--gold); letter-spacing: 2px; }
.stars .empty { color: var(--border); }

/* =============================================
   TOAST
============================================= */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  min-width: 280px;
  max-width: 380px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: var(--shadow);
  animation: slideIn .3s ease;
}
.toast.success { border-left: 4px solid var(--success); }
.toast.error   { border-left: 4px solid var(--danger);  }
.toast.warning { border-left: 4px solid var(--warning); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { to { transform: translateX(120%); opacity: 0; } }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .panel-layout { grid-template-columns: 1fr; }
  .panel-sidebar { position: static; }
}

@media (max-width: 768px) {
  .header-search { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-link:not(.btn-primary):not(.header-balance) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: 260px; }
  .hero-slide { padding: 30px 20px; }
  .hero-title { font-size: 32px; }
  .hero-image { display: none; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   ADMIN / SATICI PANELİ
============================================= */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 250px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 200;
}
.admin-logo {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.admin-logo span { color: var(--accent); }
.admin-nav-section {
  padding: 16px 0 4px;
}
.admin-nav-section-title {
  padding: 0 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all .2s;
}
.admin-nav-item:hover { color: var(--text-primary); background: var(--bg-hover); }
.admin-nav-item.active { color: var(--accent); background: rgba(108,99,255,.1); border-right: 3px solid var(--accent); }
.admin-main {
  margin-left: 250px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.admin-topbar {
  height: 62px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-content { padding: 24px; flex: 1; }
.admin-page-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.stat-icon.purple { background: rgba(108,99,255,.15); }
.stat-icon.green  { background: rgba(16,185,129,.15); }
.stat-icon.red    { background: rgba(239,68,68,.15); }
.stat-icon.gold   { background: rgba(255,215,0,.15); }
.stat-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 4px; }
.stat-value { font-family: var(--font-heading); font-size: 28px; font-weight: 700; }

/* Kod kutusu (teslim edilen kodlar) */
.code-box {
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--success);
  word-break: break-all;
  white-space: pre-wrap;
}
