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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

:root {
  --black: #050505;
  --black-soft: #161616;
  --yellow: #FFC000;
  --yellow-light: #FFF3C4;
  --cream: #FAF7F2;
  --gray-dark: #262626;
  --gray-mid: #666666;
  --gray-light: #A6A6A6;
  --white: #FFFFFF;
  --red: #C0392B;
  --orange: #E67E22;
  --green: #27AE60;
  --dark-green: #16A085;
}

body {
  color: var(--gray-dark);
  background:
    radial-gradient(circle at top right, rgba(255,192,0,0.12), transparent 30%),
    var(--cream);
  line-height: 1.65;
  min-height: 100vh;
}

/* HEADER */
header {
  background: rgba(5,5,5,0.96);
  color: var(--white);
  padding: 22px 5%;
  border-bottom: 4px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--yellow);
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.brand:hover {
    color: #FFD84D;
    transform: scale(1.02);
}

.brand-sub {
  font-size: 10px;
  color: var(--gray-light);
  letter-spacing: 3px;
  margin-top: 3px;
}

/* CONTAINER */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}

/* SCREENS */
.screen {
  display: none;
  animation: fadeUp 0.55s ease both;
}

.screen.active {
  display: block;
}

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

h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

h1 span {
  color: var(--yellow);
}

.lead {
  font-size: 18px;
  color: var(--gray-mid);
  margin-bottom: 34px;
  font-weight: 500;
}

/* INTRO CARDS */
.intro-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.07);
  border-left: 7px solid var(--yellow);
  padding: 30px 34px;
  margin: 26px 0;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.intro-card h3 {
  color: var(--black);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.intro-card ul {
  list-style: none;
}

.intro-card li {
  padding: 9px 0 9px 32px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}

.intro-card li::before {
  content: "✓";
  color: var(--black);
  background: var(--yellow);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 32px;
  border: none;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  border-radius: 999px;
  transition: 0.3s ease;
  text-decoration: none;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(255,192,0,0.28);
}

.btn:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-dark);
  border: 2px solid rgba(0,0,0,0.15);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* FORM */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--gray-dark);
}

.form-group label .req {
  color: var(--red);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 16px;
  font-size: 15px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  background: var(--white);
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--yellow);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,192,0,0.18);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* PROGRESS */
.progress-bar {
  background: rgba(0,0,0,0.08);
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.progress-fill {
  background: linear-gradient(90deg, var(--yellow), #ffe177);
  height: 100%;
  transition: width 0.45s ease;
  width: 0%;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 36px;
  font-weight: 700;
}

/* QUESTIONS */
.question-chapter {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.question-text {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 34px;
  font-weight: 800;
}

.answer-option {
  display: block;
  background: var(--white);
  padding: 18px 22px;
  margin-bottom: 14px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 15px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.answer-option:hover {
  border-color: var(--yellow);
  background: #fffaf0;
  transform: translateX(5px);
}

.answer-option.selected {
  border-color: var(--yellow);
  background: var(--yellow-light);
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(255,192,0,0.22);
}

.answer-option .opt-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  margin-right: 12px;
  vertical-align: middle;
  position: relative;
  transition: 0.25s;
}

.answer-option.selected .opt-icon {
  border-color: var(--black);
  background: var(--yellow);
}

.answer-option.selected .opt-icon::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--black);
  font-weight: 900;
  font-size: 14px;
}

/* NAV */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  gap: 14px;
}

.nav-buttons .btn {
  padding: 13px 24px;
  font-size: 13px;
}

