/* FEYZ Lotereya — gizli səhifə */
.lottery-page {
  background: var(--bg, #f8faf9);
}
.lottery-hero {
  background: linear-gradient(135deg, var(--navy, #0d1922) 0%, #152a3a 55%, var(--green-dark, #009648) 100%);
  padding: 100px 24px 48px;
  text-align: center;
  color: var(--white, #fff);
}
.lottery-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.lottery-hero__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--green-light, #7dffb0);
  margin-bottom: 12px;
}
.lottery-hero__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 12px;
}
.lottery-hero__lead {
  margin: 0;
  opacity: 0.88;
  font-size: 1.05rem;
}
.lottery-body {
  padding: 48px 0 72px;
}
.lottery-container {
  max-width: 1100px;
}
.lottery-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.lottery-info h2,
.lottery-reels h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
}
.lottery-rules {
  color: var(--text-muted, #64748b);
  line-height: 1.7;
  margin-bottom: 28px;
}
.lottery-reels {
  margin-bottom: 24px;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
}
.lottery-reels__link {
  color: var(--green-dark);
  font-weight: 700;
}
.lottery-reels__placeholder {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}
.lottery-tips {
  margin: 0;
  padding-left: 1.2rem;
  color: #475569;
  line-height: 1.65;
  font-size: 0.92rem;
}
.lottery-form-wrap {
  background: var(--white, #fff);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.08));
  border: 1px solid rgba(0,0,0,0.06);
}
.lottery-form .form-group {
  margin-bottom: 18px;
}
.lottery-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.92rem;
}
.lottery-form input[type="text"],
.lottery-form input[type="tel"],
.lottery-form input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.lottery-form input:focus {
  outline: 2px solid var(--green, #00AC50);
  border-color: var(--green);
}
.lottery-hint {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 0.82rem;
}
.lottery-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
}
.lottery-loading {
  text-align: center;
  padding: 24px 12px;
  color: var(--navy);
}
.lottery-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border: 3px solid #e2e8f0;
  border-top-color: var(--green);
  border-radius: 50%;
  animation: lottery-spin 0.8s linear infinite;
}
@keyframes lottery-spin {
  to { transform: rotate(360deg); }
}
.lottery-result {
  margin-top: 20px;
  padding: 16px;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.5;
}
.lottery-result--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.lottery-result--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.lottery-result--pending {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}
.lottery-alert {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}
.lottery-alert--inactive {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}

@media (max-width: 900px) {
  .lottery-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .lottery-hero {
    padding-top: 88px;
  }
  .lottery-form-wrap {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .lottery-body {
    padding: 32px 0 56px;
  }
}
