@charset "EUC-KR";

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

*{
	font-family: 'Paperozi';
}

/* ===== RB Header (namespaced) ===== */
:root {
  --rb-ink: #eaf0ff;
  --rb-chip-grad-1: #6d8cff;
  --rb-chip-grad-2: #8b5cf6;
}

/* ·¹ÀÌ¾Æ¿ô */
.rb-topbar{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(14px, 2.5vw, 24px) clamp(16px, 3vw, 32px);
  display: flex;
  flex-direction: column;            /* ±âº»: Áß¾Ó Á¤·Ä ½ºÅÃ */
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
}

/* ºê·£µå Å¸ÀÌÆ² */
.rb-brand-wrap{ position: relative; display:flex; align-items:center; }
.rb-game-title{
  position: relative; margin: 0; line-height: 1; letter-spacing: .02em;
}
.rb-game-title span{
  display:inline-block;
  font-weight: 800;
  font-size: clamp(40px, 10vw, 88px);
  background: linear-gradient(180deg, #ffffff 0%, #dfe8ff 55%, #bcd0ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 20px rgba(120,140,255,.45));
}
.rb-game-title::before{
  content:"";
  position:absolute; left:50%; top:50%; transform: translate(-50%,-50%);
  width: clamp(220px, 36vw, 560px); height: clamp(80px, 14vw, 240px);
  background: radial-gradient(closest-side, rgba(160,178,255,.55), transparent 70%);
  filter: blur(2px); z-index:-1; opacity:.9;
}

/* CROSS GATE µð¹ÙÀÌ´õ */
.rb-brand-divider{
  display:flex; align-items:center; justify-content:center; gap:10px;
}
.rb-brand-divider::before,
.rb-brand-divider::after{
  content:"";
  height:1px; width:clamp(48px, 22vw, 140px);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  filter: drop-shadow(0 0 8px rgba(96,165,250,.45));
}
.rb-brand-text{
  font-weight: 900; letter-spacing: .28em; text-transform: uppercase;
  font-size: clamp(16px, 3.2vw, 18px); line-height:1;
  background: linear-gradient(90deg, #e0f2fe, #a5b4fc, #60a5fa, #7dd3fc);
  background-size: 200% 100%; -webkit-background-clip:text; background-clip:text; color:transparent;
  -webkit-text-stroke: .6px rgba(255,255,255,.20); animation: rb-brand-sheen 6s linear infinite;
  text-shadow: 0 0 24px rgba(96,165,250,.20);
}
/* ¹ÝÂ¦ÀÌ ÄÁÅ×ÀÌ³Ê */
.rb-sparkle{
  display:inline-block;              /* ::before À§Ä¡ º¸Á¤ */
  font-size: 20px;
  transform: translateY(-1px);       /* translate ¡æ transform */
  opacity: .9;
  filter: drop-shadow(0 0 6px rgba(125,211,252,.6));
  animation: rb-sparkle-pulse 2.4s ease-in-out infinite;  /* ÀÌ¸§ ÅëÀÏ */
}

/* ½ÇÁ¦ ¾ÆÀÌÄÜÀº °¡Â¥ ¿ä¼Ò·Î */
.rb-sparkle::before{
  content: "\2726";               
  display: inline-block;
  margin-left: .3rem;
  line-height: 1;
  color: #7aa2ff;
  font-size: 0.95em;
  opacity: .9;
  filter: drop-shadow(0 0 10px rgba(122,162,255,.6));
  animation: rb-twinkle 2.2s ease-in-out infinite;        /* ÀÌ¸§ ÅëÀÏ */
}

/* ¾Ö´Ï¸ÞÀÌ¼Ç Á¤ÀÇ (ÀÌ¸§ ÀÏÄ¡!) */
@keyframes rb-sparkle-pulse {
  0%, 100% { transform: scale(1);   opacity: .85; }
  50%      { transform: scale(1.2); opacity: 1;   }
}

@keyframes rb-twinkle {
  0%, 100% { transform: scale(1);   opacity: .9; }
  50%      { transform: scale(1.2); opacity: 1;  }
}


/* ¿ìÃø ¹öÆ° ¿µ¿ª */
.rb-auth{ display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center; }
.rb-btn{ display:inline-flex; align-items:center; justify-content:center; text-decoration:none; user-select:none; }

/* Ä¨ ¹öÆ° */
.rb-chip{
  background: linear-gradient(135deg, var(--rb-chip-grad-1), var(--rb-chip-grad-2));
  color:#fff; border:none; padding:.6rem 1.2rem; border-radius: 9999px;
  font-weight:700; font-size: clamp(.85rem, 3.2vw, .95rem);
  transition: .25s ease; box-shadow: 0 6px 18px rgba(109,140,255,.25);
}
.rb-chip:hover{ transform: translateY(-2px); box-shadow:0 10px 26px rgba(109,140,255,.35); }
.rb-chip:active{ transform: translateY(0); }

/* ¹ÝÀÀÇü: µ¥½ºÅ©Åé »ó´Ü °¡·Î¹èÄ¡·Î »ç¿ëÇÏ°í ½ÍÀ¸¸é ÆäÀÌÁö¿¡¼­ ¾Æ·¡ À¯Æ¿ Å¬·¡½º¸¦ Ãß°¡ */
.rb-topbar.is-desktop-row{
  flex-direction: row; align-items: center; justify-content: space-between; text-align: left;
}
.rb-topbar.is-desktop-row .rb-brand-divider{ order: 2; margin-inline: auto; }
.rb-topbar.is-desktop-row .rb-auth{ order: 3; }




.rb-modal{position:fixed; inset:0; z-index:9999;}
.rb-modal__overlay{position:absolute; inset:0; background:rgba(0,0,0,.45);}
.rb-modal__panel{
  margin:60px auto; 
}
.rb-modal__title{margin:0 0 6px; font-size:18px; font-weight:900; color: darkblue;}
.rb-modal__desc{margin:0 0 14px; color:#6c7591;}
.rb-modal__close{
  position:absolute; top:8px; right:10px;
  width:32px; height:32px; border-radius:50%;
  border:1px solid #e7e9f2; background:#fff; cursor:pointer; font-size:18px;
}
.rb-dl__list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px;}
.rb-dl__item{
  display:flex; align-items:center; justify-content:space-between;
  border:1px solid #e7e9f2; border-radius:12px; padding:12px 12px; background:#fafbff;
}
.rb-dl__meta{display:flex; align-items:center; gap:10px;}
.rb-dl__icon{width:28px; height:28px; border-radius:6px; background:#eef2ff; display:inline-flex; align-items:center; justify-content:center; font-weight:900; color:#2e6bff; width: 100px;}
.rb-dl__name{font-weight:800; color: black;}
.rb-dl__btn{
  appearance:none; border:1px solid #2e6bff; background:#2e6bff; color:#fff;
  border-radius:999px; padding:8px 12px; font-weight:900; cursor:pointer;
}
.rb-modal__panel{
  position:relative; max-width:640px; width:92vw;
  margin:60px auto; background:#fff; border-radius:14px;
  border:1px solid #e7e9f2; box-shadow:0 20px 60px rgba(18,25,56,.18);
  padding:20px 18px;
  max-height: 85vh;
}

/* ¸®½ºÆ®¿¡ ¼¼·Î ½ºÅ©·Ñ Çã¿ë (Ç×¸ñ ¸¹À» ¶§) */
#rb-download-list.rb-dl__list {
  max-height: 60vh;
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* ÇÑ ÁÙ ¾ÆÀÌÅÛ */
.rb-dl__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  margin-bottom: 8px;
}

/* ¿ÞÂÊ ¶óº§(¾ÆÀÌÄÜ ÅØ½ºÆ®) */
.rb-dl__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  height: 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: #111;
  background: #70f5ff;         /* ÇÊ¿äÇÏ¸é ¶óº§º° »ö»ó ºÐ±â */
  box-shadow: 0 0 8px rgba(112,245,255,.45);
}

/* ÅØ½ºÆ®/¸µÅ© ¹­À½: ¼öÃà °¡´ÉÇÏµµ·Ï min-width:0 */
.rb-dl__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0; /* ¡Ú ¾ÆÁÖ Áß¿ä: ÁÙ¹Ù²Þ/¼öÃà Çã¿ë */
}

