:root {
  --color-primary: #FFD200;
  --color-primary-hover: #FFE033;
  --color-primary-dark: #E6AC00;
  --color-primary-glow: rgba(255, 210, 0, 0.45);

  --color-bg-base: #08090C;
  --color-card-bg: #11131A;
  --color-card-border: rgba(255, 210, 0, 0.28);
  --color-card-border-hover: rgba(255, 210, 0, 0.65);

  --color-text-main: #FFFFFF;
  --color-text-sub: #E2E8F0;
  --color-text-muted: #94A3B8;
  --color-text-dark: #0A0B0E;
  --color-success: #10B981;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-card: 0 16px 45px rgba(0, 0, 0, 0.85), 0 0 26px rgba(255, 210, 0, 0.14);
  --shadow-btn: 0 10px 24px rgba(255, 210, 0, 0.38);
  --shadow-btn-hover: 0 14px 32px rgba(255, 210, 0, 0.58);
}

/* Base Reset (Zero Reflow / Fast Rendering) */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  font-family: 'Kanit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

button, input, select, textarea {
  font-family: inherit;
}

/* ========================================================
   1. STUNNING MULTI-LAYER AMBIENT BACKGROUND (COMIC POP-ART & GOLD)
   ======================================================== */
.bg-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, #141722 0%, #08090C 70%, #040507 100%);
  contain: strict;
}

/* Halftone Comic Dots Pattern */
.ambient-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 210, 0, 0.13) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  opacity: 0.85;
  animation: meshPulse 8s ease-in-out infinite alternate;
}

@keyframes meshPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0.95; transform: scale(1.02); }
}

/* Rotating Comic Action Speed Rays */
.ambient-speed-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 960px;
  height: 960px;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 210, 0, 0.025) 0deg 9deg,
    transparent 9deg 18deg
  );
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  animation: rotateRays 45s linear infinite;
  will-change: transform;
}

@keyframes rotateRays {
  0% { transform: translate3d(-50%, -50%, 0) rotate(0deg); }
  100% { transform: translate3d(-50%, -50%, 0) rotate(360deg); }
}

/* Luminous Ambient Floating Orbs (Native Radial Gradient, 0% CPU Blur) */
.ambient-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.ambient-circle-1 {
  top: -120px;
  left: 50%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.2) 0%, rgba(255, 140, 0, 0.07) 50%, transparent 70%);
  animation: floatOrbTop 9s ease-in-out infinite alternate;
}

.ambient-circle-2 {
  bottom: -100px;
  left: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 120, 0, 0.16) 0%, rgba(255, 210, 0, 0.04) 55%, transparent 70%);
  animation: floatOrbLeft 12s ease-in-out infinite alternate;
}

.ambient-circle-3 {
  top: 35%;
  right: -100px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 225, 75, 0.16) 0%, rgba(255, 90, 0, 0.04) 55%, transparent 70%);
  animation: floatOrbRight 11s ease-in-out infinite alternate;
}

@keyframes floatOrbTop {
  0% { transform: translate3d(-50%, 0, 0) scale(0.92); }
  100% { transform: translate3d(calc(-50% + 35px), 35px, 0) scale(1.08); }
}

@keyframes floatOrbLeft {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(30px, -35px, 0) scale(1.12); }
}

@keyframes floatOrbRight {
  0% { transform: translate3d(0, 0, 0) scale(0.95); }
  100% { transform: translate3d(-35px, 30px, 0) scale(1.08); }
}

/* Floating Golden Comic Spark Stars */
.ambient-spark {
  position: absolute;
  color: var(--color-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  text-shadow: 0 0 10px rgba(255, 210, 0, 0.85), 0 0 20px rgba(255, 210, 0, 0.4);
  pointer-events: none;
  opacity: 0.65;
  animation: sparkTwinkle 4.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.ambient-spark-1 { top: 12%; left: 14%; font-size: 16px; animation-delay: 0s; }
.ambient-spark-2 { top: 24%; right: 12%; font-size: 20px; animation-delay: 1.1s; }
.ambient-spark-3 { top: 58%; left: 8%; font-size: 14px; animation-delay: 2.2s; }
.ambient-spark-4 { bottom: 20%; right: 14%; font-size: 18px; animation-delay: 3.3s; }
.ambient-spark-5 { bottom: 12%; left: 22%; font-size: 15px; animation-delay: 1.8s; }
.ambient-spark-6 { top: 40%; right: 8%; font-size: 13px; animation-delay: 2.7s; }

@keyframes sparkTwinkle {
  0%, 100% { transform: scale(0.8) translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: scale(1.25) translateY(-8px) rotate(15deg); opacity: 1; text-shadow: 0 0 14px rgba(255, 210, 0, 1), 0 0 26px rgba(255, 170, 0, 0.7); }
}

/* Floating Particles Canvas */
.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}


/* ========================================================
   2. APP WRAPPER (OPTICAL BALANCE & COMPACT PROPORTIONS)
   ======================================================== */
.app-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  margin: auto;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

/* ========================================================
   3. ANNOUNCEMENT BAR (SMOOTH MARQUEE TICKER)
   ======================================================== */
.announcement-bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #141720;
  border: 1px solid rgba(255, 210, 0, 0.32);
  border-radius: var(--radius-full);
  padding: 7px 14px;
  font-size: 0.82rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  contain: paint layout;
  animation: barEnter 0.5s ease-out backwards;
}

