/* ==========================================
   CineAHO Arkanoid CSS Stylesheet
   ========================================== */

:root {
  --bg-color: #060913;
  --panel-bg: rgba(14, 20, 38, 0.55);
  --panel-border: rgba(255, 255, 255, 0.05);
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  
  --grad-purple: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
  --grad-blue: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --grad-green: linear-gradient(135deg, #10b981 0%, #047857 100%);
  --grad-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --grad-red: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
  
  --font-main: 'Noto Sans KR', 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

.ak-page-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

/* Glassmorphism Panel Helper */
.glass-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}
.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Hero Section */
.ak-hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-radius: 20px;
}
.hero-left-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.badge-capsule {
  display: inline-flex;
  align-items: center;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c084fc;
  width: fit-content;
}
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #a855f7;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
  animation: pulse-dot-anim 1.6s infinite;
}
@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(168, 85, 247, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

.hero-ak-title {
  font-family: var(--font-display), var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-left-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Game Layout Grid */
.game-layout {
  display: grid;
  grid-template-columns: 280px 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

/* Left Column: Stage Selector Panel */
.stage-panel {
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.panel-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.75rem;
}
.panel-header h3 {
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-header p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stage-grid-scroll {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
}
.stage-grid-scroll::-webkit-scrollbar {
  width: 6px;
}
.stage-grid-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.stage-grid-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
}

.btn-stage {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.btn-stage.unlocked {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}
.btn-stage.unlocked:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}
.btn-stage.active {
  background: var(--grad-purple);
  border-color: rgba(168, 85, 247, 0.5);
  color: #fff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}
.btn-stage.completed {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}
.btn-stage.completed:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  color: #fff;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}
.btn-stage.locked {
  background: rgba(255, 255, 255, 0.01);
  border-color: rgba(255, 255, 255, 0.02);
  color: var(--text-dark);
  cursor: not-allowed;
  opacity: 0.5;
}

/* Center Column: Arcade Cabinet */
.canvas-panel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cabinet-top-info {
  width: 100%;
  max-width: 480px;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stage-title-display {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tag-stage {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  border-radius: 6px;
  text-transform: uppercase;
}
.title-stage {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}
.stage-desc-display {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.canvas-container {
  position: relative;
  width: 480px;
  height: 640px;
  overflow: hidden;
  border-radius: 20px;
  background: #020617;
  border: 4px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(59, 130, 246, 0.1);
  cursor: none;
}
.canvas-container canvas {
  display: block;
}

/* CRT Scanlines Overlay */
.crt-scanlines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.22) 50%),
              linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.04));
  background-size: 100% 4px, 6px 100%;
  z-index: 10;
  pointer-events: none;
  opacity: 0.85;
}

/* Overlays */
.canvas-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  text-align: center;
  transition: opacity 0.4s ease;
}
.overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 2rem;
  max-width: 400px;
}
.overlay-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.overlay-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.overlay-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.btn-play-start {
  background: var(--grad-blue);
  color: #ffffff;
  border: none;
  padding: 0.8rem 2.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-play-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
}

/* Mobile Controllers */
.mobile-controller {
  display: none;
  width: 100%;
  max-width: 480px;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}
.ctrl-btn {
  flex: 1;
  height: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.ctrl-btn:active {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0.96);
}
.ctrl-btn.fire-btn {
  flex: 2;
  background: var(--grad-red);
  border: none;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}
.ctrl-btn.fire-btn:active {
  box-shadow: 0 2px 6px rgba(244, 63, 94, 0.3);
}

