/* ============================================================
   ConferenceTemplate — Central Theme
   แก้ไขค่าใน :root เพื่อเปลี่ยนธีมทั้งเว็ปไซต์ได้ทันที
   ============================================================ */

/* ── 1. CSS Variables (Design Tokens) ── */
:root {
  /* Brand Colors */
  --navy: #0b2545;
  --navy-mid: #163660;
  --navy-light: #1e4a80;
  --gold: #c9952a;
  --gold-light: #e8b84b;
  --gold-pale: #fff9e6;

  /* Backgrounds */
  --bg-body: #f0f4f8;
  --bg-white: #ffffff;
  --bg-smoke: #f5f7fa;

  /* Text */
  --text-primary: #1c1c2e;
  --text-secondary: #444444;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* State colors */
  --color-success: #198754;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #0ea5e9;

  /* Borders */
  --border-default: #e5e7eb;
  --border-gold: rgba(201, 149, 42, 0.3);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;

  /* Typography */
  --font-display: "IBM Plex Sans Thai", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans Thai", "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  /* Transitions */
  --transition: all 0.25s ease;
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── 3. Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  color: white;
  line-height: 1.15;
}

.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 600px;
}

/* ── 4. Layout ── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 48px 0;
}
.bg-white {
  background: var(--bg-white);
}
.bg-navy {
  background: var(--navy);
}
.bg-navy-light {
  background: var(--navy-light);
}
.bg-smoke {
  background: var(--bg-smoke);
}

/* Page header (for sub-pages) */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  padding: 64px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9952A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  position: relative;
}
.page-header p {
  opacity: 0.72;
  font-size: 14px;
  margin-top: 8px;
  position: relative;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(232, 184, 75, 0.7);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 20px;
  transition: var(--transition-fast);
  position: relative;
}
.back-link:hover {
  color: var(--gold-light);
}

/* Form container (pulled up card) */
.form-container {
  max-width: 860px;
  margin: -52px auto 60px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  position: relative;
  z-index: 1;
}

/* ── 5. Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  color: black;
}
#navbar.scrolled {
  background: rgba(11, 37, 69, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  color: white;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-text .line1 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.nav-logo-text .line2 {
  font-size: 11px;
  opacity: 0.65;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links a {
  /* color: rgba(255, 255, 255, 0.82); */
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07);
}
.nav-btn-register {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
}

.nav-user-name {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 8px;
}
.nav-btn-register:hover {
  background: var(--gold-light) !important;
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

/* Mobile menu */
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#mobileMenu.open {
  display: flex;
}
#mobileMenu a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  padding: 14px 48px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}
#mobileMenu a:hover {
  background: rgba(255, 255, 255, 0.08);
}
#mobileMenu .m-register {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-top: 8px;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* ── 6. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(201, 149, 42, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 149, 42, 0.45);
}
.btn-secondary {
  background: var(--navy);
  color: white;
}
.btn-secondary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline-black {
  border: 1.5px solid rgba(0, 0, 0, 0.4);
  color: black;
  backdrop-filter: blur(4px);
}
.btn-outline-black:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.7);
}
.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: white;
}

.btn-danger {
  background: var(--color-danger);
  color: white;
}
.btn-success {
  background: var(--color-success);
  color: white;
}
.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}
.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* Submit button (full width form) */
.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(201, 149, 42, 0.3);
  transition: var(--transition);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 149, 42, 0.45);
}

/* ── 7. Cards ── */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px;
}
.card-sm {
  padding: 20px;
}
.card-lg {
  padding: 40px;
}

/* ── 8. Forms ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.field label .req {
  color: var(--color-danger);
  margin-left: 2px;
}

.form-control {
  padding: 12px 14px;
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: white;
  width: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.08);
}
.form-control:read-only {
  background: #f9fafb;
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .col-full {
  grid-column: 1 / -1;
}

.form-section-hdr {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-hdr:first-child {
  margin-top: 0;
}
.form-section-hdr i {
  color: var(--gold);
  font-size: 17px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

/* ── 9. Alerts ── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert i {
  margin-top: 2px;
  flex-shrink: 0;
}
.alert-error {
  background: #fff2f2;
  border: 1px solid #ffd0d0;
  color: var(--color-danger);
}
.alert-success {
  background: #f0fff4;
  border: 1px solid #c3e6cb;
  color: var(--color-success);
}
.alert-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.alert-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

/* ── 10. Badges ── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.badge-gold {
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(201, 149, 42, 0.3);
}
.badge-navy {
  background: var(--navy);
  color: var(--gold-light);
}
.badge-green {
  background: #d1fae5;
  color: #065f46;
}
.badge-blue {
  background: #dbeafe;
  color: #1e40af;
}
.badge-yellow {
  background: #fef3c7;
  color: #92400e;
}
.badge-red {
  background: #fee2e2;
  color: #991b1b;
}
.badge-gray {
  background: #f3f4f6;
  color: #374151;
}

/* ── 11. Success State (shared) ── */
.success-state {
  text-align: center;
  padding: 48px 20px;
}
.success-state .success-icon {
  font-size: 72px;
  color: var(--color-success);
  margin-bottom: 16px;
}
.success-state h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 12px;
}
.success-state p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}
.reg-id-chip {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  padding: 8px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 20px 0;
  font-family: var(--font-mono);
}