/* RESULTS */
.results-hero {
  background:
    radial-gradient(circle at top right, rgba(255,192,0,0.22), transparent 35%),
    linear-gradient(135deg, #050505, #1b1b1b);
  color: var(--white);
  padding: 48px 34px;
  border-radius: 26px;
  margin-bottom: 28px;
  text-align: center;
  border: 1px solid rgba(255,192,0,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.results-hero .score-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 900;
}

.results-hero .score-value {
  font-size: clamp(68px, 10vw, 100px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.results-hero .score-max {
  font-size: 24px;
  color: var(--gray-light);
  font-weight: 700;
}

.results-hero .level-tag {
  display: inline-block;
  padding: 9px 22px;
  font-weight: 900;
  margin: 24px 0 12px;
  border-radius: 999px;
  letter-spacing: 1px;
  font-size: 13px;
}

.results-hero .level-name {
  font-size: 28px;
  font-weight: 900;
  margin-top: 6px;
}

/* CHAPTER SCORES */
.chapter-scores,
.interpretation {
  background: var(--white);
  padding: 30px 32px;
  border-radius: 22px;
  margin-bottom: 26px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.chapter-scores h3 {
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 22px;
  color: var(--black);
  font-weight: 900;
}

.chapter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}

.chapter-name {
  font-size: 14px;
  font-weight: 800;
}

.chapter-score {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 800;
}

.chapter-bar-container {
  grid-column: 1 / -1;
  background: #eeeeee;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
}

.chapter-bar {
  height: 100%;
  transition: width 0.7s ease;
  border-radius: 999px;
}

/* INTERPRETATION */
.interpretation {
  border-left: 7px solid var(--yellow);
}

.interpretation h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--black);
  font-weight: 900;
}

.interpretation p {
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--gray-dark);
}

/* CTA */
.cta-block {
  background:
    radial-gradient(circle at bottom left, rgba(255,192,0,0.22), transparent 35%),
    linear-gradient(135deg, #050505, #1b1b1b);
  color: var(--white);
  padding: 38px 34px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.cta-block h3 {
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 14px;
  font-weight: 900;
}

.cta-block p {
  font-size: 15px;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.75);
}

.cta-block .contact-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
}

.cta-block .contact-row a {
  color: var(--yellow);
  text-decoration: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 28px 24px;
  font-size: 12px;
  color: var(--gray-mid);
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 60px;
}

footer .slogan {
  color: var(--yellow);
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  header {
    text-align: center;
  }

  .container {
    padding: 32px 16px 70px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-buttons {
    flex-direction: column;
  }

  .nav-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .intro-card,
  .chapter-scores,
  .interpretation,
  .cta-block,
  .results-hero {
    padding: 24px 22px;
    border-radius: 20px;
  }
}@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

:root {
  --black: #050505;
  --black-soft: #161616;
  --yellow: #FFC000;
  --yellow-light: #FFF3C4;
  --cream: #FAF7F2;
  --gray-dark: #262626;
  --gray-mid: #666666;
  --gray-light: #A6A6A6;
  --white: #FFFFFF;
  --red: #C0392B;
  --orange: #E67E22;
  --green: #27AE60;
  --dark-green: #16A085;
}

body {
  color: var(--gray-dark);
  background:
    radial-gradient(circle at top right, rgba(255,192,0,0.12), transparent 30%),
    var(--cream);
  line-height: 1.65;
  min-height: 100vh;
}

/* HEADER */
header {
  background: rgba(5,5,5,0.96);
  color: var(--white);
  padding: 22px 5%;
  border-bottom: 4px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--yellow);
}

.brand-sub {
  font-size: 10px;
  color: var(--gray-light);
  letter-spacing: 3px;
  margin-top: 3px;
}

/* CONTAINER */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}

/* SCREENS */
.screen {
  display: none;
  animation: fadeUp 0.55s ease both;
}

.screen.active {
  display: block;
}

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

h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

h1 span {
  color: var(--yellow);
}

.lead {
  font-size: 18px;
  color: var(--gray-mid);
  margin-bottom: 34px;
  font-weight: 500;
}

/* INTRO CARDS */
.intro-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.07);
  border-left: 7px solid var(--yellow);
  padding: 30px 34px;
  margin: 26px 0;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.intro-card h3 {
  color: var(--black);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.intro-card ul {
  list-style: none;
}

.intro-card li {
  padding: 9px 0 9px 32px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}

.intro-card li::before {
  content: "✓";
  color: var(--black);
  background: var(--yellow);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 32px;
  border: none;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  border-radius: 999px;
  transition: 0.3s ease;
  text-decoration: none;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(255,192,0,0.28);
}

.btn:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-dark);
  border: 2px solid rgba(0,0,0,0.15);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* FORM */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--gray-dark);
}

