/* RESET & DESIGNER CLEAN UI SYSTEM - JETBRAINS MONO */
:root {
  --bg-page: #e2e8f0;
  --bg-card: transparent;
  --pink-primary: #ff007f;
  --pink-subtle: #fff0f6;
  --yellow-primary: #ffcc00;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-color: #cbd5e1;
  --border-light: #e2e8f0;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-sm: 6px;
  --font-main: 'JetBrains Mono', monospace;
  --shadow-btn: 0 2px 4px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-main);
}

body, html {
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
}

/* APP CONTAINER */
.app-container {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-page);
  padding: 8px;
  position: relative;
}

/* BETI TOP-RIGHT FIXED MENU */
.beti-top-menu {
  position: fixed !important;
  top: 12px !important;
  right: 14px !important;
  z-index: 99999 !important;
}

.beti-menu-btn {
  border: 2px solid var(--pink-primary);
  background: #ffffff;
  color: var(--pink-primary);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255, 0, 127, 0.3);
}

.beti-menu-dropdown {
  position: absolute;
  top: 44px;
  right: 0;
  width: 280px;
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100000;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-color);
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.btn-menu-action {
  width: 100%;
  justify-content: center;
}

.btn-danger {
  background: #ef4444 !important;
  color: #ffffff !important;
}

.kick-players-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 140px;
  overflow-y: auto;
}

.kick-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-size: 0.75rem;
}

.btn-kick-single {
  background: #ef4444;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
}

/* ORIENTATION OVERLAY */
.orientation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.orientation-overlay.hidden {
  display: none !important;
}

.orientation-content {
  max-width: 360px;
}

.phone-rotate-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  animation: rotatePhone 2s infinite ease-in-out;
}

@keyframes rotatePhone {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(90deg); }
}

.orientation-content h2 {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 6px;
}

.orientation-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media screen and (orientation: portrait) {
  .orientation-overlay {
    display: flex !important;
  }
}

/* FLAT CONTAINER */
.flat-container {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 10px 14px;
  width: 100%;
  max-width: 840px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SCREENS */
.screen {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.screen.active {
  display: flex !important;
}

/* TYPOGRAPHY */
.logo-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-align: center;
}

.accent-pink {
  color: var(--pink-primary);
}

.subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 10px;
  margin-top: 4px;
}

.badge-tag {
  display: inline-block;
  background: var(--pink-subtle);
  color: var(--pink-primary);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  text-align: center;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  margin-top: 8px;
}

/* BUTTONS */
.btn {
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-sm {
  height: 34px;
  padding: 0 12px;
  font-size: 0.75rem;
}

.btn-primary {
  background: var(--pink-primary);
  color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
  background: #e60073;
}

.btn-yellow {
  background: var(--yellow-primary);
  color: #0f172a;
}

.btn-yellow:hover:not(:disabled) {
  background: #f5c400;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

/* WORST PHOTO 3-SECOND FULL-SCREEN REVEAL MODAL */
.worst-photo-modal-card {
  max-width: 400px;
  width: 92%;
  padding: 20px;
  border: 3px solid var(--pink-primary);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.worst-photo-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
}

.worst-photo-frame {
  width: 220px;
  height: 220px;
  border-radius: var(--radius-card);
  border: 3px solid var(--pink-primary);
  overflow: hidden;
  margin: 6px 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 0, 127, 0.3);
}

.worst-photo-enlarged {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worst-photo-penalty-text {
  font-size: 1rem;
  font-weight: 800;
  color: #ef4444;
  text-align: center;
}

.worst-photo-timer-container {
  width: 100%;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.worst-photo-timer-bar {
  height: 100%;
  width: 100%;
  background: var(--pink-primary);
  border-radius: 3px;
}

/* AVATAR SETUP BOX & PREVIEW THUMBNAIL */
.avatar-setup-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.avatar-preview-box {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-card);
  border: 2px solid var(--border-color);
  overflow: hidden;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  font-size: 2.2rem;
}

.checkbox-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.validation-hint {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink-primary);
  text-align: center;
  margin: 2px 0 6px 0;
}

/* PROMINENT PERSONAL ANSWER RESULT BANNER */
.personal-result-banner {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-btn);
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.banner-correct {
  background: #10b981 !important;
  color: #ffffff !important;
}

.banner-wrong {
  background: #ef4444 !important;
  color: #ffffff !important;
}

.banner-blocked {
  background: #8b5cf6 !important;
  color: #ffffff !important;
}

.banner-admin {
  background: var(--yellow-primary) !important;
  color: #0f172a !important;
}

/* ENLARGED CAMERA MODAL */
.camera-modal-card {
  max-width: 380px;
  width: 92%;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.modal-header h3 {
  font-size: 0.95rem;
  font-weight: 800;
}

.btn-icon-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
}

.camera-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.enlarged-square-box {
  width: 220px;
  height: 220px;
  border-radius: var(--radius-card);
  border: 3px solid var(--pink-primary);
  overflow: hidden;
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-webcam-stream {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shutter-control-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.shutter-circle-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid var(--pink-primary);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 4px 12px rgba(255, 0, 127, 0.3);
}

.shutter-circle-btn:active {
  transform: scale(0.9);
  background: var(--pink-subtle);
}

.shutter-inner-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink-primary);
  transition: transform 0.15s ease;
}

