/* ===========================
   Kozos CSS - Eloallapot oldalak
   =========================== */

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

:root {
  --color-primary: #1a2a6c;
  --color-secondary: #6a0572;
  --color-accent: #4a90d9;
  --color-text: #1e1e2e;
  --color-text-light: #5a5a7a;
  --color-white: #ffffff;
  --color-card: rgba(255, 255, 255, 0.97);
  --radius: 18px;
  --shadow: 0 8px 40px rgba(26, 42, 108, 0.18);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background: linear-gradient(135deg, #1a2a6c 0%, #6a0572 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: var(--color-text);
}

.container {
  max-width: 580px;
  width: 100%;
}

.card {
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.5rem;
  text-align: center;
  animation: fadeUp 0.6s cubic-bezier(.22,1,.36,1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.logo-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a2a6c, #6a0572);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(106, 5, 114, 0.3);
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(90deg, #eef1fb, #f5eaf8);
  color: var(--color-secondary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.42rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.3rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  animation: blink 1.8s ease infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.22;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #dce3f4, transparent);
  margin: 1.8rem 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.info-item svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-note {
  margin-top: 2.5rem;
  font-size: 0.77rem;
  color: #a0a0c0;
}

@media (max-width: 520px) {
  .card {
    padding: 2.2rem 1.4rem;
  }
  h1 {
    font-size: 1.45rem;
  }
  .logo-text {
    font-size: 1.1rem;
  }
}