/* ¸µÅ©: ±âº»Àº ÇÑ ÁÙ + ¸»ÁÙÀÓ */
.rb-dl__link {
  flex: 1 1 auto;
  min-width: 0;               /* ¡Ú ÇÃ·º½º ¾ÆÀÌÅÛÀÌ ÁÙ¾îµé ¼ö ÀÖ°Ô */
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;    /* ¡¦ À¸·Î Àß¶ó Ç¥½Ã */
  color: #bde6ff;
  text-decoration: none;
}
.rb-dl__link:hover,
.rb-dl__link:focus {
  text-decoration: underline;
  outline: none;
}

.rb-dl__btn:hover{filter:brightness(1.03);}
.rb-dl__link {text-decoration: none; font-size: 14px; color: black;}
@media (max-width:560px){ .rb-modal__panel{margin:30px auto;} }

/* °øÅë ¹Ú½º */
.rb-server-stats{
  display:flex; align-items:center; gap:.45rem;
  padding:.35rem .6rem;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(6px);
  font-weight:600;
  line-height:1;
}

.rb-server-stats--net{ gap:.5rem; }

.rb-stat-label{ opacity:.9; }
.rb-stat-sep{ opacity:.5; }
.rb-stat-value{ letter-spacing:.2px; }
.rb-stat-divider{ opacity:.35; margin:0 .25rem; }

/* ¼­¹ö ÃÑ °ñµå ÇöÈ² ¹îÁö */
.rb-server-stats{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:8px auto 0;
  padding:8px 14px;
  width:fit-content;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.06);
}

