/* FrostNodes × Zelect — tasarım vitrini ortak stiller */

.ft-design-banner {
  position: sticky;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 10px 20px;
  background: rgba(5, 10, 20, 0.92);
  border-bottom: 1px solid rgba(56, 152, 236, 0.35);
  backdrop-filter: blur(14px);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
}

.ft-design-banner-label {
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
}

.ft-design-banner-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.ft-design-banner-nav a {
  color: #94a3b8;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  font-weight: 600;
}

.ft-design-banner-nav a:hover,
.ft-design-banner-nav a[aria-current="page"] {
  color: #e2e8f0;
  border-color: rgba(56, 152, 236, 0.45);
  background: rgba(56, 152, 236, 0.12);
}

.ft-design-banner-live {
  color: #7dd3fc !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 11px;
}

.ft-design-banner-live:hover {
  text-decoration: underline !important;
}

/* Üst promo şeridini vitrinde gizle */
.ft-design-banner + .rt-top-nav .rt-header-top {
  display: none !important;
}

/* Hub sayfası */
.ft-design-hub {
  min-height: 100vh;
  background: #050a14;
  color: #e2e8f0;
  font-family: Inter, system-ui, sans-serif;
}

.ft-design-hub-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 20% -10%, rgba(56, 152, 236, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(67, 83, 255, 0.15), transparent 45%);
}

.ft-design-hub-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.ft-design-hub h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 12px;
}

.ft-design-hub-lead {
  color: #94a3b8;
  font-size: 16px;
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.6;
}

.ft-design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.ft-design-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.55);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

.ft-design-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 152, 236, 0.45);
  box-shadow: 0 20px 50px rgba(56, 152, 236, 0.15);
}

.ft-design-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, rgba(56, 152, 236, 0.25), rgba(67, 83, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-design-card-body {
  padding: 20px 22px 24px;
}

.ft-design-card-body h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}

.ft-design-card-body p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.ft-design-card-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #60a5fa;
}

.ft-design-compare {
  margin-top: 48px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.4);
}

.ft-design-compare h2 {
  font-size: 18px;
  margin: 0 0 16px;
}

.ft-design-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ft-design-compare th,
.ft-design-compare td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-design-compare th {
  color: #64748b;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}

.ft-design-compare .yes {
  color: #4ade80;
}

.ft-design-compare .no {
  color: #64748b;
}

/* Login preview */
.ft-login-page {
  min-height: 100vh;
  background: #050a14;
  display: flex;
  flex-direction: column;
}

.ft-login-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

.ft-login-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(56, 152, 236, 0.2), transparent 60%);
  pointer-events: none;
}

.ft-login-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.ft-login-card h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  text-align: center;
}

.ft-login-card .sub {
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
  margin: 0 0 28px;
}

.ft-login-field {
  margin-bottom: 16px;
}

.ft-login-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 6px;
}

.ft-login-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.ft-login-field input:focus {
  outline: none;
  border-color: rgba(56, 152, 236, 0.6);
  box-shadow: 0 0 0 3px rgba(56, 152, 236, 0.15);
}

.ft-login-submit {
  width: 100%;
  margin-top: 8px;
}

.ft-login-note {
  text-align: center;
  font-size: 11px;
  color: #64748b;
  margin-top: 20px;
}