@keyframes barEnter {
  0% { opacity: 0; transform: translate3d(0, -10px, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

.announcement-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--color-primary), #FFA500);
  color: var(--color-text-dark);
  font-weight: 800;
  padding: 2.5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  letter-spacing: 0.4px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 210, 0, 0.4);
}

/* Flame Flicker Micro-Animation */
.announcement-tag i {
  font-size: 0.78rem;
  color: #B33D00;
  display: inline-block;
  animation: flameFlicker 1.8s ease-in-out infinite;
}

@keyframes flameFlicker {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.16) rotate(6deg); }
}

/* Marquee Ticker - Isolated GPU Composited */
.announcement-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  contain: paint layout;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeTicker 16s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.announcement-bar:hover .marquee-track {
  animation-play-state: paused;
}

.announcement-text {
  font-family: 'Kanit', sans-serif !important;
  color: #E2E8F0;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

.announcement-separator {
  color: var(--color-primary);
  margin: 0 14px;
  font-size: 0.72rem;
  opacity: 0.85;
}

@keyframes marqueeTicker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ========================================================
   4. MAIN PORTAL CARD (DYNAMIC ENTRANCE & SHIMMER BORDER)
   ======================================================== */
.portal-card {
  width: 100%;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  contain: layout style;
  animation: cardEnter 0.65s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

@keyframes cardEnter {
  0% { opacity: 0; transform: translate3d(0, 20px, 0) scale(0.97); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

/* Continuous Moving Shimmering Top Border */
.portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD200, #FF6600, #FFD200, transparent);
  background-size: 200% 100%;
  animation: borderShimmer 3.8s linear infinite;
}

@keyframes borderShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.portal-card:hover {
  border-color: var(--color-card-border-hover);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9), 0 0 32px rgba(255, 210, 0, 0.25);
  transform: translateY(-2px);
}

/* ========================================================
   5. LOGO & PULSING GLOW RING + 3D JEWEL BOLT
   ======================================================== */
.logo-container {
  position: relative;
  margin-bottom: 15px;
}

/* Breathing Pulsing Golden Aura Ring */
.logo-glow-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.42) 0%, rgba(255, 140, 0, 0.16) 50%, transparent 70%);
  animation: logoPulse 2.8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes logoPulse {
  0% { transform: scale(0.94); opacity: 0.55; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* Subtle Gentle Logo Frame Hover */
.logo-frame {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  padding: 3.5px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #FFAA00 50%, #FF5500 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.65), 0 0 18px rgba(255, 210, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-frame:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.75), 0 0 24px rgba(255, 210, 0, 0.45);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #08090C;
  display: block;
}

/* STUNNING OBSIDIAN & 3D GOLD JEWEL BOLT BADGE (<i class="fa-solid fa-bolt"></i>) */
.logo-badge {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 29px;
  height: 29px;
  background: linear-gradient(145deg, #222634 0%, #090A0E 100%);
  border: 1.5px solid rgba(255, 210, 0, 0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    inset 0 1px 1.5px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.6),
    0 3px 10px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(255, 210, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 3;
}

.logo-badge i {
  font-size: 13px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF380 25%, #FFD200 70%, #E69900 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  transform: rotate(-3deg);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
  animation: boltGleam 4s ease-in-out infinite;
  transition: transform 0.2s ease;
}

/* Subtle Periodic Electric Gleam on the Bolt */
@keyframes boltGleam {
  0%, 82%, 100% { transform: scale(1) rotate(-3deg); }
  90% { transform: scale(1.18) rotate(5deg); }
}

.logo-frame:hover .logo-badge {
  transform: scale(1.14) rotate(6deg);
  border-color: #FFD200;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    0 5px 14px rgba(0, 0, 0, 0.7),
    0 0 14px rgba(255, 210, 0, 0.55);
}

.logo-frame:hover .logo-badge i {
  transform: rotate(0deg) scale(1.12);
}

/* ========================================================
   6. BRAND TITLES & TYPOGRAPHY
   ======================================================== */
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 210, 0, 0.12);
  border: 1px solid rgba(255, 210, 0, 0.42);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3.5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

/* Live Radar Ping Pulse Dot */
.brand-badge .pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-primary);
  position: relative;
}

.brand-badge .pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  animation: pingDot 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingDot {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.brand-title {
  font-size: 2.05rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.brand-title span {
  color: var(--color-primary);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF275 30%, #FFD200 70%, #E69D00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.brand-subtitle {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--color-text-sub);
  margin-bottom: 7px;
  letter-spacing: -0.2px;
}

.brand-description {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  max-width: 340px;
  line-height: 1.55;
  margin-bottom: 20px;
}

/* ========================================================
   7. CALL TO ACTION BUTTON WITH LUXURY SHIMMER SWEEP
   ======================================================== */
.actions-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, #FFE033 0%, var(--color-primary) 40%, #FFAE00 100%);
  color: var(--color-text-dark);
  font-size: 1.08rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Diagonal Light Sweep Across Button */
.btn-shimmer-sweep {
  position: absolute;
  top: 0;
  left: -130%;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: skewX(-24deg);
  animation: btnShimmer 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes btnShimmer {
  0% { transform: translateX(0) skewX(-24deg); }
  55%, 100% { transform: translateX(390%) skewX(-24deg); }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
  background: linear-gradient(135deg, #FFF066 0%, #FFD200 40%, #FF9E00 100%);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-content-left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

/* STUNNING OBSIDIAN & GOLD JEWEL ICON BOX */
.btn-icon-box {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, #1C1F2A 0%, #090A0E 100%);
  border: 1.5px solid rgba(255, 210, 0, 0.45);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.32rem;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -1px 2px rgba(0, 0, 0, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 210, 0, 0.2);
  flex-shrink: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-icon-box i {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF380 25%, #FFD200 70%, #E69900 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.7));
  display: block;
}

.btn-primary:hover .btn-icon-box {
  transform: scale(1.06) rotate(-3deg);
  border-color: #FFD200;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.6),
    0 0 14px rgba(255, 210, 0, 0.45);
}

.btn-text-main {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
  color: #08090C;
  letter-spacing: -0.3px;
}

.btn-text-sub {
  font-size: 0.74rem;
  font-weight: 600;
  color: #2D3139;
}

/* STUNNING OBSIDIAN & GOLD JEWEL ARROW BOX */
.btn-arrow {
  width: 36px;
  height: 36px;
  background: linear-gradient(145deg, #1C1F2A 0%, #090A0E 100%);
  border: 1.5px solid rgba(255, 210, 0, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    0 3px 8px rgba(0, 0, 0, 0.4),
    0 0 8px rgba(255, 210, 0, 0.2);
  flex-shrink: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-arrow i {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF380 25%, #FFD200 70%, #E69900 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.95rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px) scale(1.08);
  border-color: #FFD200;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    0 5px 14px rgba(0, 0, 0, 0.55),
    0 0 14px rgba(255, 210, 0, 0.45);
}

.btn-primary:hover .btn-arrow i {
  transform: translate(2px, -2px);
}

/* ========================================================
   8. VERIFIED NOTICE (CARD FOOTER)
   ======================================================== */
.card-verification {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.77rem;
  color: var(--color-text-muted);
}

.verified-icon {
  color: var(--color-success);
  font-size: 1.05rem;
}

/* ========================================================
   9. MOBILE OPTIMIZATIONS
   ======================================================== */
@media (max-width: 480px) {
  .app-wrapper {
    padding: 16px 14px;
    gap: 12px;
    max-width: 100%;
    width: 100%;
  }

  .portal-card {
    padding: 24px 18px 18px;
    border-radius: 20px;
  }

  .logo-container {
    margin-bottom: 12px;
  }

  .logo-frame {
    width: 96px;
    height: 96px;
  }

  .logo-badge {
    width: 26px;
    height: 26px;
  }

  .logo-badge i {
    font-size: 11.5px;
  }

  .brand-badge {
    font-size: 0.68rem;
    padding: 3px 10px;
    margin-bottom: 8px;
  }

  .brand-title {
    font-size: 1.85rem;
    margin-bottom: 4px;
  }

  .brand-subtitle {
    font-size: 0.88rem;
    margin-bottom: 6px;
  }

  .brand-description {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 18px;
    padding: 0 4px;
  }

  .btn-primary {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .btn-content-left {
    gap: 10px;
  }

  .btn-icon-box {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    border-radius: 10px;
  }

  .btn-text-main {
    font-size: 1.02rem;
  }

  .btn-text-sub {
    font-size: 0.7rem;
  }

  .btn-arrow {
    width: 32px;
    height: 32px;
  }

  .card-verification {
    margin-top: 14px;
    padding-top: 12px;
    font-size: 0.74rem;
  }
}

/* Extra Small Mobile (<= 360px) */
@media (max-width: 360px) {
  .portal-card {
    padding: 18px 14px 14px;
  }

  .logo-frame {
    width: 82px;
    height: 82px;
  }

  .brand-title {
    font-size: 1.6rem;
  }

  .btn-icon-box {
    width: 35px;
    height: 35px;
    font-size: 1.05rem;
  }

  .btn-arrow {
    width: 28px;
    height: 28px;
  }
}