.rb-stat-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px; height:22px;
  border-radius:50%;
  font-weight:700;
  font-size:15px;
  color:#1a1a1a;
  background: radial-gradient(circle at 30% 30%, #ffe066, #f5b700 70%, #a87400 100%);
  box-shadow: 0 0 10px rgba(255,208,0,0.8), inset 0 2px 4px rgba(255,255,255,0.6);
}

.rb-stat-label{
  color:#e9e9ee;
  letter-spacing:.02em;
  font-weight:600;
  opacity:.9;
}

.rb-stat-sep{
  color:#aaa;
  opacity:.7;
}

.rb-stat-value{
  color:#fff;
  font-weight:800;
  letter-spacing:.02em;
  text-shadow:
    0 0 6px rgba(255,235,59,.8),
    0 0 14px rgba(255,193,7,.7);
}

/* ¹ÝÀÀÇü */
@media (max-width: 640px){
  .rb-server-stats{ gap:8px; padding:7px 12px; }
  .rb-stat-label, .rb-stat-value{ font-size:13px; }
  .rb-stat-chip{ width:20px; height:20px; font-size:11px; }
}


/* ±×¸®µå ·¹ÀÌ¾Æ¿ô: µÎ ¹Ú½º ³ª¶õÈ÷ (ÀÛ¾ÆÁö¸é ÀÚµ¿ ÁÙ¹Ù²Þ) */
.rb-server-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap:.75rem;
  margin-top:.6rem;
}

@media (max-width: 640px){
  .rb-server-grid{
    grid-template-columns: 1fr;
  }
}

/* Ä«µå °øÅë */
.rb-server-card{
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(6px);
  overflow:hidden;
}

