/* ========================================
   OLÍMPICO CLUBE - CENTRAL DE RELACIONAMENTO
   Design System & Styles
   ======================================== */

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


/* ---- CSS Variables ---- */
:root {
  --color-primary: #004aad;
  --color-primary-light: #5de0e6;
  --color-accent: #3533cd;
  --color-card-start: #cdffd8;
  --color-card-end: #94b9ff;
  --color-bg: #f0f4ff;
  --color-white: #ffffff;
  --color-text: #1a1a2e;
  --color-text-light: #64748b;
  --color-success: #22c55e;
  --color-error: #ef4444;

  --gradient-btn: linear-gradient(135deg, #5de0e6 0%, #004aad 100%);
  --gradient-card: linear-gradient(135deg, #cdffd8 0%, #94b9ff 100%);
  --gradient-title: linear-gradient(135deg, #000000 0%, #3533cd 100%);
  --gradient-hero: linear-gradient(180deg, #e8f4fd 0%, #f0f4ff 50%, #ffffff 100%);
  --gradient-footer: linear-gradient(180deg, #e8f4fd 0%, #d1e5f5 100%);
  --color-abner-bg: linear-gradient(180deg, #0d1b3e 0%, #050a1a 100%);
  --color-footer-text: #1a1a2e;

  --shadow-sm: 0 2px 8px rgba(0, 74, 173, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 74, 173, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 74, 173, 0.16);
  --shadow-glow: 0 0 30px rgba(93, 224, 230, 0.3);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* ---- App Container ---- */
.app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* ---- Screen System ---- */
.screen {
  display: none;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  min-height: 100vh;
  min-height: 100dvh;
}

.screen.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.screen.slide-out {
  opacity: 0;
  transform: translateX(-30px);
}

/* ---- Header ---- */
.header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 74, 173, 0.06);
}

.header-back {
  position: absolute;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--color-primary);
}

.header-back:hover {
  background: var(--gradient-btn);
  color: white;
  transform: scale(1.05);
}

.header-back svg {
  width: 20px;
  height: 20px;
}

.header-title {
  font-size: 1rem;
  font-weight: 700;
  background: var(--gradient-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

/* ---- Hero Section ---- */
.hero {
  background: var(--gradient-hero);
  padding: 40px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 30% 40%, rgba(93, 224, 230, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 74, 173, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 20px;
  object-fit: contain;
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
  mix-blend-mode: multiply;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(93, 224, 230, 0.15);
  border: 1px solid rgba(93, 224, 230, 0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ---- Section ---- */
.section {
  padding: 28px 20px;
}

.section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  width: 3px;
  height: 16px;
  background: var(--gradient-btn);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-top: -8px;
  margin-bottom: 18px;
  padding-left: 11px;
  border-left: 2px solid rgba(93, 224, 230, 0.3);
}

/* ---- Category Cards ---- */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.category-card {
  background: var(--color-white);
  border: 1.5px solid rgba(0, 74, 173, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.category-card:hover,
.category-card:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::before,
.category-card:active::before {
  opacity: 0.12;
}

.card-icon {
  width: 102px;
  height: 102px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: none;
  overflow: visible;
}

.category-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.form-type-icon .category-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-icon.reclamacao,
.card-icon.sugestao,
.card-icon.elogio,
.card-icon.informar {
  background: none;
  border: none;
}

.card-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  background: var(--gradient-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-desc {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.category-card:hover .card-arrow {
  transform: translateX(4px);
}

.card-arrow svg {
  width: 16px;
  height: 16px;
  color: white;
}

/* ---- President Section ---- */
.president-section {
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  margin: 0 20px;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 173, 0.06);
}

.president-section {
  background: linear-gradient(180deg, #e8f4fd 0%, #f0f7ff 100%);
  margin: 0 20px;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 173, 0.05);
}

.president-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.president-label::before,
.president-label::after {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gradient-btn);
  border-radius: 2px;
}

.president-photo {
  width: 200px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 4px solid #f0f7ff;
  box-shadow: var(--shadow-sm);
}

.president-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.president-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

.president-role {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Documents Section ---- */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.doc-card {
  background: var(--color-white);
  border: 1.5px solid rgba(0, 74, 173, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.doc-card:hover {
  border-color: rgba(93, 224, 230, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.doc-icon {
  width: 102px;
  height: 102px;
  background: linear-gradient(135deg, #004aad 0%, #00337a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.2);
  transition: all 0.3s ease;
}

.doc-icon svg {
  width: 42px;
  height: 42px;
}

.doc-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.doc-subtitle {
  font-size: 0.7rem;
  color: var(--color-text-light);
}

/* ---- Footer ---- */
.footer {
  background: var(--gradient-footer);
  padding: 40px 24px 20px;
  color: var(--color-footer-text);
  text-align: center;
  margin-top: 0;
  border-top: 1px solid rgba(0, 74, 173, 0.05);
}

.footer-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 16px;
  object-fit: contain;
  background-color: transparent;
  padding: 0;
  border: none;
  mix-blend-mode: multiply;
}

.footer-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-info {
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 4px;
  color: var(--color-text-light);
}

.footer-divider {
  width: 30px;
  height: 2px;
  background: var(--color-primary-light);
  border-radius: 1px;
  margin: 20px auto;
}

.footer-gestao {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Abner Branding (inside main footer) ---- */
.footer-abner {
  margin-top: 32px;
  padding: 32px 24px;
  background: linear-gradient(180deg, #0d1b3e 0%, #050a1a 100%);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-abner-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}

.footer-abner-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* Deixa a logo branca para o fundo escuro */
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-abner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-abner-info {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 12px;
  line-height: 1.4;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ---- Abner Branding (standalone for form/success screens) ---- */
.footer-abner-standalone {
  background: linear-gradient(180deg, #0d1b3e 0%, #050a1a 100%);
  padding: 32px 24px;
  margin: 20px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-abner-standalone .footer-abner-label,
.footer-abner-standalone .footer-abner-info {
  color: #ffffff;
}

.footer-abner-standalone .footer-abner-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-abner-standalone .footer-abner-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity 0.3s ease, filter 0.3s ease;
  margin-bottom: 0;
}

.footer-abner-standalone .footer-abner-logo:hover {
  opacity: 0.75;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(93, 224, 230, 0.4));
}

.footer-abner-standalone .footer-abner-logo:hover {
  opacity: 0.75;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(93, 224, 230, 0.4));
}

.footer-abner-info {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  line-height: 1.4;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.3s ease;
}

.footer-abner:hover .footer-abner-info,
.footer-abner-standalone:hover .footer-abner-info {
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Form Screen ---- */
.form-hero {
  padding: 32px 24px 24px;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
}

.form-type-icon {
  width: 156px;
  height: 156px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.form-type-icon.reclamacao,
.form-type-icon.sugestao,
.form-type-icon.elogio,
.form-type-icon.informar {
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.form-type-icon .category-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form-screen-title {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.form-screen-desc {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* ---- Form Fields ---- */
.form-container {
  padding: 24px 20px 40px;
}

.form-anon-notice {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.5;
  padding: 14px 16px;
  background: rgba(93, 224, 230, 0.08);
  border-left: 3px solid var(--color-primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-label .optional {
  font-weight: 400;
  color: var(--color-text-light);
  font-size: 0.75rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0, 74, 173, 0.12);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(93, 224, 230, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #b0b8c9;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

/* ---- Photo Upload ---- */
.upload-area {
  border: 2px dashed rgba(0, 74, 173, 0.15);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(240, 244, 255, 0.5);
  position: relative;
}

.upload-area:hover,
.upload-area.dragover {
  border-color: var(--color-primary-light);
  background: rgba(93, 224, 230, 0.06);
}

.upload-area.dragover {
  transform: scale(1.02);
}

.upload-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.upload-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.upload-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 0.72rem;
  color: var(--color-text-light);
}

.upload-input {
  display: none;
}

/* ---- Photo Previews ---- */
.photo-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.photo-preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.photo-remove:hover {
  transform: scale(1.15);
}

/* ---- Submit Button ---- */
.btn-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-btn);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #004aad 0%, #3533cd 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit:active {
  transform: scale(0.98);
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-wait-notice {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
  font-weight: 500;
}

/* ---- Loading Spinner ---- */
.spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-submit.loading .spinner {
  display: inline-block;
}

.btn-submit.loading .btn-text {
  display: none;
}

/* ---- Toast / Notifications ---- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: calc(100% - 40px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.toast.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast.info {
  background: var(--gradient-btn);
}

/* ---- Success Screen ---- */
.success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 40px 24px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2.2rem;
  animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.success-title {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.success-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 280px;
}

.btn-back-home {
  padding: 14px 32px;
  background: var(--gradient-btn);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back-home:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* ---- Animations ---- */
.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.stagger-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.stagger-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.stagger-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

.stagger-5 {
  animation-delay: 0.5s;
  opacity: 0;
}

/* ---- Responsive tweaks ---- */
@media (min-width: 481px) {
  .app {
    box-shadow: var(--shadow-lg);
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: var(--radius-xl);
    min-height: calc(100vh - 40px);
    overflow: hidden;
  }

  body {
    background: linear-gradient(135deg, #e8f4fd 0%, #dce8ff 100%);
  }
}

/* ---- Dark scrollbar ---- */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 74, 173, 0.15);
  border-radius: 2px;
}