/* ============================
   RENK PALETİ (LOGO UYUMLU)
   ============================ */
:root {
  --bg: #f7f7f2;
  --card: #ffffff;
  --accent: #00c4cc;
  --accent-dark: #009ba1;
  --text: #2d2d2d;
  --muted: #6c757d;
  --heading: #1d3557;
  --border: #e0e0e0;
}

/* ============================
   GENEL
   ============================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", Ubuntu, Cantarell, Arial, sans-serif;
  background: #09111f;
  color: var(--text);
}

.tv-page {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #09111f;
}

.tv-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

/* ============================
   HEADER
   ============================ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 12px;        /* daraltıldı */
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  width: 100%;
  min-height: 60px;         /* header küçültüldü */
}

.header .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .logo {
  height: 70px;             /* küçültüldü */
  display: flex;
  align-items: center;
}
.header .logo img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

.header .center { text-align: center; flex: 1; }
.header .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--heading);
}
.header .title small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  margin-top: 1px;
  color: var(--muted);
}
.alt-lang { opacity: .9; }

/* ============================
   FOOTER
   ============================ */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--heading);
  font-size: 12px;
  width: 100%;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width:1200px) {
  body { overflow: auto; }
}

@media (max-width:768px) {
  body { overflow: hidden; }
}
