
.header-container {
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  min-height: 70px;
  gap: 18px;
  padding: 0 16px;
  box-sizing: border-box;
}

.logo {
  font-family: 'Russo One', 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-right: auto;
  background: linear-gradient(100deg,#ffe66d 8%,#ffd700 28%,#ffb700 56%,#ffe88a 85%,#eebb3e 100%);
  color: #ffd700;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 4px 18px #ffe06644,
    0 2px 0 #fffbe0aa,
    0 1px 0 #fff,
    0 0 2px #ffef8c77;
  filter: drop-shadow(0 2px 10px #ffd70055);
  transition: font-size 0.18s, letter-spacing 0.16s;
  animation: logo-pulse 2.8s ease-in-out infinite alternate;
  cursor: pointer;
}
@keyframes logo-pulse {
  0% { filter: drop-shadow(0 2px 10px #ffd70055) brightness(1.1);}
  100% { filter: drop-shadow(0 8px 24px #ffd70099) brightness(1.24);}
}
.logo:hover {
  letter-spacing: 0.11em;
  filter: brightness(1.07) drop-shadow(0 8px 24px #ffd700dd);
  transition: 0.18s;
  animation-play-state: paused;
}
.burger-menu, .lang-switch select {
  transition: transform 0.16s cubic-bezier(.52,1.68,.55,1.01), box-shadow 0.18s;
}
.burger-menu:hover, .lang-switch select:focus {
  transform: scale(1.12) rotate(-2deg);
  box-shadow: 0 2px 8px #ffd70044;
  background: #ffd70022;
}

@media (max-width: 600px) {
  .logo {
    font-size: 1.3rem;
    letter-spacing: 0.06em;
  }
}

.main-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 3px 16px #0008, 0 2px 0 #ffd70044;
}
@media (max-width: 800px) {
  .main-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #ffd700;
  cursor: pointer;
  z-index: 1100;
}
.lang-switch {
  min-width: 70px;
  margin-left: 12px;
}
.nav-links {
  display: flex;
  gap: 12px;
}

@media (max-width:900px) {
  .header-container {
    gap: 4px;
    padding: 0 6px;
    justify-content: flex-end;
  }
  .logo { order: 0; margin-right: auto;}
  .lang-switch { order: 1; margin-left: 0; margin-right: 8px;}
  .burger-menu { display: block; order: 2; margin-left: 0; margin-right: 0;}
  .nav-links { display: none !important; }
}
@media (min-width:901px) {
  .logo { margin-right: auto; }
  .burger-menu { display: none !important; }
  .lang-switch { order: 2; margin-left: 22px; margin-right: 0; }
  .nav-links { order: 3; display: flex !important; }
}

body { background: #161A24; color: #f4f4f4; font-family: 'Segoe UI',sans-serif; margin:0;}
header {
  position: relative;
  overflow: hidden;
  background: #1a1f33;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 24px #ffd70022, 0 1.5px 0 #161A2440;
}
header::before {
  content: "";
  position: absolute;
  left: -15vw;
  top: 0;
  width: 130vw;
  height: 6px;
  background: linear-gradient(90deg, #ffe66d 2%, #ffd700 17%, #ffb700 44%, #ffe88a 68%, #eebb3e 90%);
  filter: blur(2px) brightness(1.17);
  opacity: 0.74;
  z-index: 10;
  animation: header-glow-move 5.4s linear infinite;
}
@keyframes header-glow-move {
  0% { left: -15vw; }
  100% { left: -5vw; }
}
.header-container {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(2px) brightness(1.01);
  background: linear-gradient(90deg, #21273b77 60%, #21273bb0 100%);
  border-radius: 18px;
  box-shadow: 0 4px 32px #ffd7000c;
  transition: background 0.3s;
  animation: fadeInHeader 1s cubic-bezier(.5,1.8,.42,1.1);
}
@keyframes fadeInHeader {
  from { opacity: 0; transform: translateY(-35px);}
  to { opacity: 1; transform: translateY(0);}
}

.detail-page main {
  padding-left: 0;
  padding-right: 0;
}
.loading-more {
  text-align: center;
  color: #ffd700;
  font-size: 1.14rem;
  padding: 22px 0 18px 0;
  font-weight: 600;
  letter-spacing: 2px;
  animation: fadeBlink 1.5s linear infinite alternate;
}
@keyframes fadeBlink {
  from { opacity: 0.6;}
  to { opacity: 1;}
}
.game-matrix {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
  justify-items: center !important;
}
.game-card {
  width: 100%;
  max-width: 360px;
  min-width: 0;
  box-sizing: border-box;
  margin: 0;
}

.game-card:hover { box-shadow:0 12px 24px #ffd70040;}
.game-icon { width:48px; height:48px; border-radius:12px; display:block; margin:auto; margin-bottom:10px;}
.game-cover { width:100%; border-radius:12px; box-shadow:0 2px 6px #0002; margin-bottom:10px;}
.game-card h3 { font-size:1.3rem; margin:10px 0 4px; color:#ffd700;}
.game-card p { color:#bbb; font-size:1rem; margin-bottom:14px;}
.detail-btn, .play-btn {
  display: block;
  padding: 8px 18px;
  border-radius: 30px;
  background: linear-gradient(90deg,#ffd700 30%,#ffef8c 100%);
  color: #222;
  font-weight: 600;
  text-decoration: none;
  margin: 18px auto 0 auto;
  align-self: center;
  width: auto;
  min-width: 90px;
  max-width: 180px;
  text-align: center;
  box-sizing: border-box;
  transition: background 0.18s, box-shadow 0.16s;
  font-size: 1.08rem;
  bottom:0px;
}

.detail-btn:hover, .play-btn:hover {
  background: #fffbe3;
}
footer { text-align:center; background:#161A24; color:#aaa; font-size:0.98rem; padding:30px 0 10px;}
footer a { color:#ffd700; text-decoration:none; margin:0 6px;}
footer a:hover { text-decoration:underline;}
.detail-card { background:#232944; border-radius:16px; box-shadow:0 6px 20px #161A2430; padding:36px 20px; max-width:680px; margin:30px auto;}
.detail-cover { width:100%; border-radius:14px; margin-bottom:22px; }
@media (max-width:768px) {
  main { padding:10px 2vw; }
  .game-matrix { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .game-card {
    min-height: 320px;
    padding: 10px 5px 14px 5px;
  }
  .detail-btn, .play-btn {
    width: 95%;
    font-size: 1rem;
  }
}

.lang-switch select {
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 1rem;
  border: 1px solid #ffd70044;
  background: #232944;
  color: #ffd700;
}
.nav-links a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  padding: 0 8px;
}
.nav-links a:hover {
  text-decoration: underline;
}

.mobile-drawer {
  display: none;
}
.mobile-drawer.open {
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  z-index: 1002;
}

.drawer-content {
  /* 你原有的样式可以保留，下面是渐变背景： */
  background: linear-gradient(135deg, #222b48 65%, #302972 100%) !important;
  /* 其它不变 */
  backdrop-filter: blur(7px) brightness(1.08);
  box-shadow: 2px 0 28px #ffd70040, 0 4px 30px #161A2422;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 38px;
  width: max-content;
  min-width: unset;
  max-width: 88vw;
  padding: 36px 12px 18px 12px; 
  position: relative;
  animation: drawerIn 0.35s cubic-bezier(.56,1.51,.56,.96) both;
  will-change: transform;
  position: absolute;
  left: 0; top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drawer-content.drawerIn {
  animation: drawerIn 0.35s cubic-bezier(.56,1.51,.56,.96) both;
}
.drawer-content.drawerOut {
  animation: drawerOut 0.24s cubic-bezier(.56,1.51,.56,.96) both;
}
@keyframes drawerIn {
  from { transform: translateX(-120%); opacity: 0; filter: blur(5px);}
  to   { transform: translateX(0); opacity: 1; filter: blur(0);}
}
@keyframes drawerOut {
  from { transform: translateX(0); opacity: 1; filter: blur(0);}
  to   { transform: translateX(-120%); opacity: 0; filter: blur(5px);}
}
.drawer-content a {
  color: #ffd700;
  font-size: 1.22rem;
  font-weight: 700;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.22s, color 0.18s, transform 0.16s, box-shadow 0.18s;
  box-shadow: 0 2px 8px #ffd70022;
}
.drawer-content a:hover {
  background: linear-gradient(90deg, #ffd700 30%, #ffef8c 100%);
  color: #232944;
  transform: scale(1.06) translateX(3px);
  box-shadow: 0 6px 18px #ffd70066;
  text-shadow: 0 2px 8px #ffe06644;
  animation: menu-item-hover 0.4s;
}
@keyframes menu-item-hover {
  0% { filter: brightness(1.1);}
  100% { filter: brightness(1.25);}
}
.drawer-footer {
  margin-top: auto;
  opacity: 0.85;
  font-size: 1.04rem;
}
.drawer-close {
  position: absolute;
  right: 18px;          /* 原 left: 18px 改为 right: 18px，将按钮移至右侧 */
  top: 22px;
  z-index: 10;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #ffd700;
  cursor: pointer;
  transition: transform 0.18s, color 0.14s;
  padding: 0;
  line-height: 1;
}
.drawer-close:hover {
  transform: rotate(12deg) scale(1.08);
  color: #ffe88a;
}
.drawer-mask {
  position: fixed;
  inset: 0;
  background: linear-gradient(90deg, #161a2455 80%, #ffd70015 100%);
  z-index: -1;
  animation: maskFadeIn 0.3s;
}
@keyframes maskFadeIn {
  from { opacity: 0;}
  to   { opacity: 1;}
}

@media (max-width: 600px) {
  .drawer-content {
    max-width: 50vw;
    padding: 24px 4vw 16px 4vw;
    padding-top: 62px;
  }
}

body.drawer-open { overflow: hidden; }
@media (min-width: 901px) {
  .mobile-drawer { display: none !important; }
  .burger-menu { display: none !important; }
  .nav-links { display: flex !important; }
}

.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 18px 0 30px 0;
  font-size: 1.08rem;
}
.filter-label { color: #ffd700; font-weight: 600; margin-right: 6px; }
.filter-btn {
  background: #232944;
  border: 1px solid #ffd70077;
  color: #ffd700;
  padding: 4px 18px;
  border-radius: 18px;
  margin-right: 7px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(90deg,#ffd700 30%,#ffef8c 100%);
  color: #232944;
}
@media (max-width:600px){
  .filter-bar{ gap: 6px; font-size:0.98rem; }
  .filter-btn{ padding: 4px 8px;}
}
.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: 0.92rem;
}
.drawer-footer a {
  color: #ffd700b0;
  text-decoration: underline;
  font-weight: 400;
  font-size: 0.96em;
  margin-bottom: 1px;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.drawer-footer a:hover { color: #ffd700; }
.drawer-copyright {
  color: #666;
  margin-top: 2px;
  font-size: 0.93em;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 1rem;
  margin-bottom: 8px;
}
.footer-links a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 600;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-divider {
  color: #ffd70099;
  margin: 0 2px;
  font-size: 1.05em;
  user-select: none;
  font-weight: bold;
}
.footer-hr {
  border: 0;
  border-top: 1px solid #393a53;
  width: auto;
  margin: 10px auto 18px auto;
  max-width: 420px;
  display: block;
}
footer {
  text-align: center;
}
.footer-copyright {
  display: inline-block;
  font-size: 0.98rem;
  color: #aaa;
  padding-top: 2px;
  padding-bottom: 3px;
}
.card-btn-bottom {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: 48px;
}

body {
  overflow-x: hidden;
}
.detail-page main {
  padding-left: 0;
  padding-right: 0;
}
.recommend-block {
  margin-top: 44px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.recommend-title-row.home-title-row {
  justify-content: center !important;
  text-align: center !important;
  margin-left: 0 !important;
}
.home-title-combo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.home-title-outline,
.home-main-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.1rem;
  font-weight: 900;
  width: max-content;
  white-space: pre;
  line-height: 1.15;
}
.home-title-outline {
  color: #fedd36;
  opacity: 0.28;
  z-index: 1;
  -webkit-text-stroke: 2.2px #fff;
  text-stroke: 2.2px #fff;
  pointer-events: none;
  user-select: none;
}
.home-main-title {
  color: #fff;
  letter-spacing: 0.02em;
  z-index: 2;
  text-shadow: 0 2px 10px #0007, 0 1px 0 #fedd36;
}
@media (max-width: 800px) {
  .home-title-combo { min-width: 0; }
  .home-title-outline, .home-main-title { font-size: 1.2rem; }
}

.recommend-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 18px;
  min-height: 2.6em;
  width: 100%;
  /* 居中显示 */
}

.star-icon-filled {
  display: flex;
  align-items: center;
  margin-right: 8px;
  position: relative;
  z-index: 3;
}

.recommend-list-horizontal {
  display: flex;
  flex-direction: row;
  gap: 22px;
  overflow-x: auto;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: transparent;
}
.recommend-list-horizontal::-webkit-scrollbar {
  display: none;
}

.recommend-card:first-child { margin-left: 16px; }
.recommend-card:last-child { margin-right: 16px; }
.recommend-card {
  background: #20243a;
  border-radius: 14px;
  box-shadow: 0 2px 10px #161A2412;
  padding: 18px 12px 22px 12px;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  flex: 0 0 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  transition: box-shadow 0.15s;
}
.recommend-card:hover {
  box-shadow: 0 4px 18px #ffd7002a;
}
.recommend-thumb {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  margin-bottom: 12px;
  object-fit: cover;
  background: #191c24;
}
.recommend-title {
  font-size: 1.08rem;
  color: #ffd700;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommend-title-main {
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  z-index: 2;
  text-shadow:
    0 2px 10px #0007,
    0 1px 0 #fedd36;
  position: relative;
}
.recommend-title-outline {
  position: absolute;
  left: 56px;
  top: 51%;
  transform: translateY(-47%);
  font-size: 2.15rem;
  font-weight: 600;
  color: #fedd36;
  opacity: 0.28;
  z-index: 1;
  -webkit-text-stroke: 2.2px #fff;
  text-stroke: 2.2px #fff;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 801px) {
  .recommend-list-horizontal {
    scrollbar-width: none;        /* Firefox/Edge */
    -ms-overflow-style: none;     /* IE 10+ */
  }
  .recommend-list-horizontal::-webkit-scrollbar {
    display: none;                /* Chrome/Safari/Webkit */
  }
}

@media (max-width: 800px) {
.recommend-list-horizontal { gap: 2vw; }
  .recommend-card { width: 30vw; min-width: 30vw; max-width: 30vw; }
  .recommend-card:first-child { margin-left: 2vw; }
  .recommend-card:last-child { margin-right: 2vw; }

  .recommend-title-main { font-size: 1.45rem;}
  .recommend-title-outline { font-size: 1.455rem;}
  .recommend-thumb { width: 84px; height: 84px; border-radius: 8px;}
}

.recommend-title-row.left {
  justify-content: flex-start;
  text-align: left;
  margin-left: 2vw;
  position: relative;
}
.star-icon-filled {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.recommend-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recommend-card .detail-btn {
  margin-top: auto !important;
  margin-bottom: 0 !important;
}

.game-search-bar {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 18px auto 0 auto;
  display: flex;
  align-items: center;
}

#game-search-input {
  width: 100%;
  border-radius: 24px;
  border: 1.5px solid #ffd70066;
  background: #232944;
  color: #ffd700;
  font-size: 1.09rem;
  padding: 8px 48px 8px 18px; /* 右侧为按钮留出空间 */
  outline: none;
  transition: border 0.18s;
  box-sizing: border-box;
  height: 46px;
}

#game-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: linear-gradient(90deg,#ffd700 40%,#ffef8c 100%);
  border-radius: 50%;
  border: none;
  color: #232944;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px #ffd70017;
  transition: background 0.18s, box-shadow 0.15s;
  z-index: 2;
  padding: 0;
}

#game-search-btn svg {
  width: 22px;
  height: 22px;
  stroke: #232944;     /* 更深色以增强对比度 */
  stroke-width: 2.7;
  display: block;
  margin: 0 auto;
}

#game-search-btn:hover svg {
  stroke: #ffd700;
}

#game-search-btn:hover {
  background: #fffbe3;
}

/* ------- 搜索框移动端适配，按钮始终在输入框内 ------- */
@media (max-width: 600px) {
  .game-search-bar {
    max-width: 60vw;
    margin: 10px auto 0 auto;
    position: relative;
    /* 取消 flex，否则按钮可能会跑出去 */
    display: block;
  }
  #game-search-input {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    height: 38px;
    font-size: 1rem;
    border-radius: 24px;
    padding: 8px 44px 8px 16px; /* 右侧为按钮预留足够空间 */
    box-sizing: border-box;
  }
  #game-search-btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    background: linear-gradient(90deg,#ffd700 40%,#ffef8c 100%);
  }
}

/* ---------- 动效增强 ---------- */
.detail-btn, .play-btn {
  overflow: hidden;
  position: relative;
}
.detail-btn .ripple, .play-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.33);
  transform: scale(0);
  animation: ripple-animate 0.44s linear;
  pointer-events: none;
  z-index: 10;
}
@keyframes ripple-animate {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.game-card, .recommend-card {
  transition: box-shadow 0.16s, transform 0.22s cubic-bezier(.42,1.54,.55,1.01);
}
.game-card:hover, .recommend-card:hover {
  box-shadow: 0 12px 36px #ffd70035, 0 2px 8px #23294455;
  transform: translateY(-7px) scale(1.03) rotate(-1.5deg);
  z-index: 10;
}
.star-icon-filled svg {
  animation: star-spin 6s linear infinite, star-blink 2.2s ease-in-out infinite alternate;
}
@keyframes star-spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
@keyframes star-blink {
  0% { filter: brightness(1);}
  100% { filter: brightness(1.22);}
}
#game-search-input:focus {
  border: 2px solid #ffd700;
  box-shadow: 0 0 10px #ffd70033;
  background: #232944ee;
}
#back-to-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, background 0.19s, box-shadow 0.17s;
}
#back-to-top.show {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
  animation: pop-fade-in 0.26s cubic-bezier(.42,1.54,.55,1.01);
}
@keyframes pop-fade-in {
  0% { opacity: 0; transform: scale(0.6);}
  100% { opacity: 1; transform: scale(1);}
}
@media (min-width: 800px) {
  .recommend-list-horizontal.anim-demo {
    animation: recommend-shake 1.8s cubic-bezier(.68,-0.55,.27,1.55) 1;
  }
  @keyframes recommend-shake {
    0% { transform: translateX(0);}
    6% { transform: translateX(-30px);}
    13% { transform: translateX(20px);}
    18% { transform: translateX(-10px);}
    24% { transform: translateX(6px);}
    35% { transform: translateX(0);}
    100% { transform: translateX(0);}
  }
}
.footer-links a {
  transition: color 0.18s, letter-spacing 0.18s;
}
.footer-links a:hover {
  color: #fffbe3;
  letter-spacing: 1.5px;
}
#vanta-header-bg {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#back-to-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 5000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(120deg, #ffd700 40%, #ffe066 100%);
  color: #232944;
  font-size: 2rem;
  box-shadow: 0 4px 16px #ffd70055;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.19s, box-shadow 0.17s;
}
#back-to-top:hover {
  background: #fffbe3;
  color: #161a24;
}
@media (max-width: 700px) {
  #back-to-top {
    right: 14px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }
}