.form-group label .req {
  color: var(--red);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 16px;
  font-size: 15px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  background: var(--white);
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--yellow);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,192,0,0.18);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* PROGRESS */
.progress-bar {
  background: rgba(0,0,0,0.08);
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.progress-fill {
  background: linear-gradient(90deg, var(--yellow), #ffe177);
  height: 100%;
  transition: width 0.45s ease;
  width: 0%;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 36px;
  font-weight: 700;
}

/* QUESTIONS */
.question-chapter {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.question-text {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 34px;
  font-weight: 800;
}

.answer-option {
  display: block;
  background: var(--white);
  padding: 18px 22px;
  margin-bottom: 14px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 15px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.answer-option:hover {
  border-color: var(--yellow);
  background: #fffaf0;
  transform: translateX(5px);
}

.answer-option.selected {
  border-color: var(--yellow);
  background: var(--yellow-light);
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(255,192,0,0.22);
}

.answer-option .opt-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  margin-right: 12px;
  vertical-align: middle;
  position: relative;
  transition: 0.25s;
}

.answer-option.selected .opt-icon {
  border-color: var(--black);
  background: var(--yellow);
}

.answer-option.selected .opt-icon::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--black);
  font-weight: 900;
  font-size: 14px;
}

/* NAV */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  gap: 14px;
}

.nav-buttons .btn {
  padding: 13px 24px;
  font-size: 13px;
}

/* RESULTS */
.results-hero {
  background:
    radial-gradient(circle at top right, rgba(255,192,0,0.22), transparent 35%),
    linear-gradient(135deg, #050505, #1b1b1b);
  color: var(--white);
  padding: 48px 34px;
  border-radius: 26px;
  margin-bottom: 28px;
  text-align: center;
  border: 1px solid rgba(255,192,0,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.results-hero .score-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 900;
}

.results-hero .score-value {
  font-size: clamp(68px, 10vw, 100px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.results-hero .score-max {
  font-size: 24px;
  color: var(--gray-light);
  font-weight: 700;
}

.results-hero .level-tag {
  display: inline-block;
  padding: 9px 22px;
  font-weight: 900;
  margin: 24px 0 12px;
  border-radius: 999px;
  letter-spacing: 1px;
  font-size: 13px;
}

.results-hero .level-name {
  font-size: 28px;
  font-weight: 900;
  margin-top: 6px;
}

/* CHAPTER SCORES */
.chapter-scores,
.interpretation {
  background: var(--white);
  padding: 30px 32px;
  border-radius: 22px;
  margin-bottom: 26px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.chapter-scores h3 {
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 22px;
  color: var(--black);
  font-weight: 900;
}

.chapter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}

.chapter-name {
  font-size: 14px;
  font-weight: 800;
}

.chapter-score {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 800;
}

.chapter-bar-container {
  grid-column: 1 / -1;
  background: #eeeeee;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
}

.chapter-bar {
  height: 100%;
  transition: width 0.7s ease;
  border-radius: 999px;
}

/* INTERPRETATION */
.interpretation {
  border-left: 7px solid var(--yellow);
}

.interpretation h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--black);
  font-weight: 900;
}

.interpretation p {
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--gray-dark);
}

/* CTA */
.cta-block {
  background:
    radial-gradient(circle at bottom left, rgba(255,192,0,0.22), transparent 35%),
    linear-gradient(135deg, #050505, #1b1b1b);
  color: var(--white);
  padding: 38px 34px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.cta-block h3 {
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 14px;
  font-weight: 900;
}

.cta-block p {
  font-size: 15px;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.75);
}

.cta-block .contact-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
}

.cta-block .contact-row a {
  color: var(--yellow);
  text-decoration: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 28px 24px;
  font-size: 12px;
  color: var(--gray-mid);
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 60px;
}

footer .slogan {
  color: var(--yellow);
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  header {
    text-align: center;
  }

  .container {
    padding: 32px 16px 70px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-buttons {
    flex-direction: column;
  }

  .nav-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .intro-card,
  .chapter-scores,
  .interpretation,
  .cta-block,
  .results-hero {
    padding: 24px 22px;
    border-radius: 20px;
  }
}

.toast-success {
  position: fixed;
  right: 28px;
  bottom: 28px;
  max-width: 420px;
  background: #050505;
  color: #ffffff;
  border: 1px solid rgba(255, 192, 0, 0.45);
  border-left: 6px solid var(--yellow);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  opacity: 0;
  transform: translateY(25px);
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9999;
}

.toast-success.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.toast-success strong {
  font-size: 14px;
  font-weight: 900;
  color: var(--yellow);
}

.toast-success p {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}.toast-success {
  position: fixed;
  right: 28px;
  bottom: 28px;
  max-width: 420px;
  background: #050505;
  color: #ffffff;
  border: 1px solid rgba(255, 192, 0, 0.45);
  border-left: 6px solid var(--yellow);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  opacity: 0;
  transform: translateY(25px);
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9999;
}

.toast-success.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.toast-success strong {
  font-size: 14px;
  font-weight: 900;
  color: var(--yellow);
}

.toast-success p {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}