/* Ä«µå Çì´õ */
.rb-card-head{
  display:flex; align-items:center;
  padding:.55rem .75rem;
  background:linear-gradient(0deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-bottom:1px solid rgba(255,255,255,.12);
}
.rb-card-title{
  font-weight:700;
  letter-spacing:.2px;
}

/* Ä«µå ¹Ùµð */
.rb-card-body{
  display:flex; align-items:center; gap:.5rem;
  padding:.7rem .8rem .85rem;
}

/* »óÅÂ Ç¥½Ã */
.rb-state-dot{
  width:10px; height:10px; border-radius:50%;
  box-shadow:0 0 10px currentColor, 0 0 2px currentColor inset;
}
.rb-state-dot.on{ color:#28ff86; }   /* ÃÊ·Ï(ON) */
.rb-state-dot.off{ color:#ff5964; }  /* ·¹µå(OFF) */

.rb-state-text{ font-weight:700; }
.text-on{ color:#28ff86; }
.text-off{ color:#ff5964; }

/* Á¢¼ÓÀÚ ¼ö Ä¨ */
.rb-count-chip{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:44px; height:28px; padding:0 .6rem;
  border-radius:10px;
  background:#00ffc6; color:#111;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow:0 0 12px rgba(0,255,198,.35);
}


/* Ä«µå Çì´õ Áß¾Ó Á¤·Ä */
.rb-card-head{
  justify-content: center;     /* °¡¿îµ¥ Á¤·Ä */
  text-align: center;          /* ÅØ½ºÆ®µµ °¡¿îµ¥ */
}

/* Ä«µå ¹Ùµð Áß¾Ó Á¤·Ä */
.rb-card-body{
  justify-content: center;     /* °¡·Î °¡¿îµ¥ */
  align-items: center;         /* ¼¼·Î °¡¿îµ¥ */
  text-align: center;          /* ³»ºÎ ÅØ½ºÆ® Áß¾Ó */
  flex-direction: column;      /* ¾ÆÀÌÄÜ/ÅØ½ºÆ® ¼¼·Î·Î Á¤·Ä(¿øÇÏ¸é À¯Áö) */
  gap: .5rem;                  /* ¿ä¼Ò °£°Ý */
}

/* »óÅÂÄ¨/ÅØ½ºÆ®°¡ ÇÑ ÁÙ·Î ³ª¶õÈ÷ ÇÊ¿äÇÏ¸é À§ÀÇ flex-direction¸¸ ÁÖ¼®Ã³¸®ÇÏ°Å³ª ¾Æ·¡·Î ¹Ù²ãÁà */
/* .rb-card-body{ flex-direction: row; } */






  :root{
    --rb-card:rgba(255,255,255,.06);
    --rb-border:rgba(255,255,255,.12);
    --rb-text:#e8eefc;
    --rb-muted:#a8b3cf;
    --rb-gold:#f6c85f;
    --rb-coin:#7be495;
    --rb-accent:#7aa2ff;
  }

  .rb-stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:12px; margin-top:8px;
  }
  .rb-stat-card{
    position:relative; display:flex; align-items:center; gap:12px;
    padding:14px 16px; color:var(--rb-text);
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border:1px solid var(--rb-border); border-radius:16px;
    box-shadow:0 6px 24px rgba(0,0,0,.25); backdrop-filter:blur(6px);
    justify-content: space-around;
  }
  .rb-stat-chip{
    width:36px; height:36px; flex:0 0 36px; border-radius:50%;
    display:grid; place-items:center; font-weight:700; user-select:none;
    border:1px solid var(--rb-border);
  }
  .rb-kv{ display:flex; flex-direction:column; gap:2px; min-width:0; }
  .rb-label{ font-size:.875rem; color:var(--rb-muted); letter-spacing:.2px; }
  .rb-value{ font-size:1.05rem; font-weight:700; display:flex; align-items:baseline; gap:.35rem; white-space:nowrap; }
  .rb-unit{ font-size:.85rem; opacity:.9; }
  .rb-sub{ font-size:.8rem; color:var(--rb-muted); }
  .muted{ color:var(--rb-muted); }

  /* Åä±Û ¹öÆ° */
  .rb-drop-toggle{
    width:30%; margin-top:8px;
    display:flex; align-items:center; justify-content:space-between;
    padding:12px 14px; color:var(--rb-text);
    background:var(--rb-card); border:1px solid var(--rb-border);
    border-radius:12px; cursor:pointer; user-select:none;
  }
  .rb-drop-toggle:focus{ outline:2px solid var(--rb-accent); outline-offset:2px; }
  .rb-drop-title{ font-weight:700; }
  .rb-caret{ transition:transform .25s ease; }
  .rb-drop-toggle[aria-expanded="true"] .rb-caret{ transform:rotate(180deg); }

  /* µå¶ø ÄÁÅÙÃ÷(¾ÆÄÚµð¾ð) */
  .rb-drop-panel{
    overflow:hidden; max-height:0; transition:max-height .35s ease;
  }
  .rb-drop-panel.open{ max-height:800px; } /* ³»¿ë ³ôÀÌº¸´Ù ÃæºÐÈ÷ Å©°Ô */

  /* ³»ºÎ 2-Ä®·³ Ä«µå */
  .rb-two-cols{
    display:grid; gap:12px; margin-top:10px;
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  @media (max-width:720px){ .rb-two-cols{ grid-template-columns:1fr; } }

  /* ¸·´ë(ÁöºÐ % µî) */
  .rb-bar{
    position:relative; height:8px; width:100%; border-radius:999px;
    background:rgba(255,255,255,.06); border:1px solid var(--rb-border);
    overflow:hidden; margin-top:6px;
  }
  .rb-fill{
    height:100%; width:0%;
    background:linear-gradient(90deg, var(--rb-accent), color-mix(in oklab, var(--rb-accent) 60%, var(--rb-gold)));
    border-right:1px solid rgba(0,0,0,.2);
    transition:width .6s ease;
  }
  
  
  
  
  
/* =========================
   ¿ùµå°æÇèÄ¡ ÈÄ¿ø ¹è³Ê (°íÁ¤Çü)
   ========================= */

.rb-donation-banner{
  position: relative;
  margin: 12px 0 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, .42);
  background:
    radial-gradient(1200px 220px at 50% 0%, rgba(255, 215, 0, .18), transparent 55%),
    radial-gradient(900px 220px at 50% 100%, rgba(255, 145, 0, .12), transparent 60%),
    linear-gradient(135deg, rgba(10,10,16,.92), rgba(18,10,6,.92));
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    0 0 26px rgba(255, 215, 0, .18),
    inset 0 0 0 1px rgba(255,255,255,.06);
}

.rb-donation-banner__bg{
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(255,215,0,.09) 0px,
      rgba(255,215,0,.09) 1px,
      transparent 1px,
      transparent 10px
    );
  opacity: .45;
  transform: translateZ(0);
  animation: rbGoldScan 5.5s linear infinite;
  pointer-events: none;
}

@keyframes rbGoldScan{
  0%   { transform: translateX(-8%); opacity: .35; }
  50%  { transform: translateX(8%);  opacity: .55; }
  100% { transform: translateX(-8%); opacity: .35; }
}

/* ÁÂ/¿ì ¸Ó´Ï ÀÌ¹ÌÁö */
.rb-donation-banner__side{
  position: absolute;
  top: 50%;
  width: 170px;
  height: 110px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter:
    drop-shadow(0 10px 18px rgba(0,0,0,.55))
    drop-shadow(0 0 18px rgba(255, 215, 0, .25));
  opacity: .95;
  pointer-events: none;
}

.rb-donation-banner__side--left{
  left: 10px;
  background-image: url('/imgs/ui/money_left.png');
  animation: rbFloat 2.2s ease-in-out infinite;
}

.rb-donation-banner__side--right{
  right: 10px;
  background-image: url('/imgs/ui/money_right.png');
  animation: rbFloat 2.2s ease-in-out infinite reverse;
}

/* ÇÑ Àå¸¸ ¾µ °Å¸é money_right.png ´ë½Å ¾Æ·¡Ã³·³ µÚÁý±â »ç¿ë °¡´É
.rb-donation-banner__side--right{
  background-image: url('/imgs/ui/money_left.png');
  transform: translateY(-50%) scaleX(-1);
}
*/

@keyframes rbFloat{
  0%,100% { transform: translateY(-50%) translateY(0); }
  50%     { transform: translateY(-50%) translateY(-4px); }
}

.rb-donation-banner__content{
  position: relative;
  padding: 18px 200px; /* ÁÂ¿ì ÀÌ¹ÌÁö °ø°£ È®º¸ */
  text-align: center;
}

.rb-donation-banner__tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .6px;
  color: rgba(255, 240, 190, .95);
  background: rgba(255, 215, 0, .10);
  border: 1px solid rgba(255, 215, 0, .22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  transform: translateZ(0);
}

.rb-donation-banner__msg{
  margin-top: 10px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
  color: #ffe9b8;
  text-shadow:
    0 0 10px rgba(255, 215, 0, .45),
    0 0 22px rgba(255, 150, 0, .20),
    0 2px 0 rgba(0,0,0,.45);
  animation: rbPulseGlow 1.25s ease-in-out infinite;
}

@keyframes rbPulseGlow{
  0%,100% { filter: brightness(1); }
  50%     { filter: brightness(1.18); }
}

.rb-donation-banner__sub{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .9px;
  color: rgba(255, 230, 170, .78);
}

/* ¹ÝÂ¦ ½ºÆÄÅ¬(°¡Â¥ ÆÄÆ¼Å¬) */
.rb-donation-banner__spark{
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,215,0,.55), transparent 70%);
  filter: blur(.2px) drop-shadow(0 0 14px rgba(255,215,0,.55));
  opacity: .0;
  pointer-events: none;
  animation: rbSpark 1.8s ease-in-out infinite;
}

.rb-donation-banner__spark--1{ left: 26%; top: 26%; animation-delay: .1s; }
.rb-donation-banner__spark--2{ left: 52%; top: 68%; animation-delay: .6s; }
.rb-donation-banner__spark--3{ left: 78%; top: 36%; animation-delay: 1.0s; }

@keyframes rbSpark{
  0%   { transform: scale(.2); opacity: 0; }
  35%  { transform: scale(1.3); opacity: .9; }
  70%  { transform: scale(.6); opacity: .35; }
  100% { transform: scale(.2); opacity: 0; }
}

/* ¹ÝÀÀÇü: ¸ð¹ÙÀÏ¿¡¼­ ÁÂ¿ì ÀÌ¹ÌÁö ÀÛ°Ô + ÆÐµù ÁÙÀÌ±â */
@media (max-width: 720px){
  .rb-donation-banner__content{ padding: 16px 120px; }
  .rb-donation-banner__side{ width: 110px; height: 78px; }
  .rb-donation-banner__msg{ font-size: 15px; }
}

@media (max-width: 480px){
  .rb-donation-banner__content{ padding: 14px 18px; }
  .rb-donation-banner__side{ display: none; } /* ¸ð¹ÙÀÏÀº ±ò²ûÇÏ°Ô */
  .rb-donation-banner__msg{ font-size: 14px; }
}


/* ===== ·Îµù ÆøÁ×/ÄÚÀÎ ÆÄÆ¼Å¬ ¿À¹ö·¹ÀÌ(ÀÌ¹ÌÁö ¾øÀÌ) ===== */
.rb-burst-canvas{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
}

/* ¹è³Ê°¡ ÀÖÀ¸¸é ·Îµù ½Ã "Äç" ÇÏ°í Æ¢°Ô */
.rb-donation-banner.rb-pop{
  animation: rbBannerPop .62s cubic-bezier(.2,.95,.2,1.25) 1;
}
@keyframes rbBannerPop{
  0%   { transform: scale(.90); filter: brightness(1); }
  45%  { transform: scale(1.05); filter: brightness(1.30); }
  100% { transform: scale(1);    filter: brightness(1); }
}
  
  

.rb-donation-banner__endat{
  margin: 0 20px 0 12px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .3px;
  color: rgba(255,230,170,.92);
  background: rgba(255,215,0,.10);
  border: 1px solid rgba(255,215,0,.18);
}


.rb-donation-banner__msg{
  white-space: pre-line; /* \n ÁÙ¹Ù²Þ Ç¥½Ã */
}




#snow-container{
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.snowflake{
  position: absolute;
  top: -20px;
  color: #fff;
  font-size: 12px;
  opacity: .8;
  user-select: none;
  will-change: transform;
  animation-name: fall;
  animation-timing-function: linear;
}

@keyframes fall{
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(40px, 110vh, 0); }
}
