.shutter-circle-btn:active .shutter-inner-circle {
  transform: scale(0.85);
}

.shutter-hint {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* LOGIN FORM */
.login-card {
  text-align: center;
  max-width: 440px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.clean-input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border-color);
  background: #ffffff;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-main);
  outline: none;
  text-align: center;
}

.clean-input:focus {
  border-color: var(--pink-primary);
}

/* LOBBY */
.lobby-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 720px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 4px;
}

.card-header h2 {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.user-badge {
  background: var(--pink-subtle);
  color: var(--pink-primary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
}

.player-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 140px;
  overflow-y: auto;
}

.player-chip {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.player-avatar-thumb {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.player-chip.admin-chip {
  background: var(--pink-subtle);
  border-color: rgba(255, 0, 127, 0.3);
  color: var(--pink-primary);
}

.admin-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}

.clean-select {
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-btn);
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-family: var(--font-main);
  font-weight: 600;
  outline: none;
}

.waiting-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--pink-primary);
  border-radius: 50%;
  animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

/* GAMEPLAY SCREEN */
#screen-game {
  width: 100%;
}

.game-layout {
  width: 100%;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.q-progress-badge {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
  white-space: nowrap;
}

.timer-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
}

.timer-bar-container {
  flex: 1;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
}

.timer-bar {
  height: 100%;
  width: 100%;
  background: var(--pink-primary);
  border-radius: 3px;
  transition: width 1s linear;
}

.timer-text {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--pink-primary);
  min-width: 30px;
}

.beti-status-badge {
  background: var(--pink-subtle);
  color: var(--pink-primary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.question-container {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 10px 16px;
  text-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 4px 0;
}

.option-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-btn);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: var(--text-primary);
  text-align: left;
  min-height: 44px;
}

.option-card:hover:not(:disabled) {
  border-color: var(--pink-primary);
}

.option-card.selected {
  border-color: var(--pink-primary) !important;
  background: var(--pink-subtle) !important;
}

.option-card:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f8fafc;
}

.opt-letter {
  background: #f1f5f9;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 0.8rem;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-card.selected .opt-letter {
  background: var(--pink-primary);
  color: #ffffff;
}

.opt-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

.game-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}

.jokers-bar {
  display: flex;
  gap: 8px;
}

.joker-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-btn);
  padding: 4px 10px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.15s ease;
}

.joker-btn:hover:not(:disabled) {
  border-color: var(--pink-primary);
  background: var(--pink-subtle);
}

.joker-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.joker-count {
  background: var(--pink-primary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
}

.admin-controls {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* RESULTS SCREEN */
.results-card {
  width: 100%;
  max-width: 820px;
}

.beti-reveal-box {
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 700;
}

.results-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.players-answers-list, .leaderboard-ranking-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 200px;
  overflow-y: auto;
}

.res-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 0.8rem;
}

.res-row.my-row {
  border: 2px solid var(--pink-primary) !important;
}

.res-row.correct {
  background: #d1fae5 !important;
  border-color: #10b981 !important;
  color: #065f46 !important;
}

.res-row.wrong {
  background: #fee2e2 !important;
  border-color: #ef4444 !important;
  color: #991b1b !important;
}

.res-name { font-weight: 600; display: flex; align-items: center; gap: 6px; }
.res-pts { font-weight: 800; }

.results-footer {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

/* SPECIAL STAGE: PORTRAIT VOTE TOP 3 GRID */
.portrait-vote-card {
  text-align: center;
}

.vote-timer-badge {
  background: var(--yellow-primary);
  color: #0f172a;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}

.top3-voting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0;
}

.top3-card {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  cursor: pointer;
}

.top3-card:hover {
  border-color: var(--pink-primary);
  transform: translateY(-2px);
}

.top3-card.selected-vote {
  border-color: var(--pink-primary) !important;
  background: var(--pink-subtle) !important;
}

.top3-photo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.top3-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.top3-score {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--pink-primary);
}

.btn-vote-worst {
  width: 100%;
  font-size: 0.7rem;
  height: 32px;
}

.retake-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 2px dashed var(--pink-primary);
}

/* PODIUM */
.game-over-card {
  text-align: center;
  max-width: 720px;
}

.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  margin: 12px 0;
  height: 110px;
}

.podium-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.podium-avatar {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.podium-name {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.podium-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.podium-step.p1 .podium-bar { height: 70px; background: var(--yellow-primary); color: #000; }
.podium-step.p2 .podium-bar { height: 45px; background: #cbd5e1; color: #000; }
.podium-step.p3 .podium-bar { height: 30px; background: #e2e8f0; color: #475569; }

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 110px;
  overflow-y: auto;
}

/* POPUPS */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.5);
  z-index: 9000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  text-align: center;
  max-width: 340px;
}

.popup-emoji, .penis-graphic {
  font-size: 2.6rem;
  margin-bottom: 4px;
}

.victim-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0;
  max-height: 140px;
  overflow-y: auto;
}

.victim-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
}

.victim-btn:hover {
  background: var(--pink-subtle);
  border-color: var(--pink-primary);
  color: var(--pink-primary);
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 640px) {
  .results-content-split {
    grid-template-columns: 1fr;
  }
}