/* Right Column: Control & Stats Dashboard */
.control-panel {
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.scoreboard {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.score-card {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.score-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.score-val {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text-main);
  letter-spacing: -0.5px;
}
.lives-card {
  gap: 8px;
}
.lives-hearts {
  display: flex;
  gap: 0.35rem;
  font-size: 1.25rem;
  height: 24px;
}
.text-red {
  color: #f43f5e;
  filter: drop-shadow(0 0 4px rgba(244, 63, 94, 0.4));
}
.text-muted-heart {
  color: rgba(255,255,255,0.06);
}

/* Powerup Status Panel */
.powerup-status-box {
  padding: 0.85rem 1rem;
  background: rgba(168, 85, 247, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.status-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #c084fc;
  text-transform: uppercase;
}
.status-item-display {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-badge-icon {
  font-size: 1.4rem;
}
.item-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.item-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}
.duration-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--grad-purple);
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Item Guides */
.item-guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.5rem;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}
.item-guide-list::-webkit-scrollbar {
  width: 4px;
}
.item-guide-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.05);
}
.item-guide-list li {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.guide-badge {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.item-expand { background: #3b82f6; }
.item-shrink { background: #64748b; }
.item-multi { background: #a855f7; }
.item-laser { background: #ef4444; }
.item-catch { background: #eab308; }
.item-shield { background: #10b981; }
.item-slow { background: #06b6d4; }
.item-life { background: #ec4899; }

.item-guide-list li strong {
  color: var(--text-main);
}

/* Game Controls */
.game-controls {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.btn {
  padding: 0.75rem;
  border-radius: 12px;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.btn-restart {
  background: var(--grad-blue);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}
.btn-restart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}
.btn-pause {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}
.btn-pause:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}
.btn-sound {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}
.btn-sound:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}
.btn-auto {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #34d399;
}
.btn-auto:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}
.btn-auto.active-auto {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
  animation: auto-pulse 2s ease-in-out infinite;
}
.btn-auto.active-auto:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}
@keyframes auto-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35); }
  50% { box-shadow: 0 4px 25px rgba(16, 185, 129, 0.55); }
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(6, 9, 19, 0.75);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  width: 100%;
  max-width: 440px;
  padding: 2.25rem;
  border-radius: 24px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.game-over-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.2);
  color: #f43f5e;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.stage-clear-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.all-clear-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.modal-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}
.congrats-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 1rem;
}

.final-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.final-stat-item {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 1rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.final-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
}
.final-val {
  font-size: 1.3rem;
  font-weight: 900;
}
.final-val.text-blue { color: #60a5fa; }
.final-val.text-purple { color: #c084fc; }
.final-val.text-gold { color: #fcd34d; }

.btn-restart-modal, .btn-next-modal {
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-restart-modal {
  background: var(--grad-purple);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}
.btn-restart-modal:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}
.btn-next-modal {
  background: var(--grad-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-next-modal:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.all-clear-box {
  border-color: rgba(251, 191, 36, 0.2);
  box-shadow: 0 15px 50px rgba(251, 191, 36, 0.15);
}

/* Light Theme Variables Overrides */
[data-theme="light"] {
  --bg-color: #f8fafc;
  --panel-bg: rgba(255, 255, 255, 0.7);
  --panel-border: rgba(15, 23, 42, 0.06);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --shadow-card: 0 12px 40px 0 rgba(15, 23, 42, 0.08);
}
[data-theme="light"] body {
  background-color: var(--bg-color);
  color: var(--text-main);
}
[data-theme="light"] .hero-ak-title {
  background: linear-gradient(135deg, #0f172a 30%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .btn-stage {
  background: rgba(15, 23, 42, 0.01);
  border-color: rgba(15, 23, 42, 0.03);
}
[data-theme="light"] .btn-stage.unlocked {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}
[data-theme="light"] .btn-stage.completed {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}
[data-theme="light"] .canvas-container {
  background: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: inset 0 0 15px rgba(15, 23, 42, 0.04), 0 8px 30px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .score-card {
  background: rgba(15, 23, 42, 0.01);
  border-color: rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .powerup-status-box {
  background: rgba(168, 85, 247, 0.03);
  border-color: rgba(168, 85, 247, 0.1);
}
[data-theme="light"] .duration-progress {
  background: rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .btn-pause, [data-theme="light"] .btn-sound {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .btn-pause:hover, [data-theme="light"] .btn-sound:hover {
  background: rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .btn-auto {
  background: rgba(16, 185, 129, 0.04);
  border-color: rgba(16, 185, 129, 0.15);
}
[data-theme="light"] .modal-overlay {
  background: rgba(248, 250, 252, 0.7);
}
[data-theme="light"] .modal-box {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}
[data-theme="light"] .final-stat-item {
  background: rgba(15, 23, 42, 0.01);
  border-color: rgba(15, 23, 42, 0.03);
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1080px) {
  .game-layout {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .stage-panel {
    order: 3;
  }
  .canvas-panel-wrapper {
    order: 1;
  }
  .control-panel {
    order: 2;
  }
  .mobile-controller {
    display: flex;
  }
}

@media (max-width: 500px) {
  .canvas-container {
    width: 320px;
    height: auto;
    aspect-ratio: 480 / 640;
  }
  .cabinet-top-info {
    max-width: 320px;
    padding: 0.6rem 1rem;
  }
  .mobile-controller {
    max-width: 320px;
  }
  .ak-hero-section {
    padding: 1.25rem;
  }
}
