/**
 * Kodmat Akıl ve Zeka Oyunları 10-12
 * Üyelik Gerekli ve Erişim Sayfası CSS (kazo-access.css) - Açık Modern Tema (Aşama 4)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

.kazo-access-wrapper {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f8fafc;
  color: #0f172a;
}

.kazo-access-card {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 1px 1px rgba(255, 255, 255, 0.8) inset;
  position: relative;
  overflow: hidden;
}

.kazo-access-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #6366f1, #3b82f6, #06b6d4);
}

.kazo-access-icon {
  font-size: 4.5rem;
  margin-bottom: 24px;
  display: inline-block;
  background: #f1f5f9;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.kazo-access-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.25;
}

.kazo-access-desc {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 32px;
}

.kazo-access-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.kazo-access-actions .kazo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.kazo-btn-icon {
  font-size: 1.25rem;
}

.kazo-access-actions .kazo-btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.4);
}

.kazo-access-actions .kazo-btn-primary:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -4px rgba(99, 102, 241, 0.55);
  color: #ffffff;
}

.kazo-access-actions .kazo-btn-secondary {
  background: #f8fafc;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.kazo-access-actions .kazo-btn-secondary:hover {
  background: #f1f5f9;
  color: #0f172a;
  transform: translateY(-3px);
  border-color: #94a3b8;
}

.kazo-access-back {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.kazo-back-link {
  color: #6366f1;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  transition: color 0.2s;
}

.kazo-back-link:hover {
  color: #4f46e5;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .kazo-access-card {
    padding: 36px 24px;
  }
  .kazo-access-title {
    font-size: 1.6rem;
  }
}

