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

:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #4b5563;
  --accent: #0ea5e9;
  --accent-strong: #0284c7;
  --border: #e5e7eb;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-small: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.08), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.08), transparent 35%),
    var(--bg);
  color: var(--ink);
  font-family: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-strong);
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.container {
  width: min(1040px, 100% - 2.5rem);
  margin: 0 auto;
}

.site-header {
  display: none;
}

.page-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0 0.8rem;
}

/* Brand */

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-name {
  font-weight: 700;
}

.brand-subtitle {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

/* Hero */

.hero {
  padding: 3rem 0 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  letter-spacing: -0.03em;
}

.hero-card p {
  color: var(--muted);
  margin: 0 0 1.4rem;
}

.hero-highlights h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.hero-highlights .list {
  margin-top: 0.4rem;
}

/* Lists */

.list {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.list li+li {
  margin-top: 0.35rem;
}

/* Buttons */

.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.25);
}

.button.secondary {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.18);
}

.space {
  padding: 1.2rem 0 0 0;
}

.hero-meta {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.grid.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card.small {
  padding: 1.1rem 1.15rem;
  gap: 0.5rem;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.label-owned {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.02);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

.label-owned::before {
  content: '◆';
  font-size: 0.6rem;
  margin-right: 0.4rem;
  color: var(--accent-strong);
}


/* Sections */

.section {
  padding: 2.3rem 0 2.6rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}

.section-header h2 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

/* Cards & Grid */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Thumbnails */

.thumb-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.thumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f8fafc;
  height: 340px;
  max-height: 340px;
}

.thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Misc (diğer sayfalar için önceden tanımlanmış stiller) */

.platform-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.platform-links .button {
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #0f172a;
  color: #fff;
  min-width: 210px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.store-button.play {
  background: linear-gradient(135deg, #0f172a, var(--accent-strong));
}

.store-button.app {
  background: #0f172a;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.26);
  border-color: rgba(14, 165, 233, 0.5);
}

.store-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.store-label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-eyebrow {
  font-size: 0.8rem;
  opacity: 0.8;
}

.store-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-info {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.app-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.screenshot-grid.single-row {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  overflow-x: auto;
  padding-bottom: 0.15rem;
  position: relative;
  padding-right: 0.6rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-strong) rgba(15, 23, 42, 0.08);
}

.screenshot-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  background: #fff;
}

.table-list {
  display: grid;
  gap: 1rem;
}

.section-note {
  color: var(--muted);
  font-style: italic;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  background: #fff;
  margin-top: 2.2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .page-top {
    padding-top: 1rem;
  }

  .hero {
    padding-top: 2.4rem;
    gap: 1.4rem;
  }

  .thumb-wrapper {
    height: 260px;
    max-height: 260px;
  }
}