/* StoneAge style layout patch */
.sa-page {
  min-height: 100vh;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

.sa-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 900;
  background: rgba(0,0,0,.82);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.sa-header__inner {
  height: 78px;
  /* max-width: 1480px; */
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sa-logo {
  width: 230px;
  flex: 0 0 230px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.sa-logo__main {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1px;
}

.sa-logo__sub {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 4px;
  color: #f3c35b;
}

.sa-nav {
  flex: 0 0 auto;
  height: 100%;
  min-width: max-content;
}

.sa-nav__list {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  list-style: none;
}

.sa-nav__item {
  position: relative;
  height: 100%;
  flex: 0 0 auto;
}

.sa-mobile-auth-item {
  display: none;
}

.sa-nav__link {
  height: 100%;
  padding: 0 34px;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  word-break: keep-all;
}

.sa-nav__item:hover .sa-nav__link {
  color: #ffd36b;
}

.sa-sub {
  display: none;
  position: absolute;
  left: 50%;
  top: 78px;
  transform: translateX(-50%);
  min-width: 280px;
  padding: 14px 0;
  background: rgba(17,17,17,.96);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 18px 36px rgba(0,0,0,.38);
  text-align: center;
}

.sa-nav__item:hover .sa-sub {
  display: block;
}

.sa-sub a {
  display: block;
  padding: 13px 22px;
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.sa-sub a:hover {
  color: #ffd36b;
  background: rgba(255,255,255,.08);
}

.sa-header__right {
  margin-left: auto;
  flex: 0 0 auto;
}

.sa-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  border-radius: 24px;
  background: #f1b83a;
  color: #111;
  font-weight: 900;
  text-decoration: none;
}

.sa-main {
  padding-top: 150px;
  min-height: 800px;
}

.sa-hero {
  position: relative;
  min-height: 460px;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.sa-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.92) 100%),
    url('../img/cgbackImg.png') center center / cover no-repeat;
  transform: scale(1.02);
}

.sa-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 20px 40px;
}

