/* Color palette approximated from product */
:root {
  --bg-deep: #0e2024;        /* page background */
  --bg-header: #0f1f24;      /* header/nav bar */
  --bg-card: #13292f;        /* panels */
  --text: #e6f5f0;           /* primary text */
  --muted: #9ec2b7;          /* secondary text */
  --accent-green: #1ed9a5;   /* icons/accents */
  --accent-green-2: #2fbf93; /* gradients */
  --btn-yellow: #ffb300;     /* Üye ol */
  --btn-yellow-hover: #ffa000;
  --btn-outline: #0f483e;    /* outline border color */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Noto Sans", "Helvetica Neue", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--bg-header);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  position: relative;
}
.logo img { height: 48px; display: block; }

.main-nav { 
  display: none; 
  gap: 22px; 
  align-items: center; 
}
.nav-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}
.nav-item:hover { text-decoration: none; }
.nav-item .nav-label { transition: color .2s ease, text-shadow .2s ease; }
.nav-item:hover .nav-label { color: var(--btn-yellow); text-shadow: 0 1px 0 rgba(0,0,0,0.35); }
.nav-item .nav-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #124139;
  border: 2px solid var(--accent-green-2);
  box-shadow: 0 1px 0 rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.nav-item:hover .nav-icon { background: #1a5a4f; border-color: #46f0c4; transform: translateY(-1px); }
.nav-item .nav-icon img { width: 22px; height: 22px; object-fit: contain; display: block; filter: none; }
.nav-item .nav-label { white-space: nowrap; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 14px; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 14px;
}
.btn:visited, .btn:hover, .btn:active { text-decoration: none; }
.btn-primary { background: var(--btn-yellow); color: #132016; }
.btn-primary:hover { background: var(--btn-yellow-hover); }
.btn-outline { color: var(--text); border: 2px solid var(--accent-green-2); background: transparent; }
.btn-outline:hover { background: rgba(46, 255, 197, 0.08); }

.lang-pill { background: #11493f; color: #d1fff1; border: none; border-radius: 999px; padding: 8px 12px; font-weight: 700; cursor: pointer; text-decoration: none; }
.lang-dot { display: inline-block; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-green);
  transition: all .3s ease;
}
.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Main */
.site-main { padding: 32px 0 64px; }

/* Content area styles */
.content-area {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  color: var(--text);
  max-width: 100%;
}

.content-area h1 {
  color: var(--accent-green);
  font-size: 28px;
  margin: 0 0 24px;
  line-height: 1.3;
}

.content-area h2 {
  color: var(--accent-green-2);
  font-size: 22px;
  margin: 32px 0 16px;
  line-height: 1.3;
}

.content-area h3 {
  color: var(--text);
  font-size: 18px;
  margin: 24px 0 12px;
  line-height: 1.3;
}

.content-area p {
  margin: 0 0 16px;
  line-height: 1.7;
  color: var(--text);
}

.content-area a {
  color: var(--accent-green);
  text-decoration: underline;
  transition: color .2s ease;
}

.content-area a:hover {
  color: var(--btn-yellow);
}

.content-area ul,
.content-area ol {
  margin: 0 0 16px;
  padding-left: 24px;
  line-height: 1.7;
}

.content-area li {
  margin-bottom: 8px;
  color: var(--text);
}

.content-area strong {
  color: var(--accent-green-2);
  font-weight: 700;
}

/* Table styles */
.table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 8px;
  background: rgba(0,0,0,0.2);
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.content-table thead {
  background: rgba(30, 217, 165, 0.1);
}

.content-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--accent-green);
  border-bottom: 2px solid var(--accent-green-2);
}

.content-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
}

.content-table tbody tr:hover {
  background: rgba(30, 217, 165, 0.05);
}

.content-table tbody tr:last-child td {
  border-bottom: none;
}

/* FAQ section styles */
.faq-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid rgba(30, 217, 165, 0.2);
}