/* ── 12. Footer ── */
.site-footer {
  background: #050f1e;
  color: rgba(255, 255, 255, 0.55);
  padding: 56px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
}
.footer-col h5 {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 9px;
  transition: var(--transition-fast);
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

/* ── 13. News Card (homepage) ── */
.news-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ปรับปรุงขนาดภาพให้เป็น 16:9 เสมอ */
.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 9; /* ทำให้ภาพมีสัดส่วนเท่ากับ 1920x1080 */
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  overflow: hidden;
  position: relative;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.news-card-img .img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: 0.3;
}

/* ปรับแต่ง Tag ให้แสดงผลใน Body แทนการลอยทับรูป */
.news-cat-tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.news-card-excerpt {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  flex: 1;
}
.news-engagement-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  color: var(--text-light);
  font-size: 12px;
}
.news-engagement-row span,
.news-engagement-row button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
}
.news-engagement-row i {
  font-size: 13px;
}
.news-engagement-row .news-share-mini {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.news-engagement-row .news-share-mini:hover {
  color: var(--gold);
}
.news-engagement-row .is-liked {
  color: var(--color-danger);
}
.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  font-size: 12px;
  color: var(--text-light);
}
.news-read-more {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-fast);
}
.news-read-more:hover {
  color: var(--navy);
}

/* ── 14. Print styles ── */
@media print {
  #navbar,
  .nav-hamburger,
  #mobileMenu,
  .site-footer,
  .back-link,
  .btn-submit,
  .no-print {
    display: none !important;
  }
}

/* ── 15. Responsive ── */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet responsive (992px down) */
@media (max-width: 991px) {
  .nav-user-name {
    display: none;
  }
  .nav-links a {
    padding: 7px 10px;
    font-size: 12px;
  }
  .nav-btn-register {
    padding: 7px 14px !important;
    font-size: 12px !important;
  }
}

/* Mobile menu (768px down) */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  .nav-user-name {
    display: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-container {
    padding: 28px 20px;
    margin: 0 12px 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    text-align: center;
  }
  .section {
    padding: 56px 0;
  }
}
@media (max-width: 480px) {
  .form-container {
    margin: 0 0 32px;
    border-radius: 0;
  }
  .page-header {
    padding: 48px 20px 80px;
  }
}

/* ── 16. Custom Animations (Pulse) ── */
@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 149, 42, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(201, 149, 42, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 149, 42, 0);
  }
}

.btn-pulse {
  animation: pulse-gold 2s infinite;
  position: relative;
  overflow: hidden;
}

/* เอฟเฟกต์แสงวิ่งผ่านปุ่มเมื่อ Hover */
.btn-primary.btn-pulse::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
  transform: rotateZ(60deg) translate(-5em, 7.5em);
  opacity: 0;
  transition:
    transform 0.5s,
    opacity 0.5s;
}

.btn-primary.btn-pulse:hover::after {
  opacity: 1;
  transform: rotateZ(60deg) translate(1em, -9em);
}

/* SHARE MENU CSS */
.share-wrapper {
  position: relative;
  display: inline-flex;
}
.share-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 150px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  margin-bottom: 5px;
}
.modal-social-actions .share-menu {
  bottom: auto;
  top: 100%;
  margin-top: 5px;
  margin-bottom: 0;
  right: 0;
}
.share-menu.active {
  display: flex;
  animation: slideUp 0.2s ease;
}
.modal-social-actions .share-menu.active {
  animation: slideDown 0.2s ease;
}
.share-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.share-item:hover {
  background: #f1f5f9;
  color: var(--navy);
}
.share-item i.fa-facebook,
.share-item i.fa-facebook-f {
  color: #1877f2;
  font-size: 18px;
}
.share-item i.fa-x-twitter {
  color: #000;
  font-size: 18px;
}
.share-item i.fa-line {
  color: #00b900;
  font-size: 18px;
}
.share-item i.fa-copy,
.share-item i.fa-link {
  color: #64748b;
  font-size: 18px;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