.sa-hero__eyebrow {
  margin: 0 0 14px;
  color: #ffd36b;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
}

.sa-hero__title {
  margin: 0;
  font-size: clamp(64px, 12vw, 150px);
  line-height: .92;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 10px 34px rgba(0,0,0,.65);
}

.sa-hero__desc {
  margin: 24px 0 0;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 900;
  color: #fff;
}

.sa-hero__actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sa-primary,
.sa-secondary {
  min-width: 188px;
  height: 56px;
  padding: 0 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
}

.sa-primary {
  background: #f1b83a;
  color: #111;
}

.sa-secondary {
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

.sa-socials {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sa-socials a {
  width: 92px;
  height: 38px;
  border-radius: 20px;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.sa-notice-band {
  max-width: 1180px;
  margin: -42px auto 50px;
  position: relative;
  z-index: 3;
  padding: 20px 28px;
  border-radius: 18px;
  background: linear-gradient(90deg, #201405, #5c3a0b, #201405);
  border: 1px solid rgba(255,211,107,.5);
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.sa-notice-band strong {
  color: #ffd36b;
  margin-right: 14px;
}

.sa-status {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sa-status__card {
  min-height: 112px;
  padding: 24px;
  border-radius: 18px;
  background: #141414;
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
}

.sa-status__card span {
  display: block;
  margin-bottom: 10px;
  color: #aaa;
  font-size: 15px;
  font-weight: 700;
}

.sa-status__card strong {
  font-size: 28px;
  font-weight: 900;
}

.sa-status__card .is-on {
  color: #30ff87;
}

.sa-status__card .is-off {
  color: #ff4f4f;
}

.sa-section {
  max-width: 1180px;
  margin: 0 auto 90px;
  padding: 0 20px;
}

.sa-section__head {
  text-align: center;
  margin-bottom: 34px;
}

.sa-section__head span {
  color: #ffd36b;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
}

.sa-section__head h2 {
  margin: 10px 0 0;
  font-size: 42px;
  font-weight: 900;
}

.sa-section__head p {
  color: #bbb;
}

.sa-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sa-info-card {
  min-height: 230px;
  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .2s ease, border-color .2s ease;
}

.sa-info-card:hover {
  transform: translateY(-8px);
  border-color: #ffd36b;
}

.sa-info-card b {
  font-size: 26px;
  font-weight: 900;
}

.sa-info-card p {
  margin: 12px 0 0;
  color: #bbb;
  line-height: 1.5;
}

.sa-community {
  padding: 64px 20px;
  border-radius: 28px;
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
}

.sa-community__links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sa-community__links a {
  min-width: 150px;
  height: 48px;
  padding: 0 22px;
  border-radius: 24px;
  background: #222;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.sa-community__links a:hover {
  background: #f1b83a;
  color: #111;
}

.sa-footer {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 46px 20px;
}

.sa-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.sa-footer strong {
  font-size: 28px;
  font-weight: 900;
}

.sa-footer p {
  color: #999;
}

.sa-footer__links {
  margin: 24px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sa-footer__links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 700;
}

.sa-footer__links a:hover {
  color: #ffd36b;
}

.sa-copy {
  font-size: 13px;
}

.sa-mobile-btn {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: none;
  cursor: pointer;
}

.sa-mobile-btn span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
}

/* PC¿¡¼­´Â Å¬¸¯ °íÁ¤ ¹æÁö: hover¸¸ µå·Ó */
@media (min-width: 1025px) {
  .sa-nav__item.is-open .sa-sub {
    display: none;
  }

  .sa-nav__item:hover .sa-sub {
    display: block;
  }
}

@media (max-width: 1024px) {
  .sa-header__inner {
    height: 68px;
    padding: 0 18px;
  }

  .sa-logo {
    width: auto;
  }

  .sa-logo__main {
    font-size: 25px;
  }

  .sa-logo__sub {
    font-size: 9px;
  }

  .sa-mobile-btn {
    display: block;
  }

  .sa-header__right {
    display: none;
  }

  .sa-nav {
    display: none;
    position: fixed;
    left: 0;
    top: 68px;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(0,0,0,.96);
    overflow-y: auto;
  }

  .sa-nav.is-active {
    display: block;
  }

  .sa-nav__list {
    display: block;
    height: auto;
    padding: 14px 0;
  }

  .sa-nav__item {
    height: auto;
  }

  .sa-mobile-auth-item {
    display: block;
  }

  .sa-nav__link {
    height: 58px;
    padding: 0 24px;
    justify-content: space-between;
  }

  .sa-sub {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: #151515;
  }

  .sa-nav__item:hover .sa-sub {
    display: none;
  }

  .sa-nav__item.is-open .sa-sub {
    display: block;
  }

  .sa-sub a {
    padding: 14px 36px;
  }

  .sa-main {
    padding-top: 68px;
  }

  .sa-status,
  .sa-card-grid {
    grid-template-columns: 1fr;
  }

  .sa-section__head h2 {
    font-size: 34px;
  }
}

@media (max-width: 520px) {
  .sa-hero {
    min-height: 300px;
  }

  .sa-hero__eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .sa-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .sa-primary,
  .sa-secondary {
    width: 86%;
  }

  .sa-socials {
    flex-wrap: wrap;
  }

  .sa-notice-band {
    margin: -24px 14px 40px;
  }
}







#rbMyAssetPanel {
  display: none;
}

#rbMyAssetPanel.is-open {
  display: block;
}


.sa-progress {
  margin-top: 14px;
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
}

.sa-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ffd36b, #ffb300);
  border-radius: 10px;
}






.ip-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.ip-modal[aria-hidden="false"] {
  display: block;
}

.ip-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
}

.ip-modal__dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100vw - 28px));
  padding: 28px 22px 22px;
  border-radius: 20px;
  background: #0c131c;
  border: 1px solid rgba(255,211,107,.35);
  color: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.65);
  text-align: center;
}

