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

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f5f5f5;
  color: #111827;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* SAYFA KUTUSU */
.page {
  width: 100%;
  max-width: 960px;
  background: #ffffff;
  margin: 32px 16px;
  padding: 24px 24px 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

/* HEADER - LOGO */
.header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.logo-text {
  font-weight: 500;
  font-size: 15px;
}

/* HERO */
.hero {
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero p {
  font-size: 14px;
  color: #4b5563;
  max-width: 500px;
}

/* DOMAİN KARTLARI */
.domains {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.domain-card {
  position: relative;
  padding: 14px 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.domain-card:hover {
  border-color: #9ca3af;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.domain-card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: #f3f4f6;
  color: #4b5563;
}

.domain-card h2 {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 600;
  word-break: break-all;
}

.domain-card h2 a {
  text-decoration: none;
  color: #111827;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.domain-card h2 a:hover {
  color: #1d4ed8;
  border-color: #1d4ed8;
}

.domain-card p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.domain-card .status {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background-color: #f3f4f6;
  color: #4b5563;
}

/* İLETİŞİM ALANI */
.contact {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.contact h3 {
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 6px;
}

.contact .phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid #111827;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #111827;
  background-color: #ffffff;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.contact .phone:hover {
  background-color: #111827;
  color: #ffffff;
  border-color: #111827;
}

.mail-info {
  font-size: 13px;
  color: #4b5563;
  margin-top: 4px;
}

.mail-info span {
  font-weight: 500;
}

/* FOOTER */
.footer {
  margin-top: 18px;
  font-size: 11px;
  color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .domains {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page {
    margin: 20px 12px;
    padding: 20px 16px;
  }

  .domains {
    grid-template-columns: 1fr;
  }
}