.faq-section h2 {
  color: var(--accent-green);
  font-size: 24px;
  margin-bottom: 24px;
}

.faq-item {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent-green-2);
}

.faq-item h3 {
  color: var(--accent-green-2);
  font-size: 16px;
  margin: 0 0 12px;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Hero slider */
.hero-slider { position: relative; padding: 16px 0 8px; }
.hero-slider .container { position: relative; }
.slider-track { position: relative; overflow: hidden; border-radius: 12px; }
.slide { display: none; }
.slide.is-active { display: block; }
.slide img { width: 100%; height: 260px; object-fit: cover; display: block; border-radius: 12px; background: #0d1a1f; }
.slider-btn { 
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.35); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; font-size: 22px; line-height: 1;
}
.slider-btn:hover { background: rgba(0,0,0,0.5); }
.slider-btn.prev { left: 8px; }
.slider-btn.next { right: 8px; }

/* Footer */
.site-footer { background: #0d1a1f; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { padding: 28px 0; }
.footer-columns { display: grid; grid-template-columns: 1fr; gap: 24px; }
.footer-col { }
.footer-links { list-style: none; padding: 0; margin: 0; columns: 1; column-gap: 24px; }
.footer-links li { break-inside: avoid; margin: 8px 0; }
.footer-links a { color: var(--muted); text-decoration: none; display: inline-block; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--accent-green); transform: scale(1.03); }
.badge-col { display: flex; align-items: flex-start; }
.gcb-badge { width: 120px; height: auto; }
.footer-text p { color: var(--muted); margin: 0 0 12px; }

.footer-controls { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.age-pill { background: #0b3a32; border: 2px solid var(--accent-green-2); color: var(--text); padding: 6px 10px; border-radius: 999px; font-weight: 700; text-decoration: none; display: inline-block; }
.language-select { background: #13292f; color: var(--muted); padding: 8px 12px; border-radius: 999px; text-decoration: none; display: inline-block; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 14px 0; color: var(--muted); font-size: 14px; }

/* Responsive */
@media (max-width: 999px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-actions .btn-outline,
  .header-actions .lang-pill {
    display: none;
  }
  
  .main-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-header);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 2px solid var(--accent-green-2);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .main-nav.is-open {
    display: flex;
  }
  
  .nav-item {
    flex-direction: row;
    width: 100%;
    padding: 12px;
    background: rgba(30, 217, 165, 0.05);
    border-radius: 8px;
    gap: 12px;
    justify-content: flex-start;
  }
  
  .content-area {
    padding: 24px 20px;
  }
  
  .content-area h1 {
    font-size: 24px;
  }
  
  .content-area h2 {
    font-size: 20px;
  }
  
  .table-wrapper {
    font-size: 13px;
  }
  
  .content-table th,
  .content-table td {
    padding: 8px 12px;
  }
}

@media (min-width: 1000px) {
  .main-nav { 
    display: flex; 
    position: static;
    transform: none;
    left: auto; top: auto;
    flex: 1 1 auto;
    max-width: none;
    margin: 0 12px;
    justify-content: center;
    gap: 20px;
  }
  .footer-columns { grid-template-columns: 220px 1fr 140px 1.6fr; }
  .footer-links { columns: 1; }
}

@media (max-width: 640px) {
  .slide img { height: 200px; }
  
  .content-area {
    padding: 20px 16px;
  }
  
  .content-area h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .content-area h2 {
    font-size: 18px;
    margin-top: 24px;
  }
  
  .table-wrapper {
    font-size: 12px;
  }
  
  .content-table th,
  .content-table td {
    padding: 6px 8px;
  }
  
  .faq-item {
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .btn { padding: 8px 12px; font-size: 13px; }
  .logo img { height: 36px; }
  
  .content-area h1 {
    font-size: 20px;
  }
  
  .content-area {
    padding: 16px 12px;
  }
}