.ip-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.ip-modal__dialog h3 {
  margin: 0 0 10px;
  text-align: center;
  color: #ffd36b;
}

.ip-modal__desc {
  margin: 0 0 16px;
  color: #aeb9ca;
  font-size: 13px;
  text-align: center;
}

.ip-modal__input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: #070c12;
  color: #fff;
}

.ip-modal__actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.ip-modal__btn {
  flex: 1;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,211,107,.45);
  background: rgba(255,211,107,.12);
  color: #ffd36b;
  font-weight: 900;
  cursor: pointer;
  margin-top: 10px;
}

.ip-modal__btn--gray {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
}


.ip-list {
  margin-top: 14px;
  max-height: 300px;
  overflow-y: auto;
}

.ip-item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
}

.ip-mask {
  color: #ffd36b;
  font-weight: 900;
}

.ip-memo {
  color: #aaa;
}

.ip-date {
  color: #666;
  font-size: 11px;
}
.sa-global-search {
  flex: 0 1 360px;
  min-width: 280px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 26px 0 18px;
  padding: 3px 4px 3px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(255,255,255,.075);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.sa-global-search:focus-within {
  border-color: rgba(243,195,91,.7);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(243,195,91,.14);
}

.sa-global-search__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}

.sa-global-search__input::placeholder {
  color: rgba(255,255,255,.54);
  font-weight: 600;
}

.sa-global-search__button {
  flex: 0 0 auto;
  height: 30px;
  min-width: 54px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: #f1b83a;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.sa-global-search__button:hover {
  background: #ffd36b;
}

.sa-global-search__button:active {
  transform: translateY(1px);
}

@media (max-width: 1360px) {
  .sa-nav__link {
    padding-left: 22px;
    padding-right: 22px;
  }

  .sa-global-search {
    flex-basis: 300px;
    min-width: 240px;
    margin: 0 20px 0 12px;
  }
}

@media (max-width: 1120px) and (min-width: 1025px) {
  .sa-logo {
    width: 190px;
  }

  .sa-logo__main {
    font-size: 28px;
  }

  .sa-nav__link {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
  }

  .sa-global-search {
    flex-basis: 250px;
  }
}

@media (max-width: 1024px) {
  .sa-header__inner {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    align-content: center;
    gap: 0 10px;
    padding: 0 18px 10px;
  }

  .sa-mobile-btn {
    order: 2;
    margin-left: auto;
  }

  .sa-global-search {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    height: 40px;
    margin: 8px 0 0;
    padding: 4px 4px 4px 12px;
    border-radius: 9px;
    background: rgba(255,255,255,.08);
  }

  .sa-global-search__input {
    font-size: 14px;
  }

  .sa-global-search__button {
    height: 32px;
    min-width: 58px;
  }

  .sa-nav {
    top: 118px;
    height: calc(100vh - 118px);
  }
}

@media (max-width: 520px) {
  .sa-header__inner {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 5px;
  }

  .sa-global-search {
    height: 38px;
    margin-top: 7px;
  }

  .sa-global-search__input {
    font-size: 13px;
  }

  .sa-global-search__button {
    height: 30px;
    min-width: 50px;
    padding: 0 10px;
    font-size: 12px;
  }
}

/* Login/header responsive stability patch */
.sa-header,
.sa-header * {
  box-sizing: border-box;
}

.sa-header__inner {
  max-width: 100%;
  min-width: 0;
}

.sa-logo {
  min-width: 0;
}

.sa-nav {
  min-width: 0;
}

.sa-nav__list {
  min-width: 0;
}

.sa-global-search {
  min-width: 0;
}

.sa-shop-btn {
  white-space: nowrap;
}

.sa-notice-band {
  max-width: min(1180px, calc(100vw - 32px));
  overflow-wrap: anywhere;
}

.sa-notice-band strong,
.sa-notice-band span {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}

#worldExpMsg {
  white-space: pre-line;
  line-height: 1.55;
}

.sa-status {
  width: 100%;
  max-width: min(1180px, calc(100vw - 32px));
  box-sizing: border-box;
}

.sa-status__card {
  min-width: 0;
  overflow: hidden;
}

.sa-status__card strong {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
}

.sa-myasset-panel {
  width: 100%;
  padding-inline: 16px;
  box-sizing: border-box;
}

.sa-myasset-panel .sa-status {
  padding-inline: 0;
}

.rb-stats-grid {
  width: 100%;
}

.rb-stat-card {
  min-width: 0;
}

.rb-kv,
.rb-value {
  min-width: 0;
}

.rb-value {
  flex-wrap: wrap;
  white-space: normal;
  overflow-wrap: anywhere;
}

.rb-drop-toggle {
  width: min(100%, 360px);
}

@media (max-width: 1480px) and (min-width: 1025px) {
  .sa-header__inner {
    padding-inline: clamp(12px, 1.6vw, 24px);
    gap: clamp(6px, .8vw, 12px);
  }

  .sa-logo {
    width: clamp(150px, 13vw, 210px);
    flex-basis: clamp(150px, 13vw, 210px);
  }

  .sa-logo__main {
    font-size: clamp(24px, 2.1vw, 30px);
  }

  .sa-logo__sub {
    font-size: 10px;
    letter-spacing: clamp(2px, .28vw, 4px);
  }

  .sa-nav {
    flex: 1 1 auto;
  }

  .sa-nav__list {
    justify-content: center;
  }

  .sa-nav__link {
    padding-inline: clamp(10px, 1.2vw, 20px);
    font-size: clamp(15px, 1.2vw, 17px);
  }

  .sa-global-search {
    flex: 0 1 clamp(180px, 20vw, 300px);
    margin-inline: clamp(6px, 1vw, 16px);
  }

  .sa-shop-btn {
    height: 40px;
    padding-inline: clamp(14px, 1.5vw, 22px);
    font-size: 13px;
  }
}

@media (max-width: 1180px) and (min-width: 1025px) {
  .sa-header__inner {
    height: auto;
    min-height: 78px;
    flex-wrap: wrap;
    padding-block: 8px;
  }

  .sa-logo {
    order: 1;
  }

  .sa-header__right {
    order: 2;
    margin-left: auto;
  }

  .sa-global-search {
    order: 3;
    flex: 1 1 260px;
    max-width: 360px;
    margin-left: auto;
    margin-right: 0;
  }

  .sa-nav {
    order: 4;
    flex: 1 1 100%;
    height: 48px;
  }

  .sa-nav__list {
    justify-content: center;
  }

  .sa-nav__link {
    height: 48px;
  }

  .sa-sub {
    top: 48px;
  }

  .sa-main {
    padding-top: 126px;
  }
}

@media (max-width: 760px) {
  .sa-notice-band {
    margin-inline: 14px;
    padding: 16px;
  }

  .sa-notice-band strong {
    display: block;
    margin: 0 0 8px;
  }

  .sa-status {
    max-width: calc(100vw - 28px);
    padding-inline: 0;
    gap: 12px;
  }

  .sa-status__card {
    min-height: 96px;
    padding: 18px 14px;
  }

  .sa-status__card strong {
    font-size: clamp(20px, 6vw, 26px);
  }
}