/**
 * StreamXHub — Advanced Features
 * Mini player, toasts, theater mode, progress, chat enhancements,
 * search suggestions, keyboard shortcuts, skeleton, scroll-reveal
 * Version 2.0
 */

/* ============================================================
   MINI PLAYER
   ============================================================ */
.mini-player {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: #080810;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(255, 0, 85, 0.3);
  z-index: 9999;
  transform: translateX(360px);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mini-player.active { transform: translateX(0); }

.mini-player video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.mini-player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: linear-gradient(160deg, #1a0a20 0%, #0f0f18 100%);
}

.mini-player-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 8px;
}

.mini-close, .mini-expand {
  background: rgba(255, 0, 85, 0.15);
  border: 1px solid rgba(255, 0, 85, 0.3);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.mini-close:hover, .mini-expand:hover {
  background: #ff0055;
  border-color: #ff0055;
  transform: scale(1.1);
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-notification {
  position: fixed;
  top: 80px;
  right: 24px;
  background: rgba(15, 8, 24, 0.97);
  color: #fff;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transform: translateX(110px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 0, 85, 0.3);
  border-left: 3px solid #ff0055;
  max-width: 280px;
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-notification.success { border-left-color: #00e887; }
.toast-notification.info    { border-left-color: #00cfff; }
.toast-notification.warning { border-left-color: #ffc947; }

/* ============================================================
   THEATER MODE
   ============================================================ */
body.theater-mode { background: #000 !important; }

body.theater-mode .player-main {
  max-width: 100%;
  margin: 0;
  padding: 20px;
}

body.theater-mode .video-container-main {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(255, 0, 85, 0.2),
              0 0 0 1px rgba(255, 0, 85, 0.15);
}

body.theater-mode .player-layout { display: block; }
body.theater-mode .player-sidebar { display: none; }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-container {
  position: relative;
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: height 0.2s ease;
}

.progress-container:hover { height: 8px; }

.progress-bar,
.progress-filled {
  position: absolute;
  inset-block: 0;
  left: 0;
  background: linear-gradient(90deg, #ff0055, #ff4488);
  border-radius: 999px;
  transition: width 0.1s linear;
}

.progress-handle {
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.progress-container:hover .progress-handle { opacity: 1; }

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  font-weight: 600;
}

/* ============================================================
   SKIP INTRO BUTTON
   ============================================================ */
.skip-intro-btn {
  position: absolute;
  bottom: 76px;
  right: 20px;
  background: rgba(15, 8, 24, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 0, 85, 0.5);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  z-index: 100;
  transition: all 0.25s ease;
  animation: slideUp 0.3s ease both;
  backdrop-filter: blur(8px);
}

.skip-intro-btn:hover {
  background: #ff0055;
  border-color: #ff0055;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.5);
}

/* ============================================================
   VOLUME CONTROL
   ============================================================ */
.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-slider {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* ============================================================
   SEARCH SUGGESTIONS
   ============================================================ */
.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(18, 12, 28, 0.98);
  border: 1px solid rgba(255, 0, 85, 0.3);
  border-radius: 12px;
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 0, 85, 0.1);
  backdrop-filter: blur(16px);
}

.suggestion-item {
  padding: 11px 16px;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.18s ease;
  border-bottom: 1px solid rgba(255, 0, 85, 0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}

.suggestion-item:last-child { border-bottom: none; }

.suggestion-item::before {
  content: '🔍';
  font-size: 11px;
  opacity: 0.4;
  flex-shrink: 0;
}

.suggestion-item:hover {
  background: linear-gradient(90deg, rgba(255,0,85,0.15), rgba(255,68,136,0.07));
  color: #fff;
  padding-left: 20px;
}

/* ============================================================
   SEARCH FILTERS
   ============================================================ */
.search-filters {
  display: flex;
  gap: 7px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.search-filter-btn {
  background: rgba(255, 0, 85, 0.08);
  border: 1px solid rgba(255, 0, 85, 0.22);
  color: rgba(255,255,255,0.55);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-filter-btn:hover {
  background: linear-gradient(135deg, #ff0055, #ff4488);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}

.search-filter-btn.active {
  background: linear-gradient(135deg, #ff0055, #ff4488);
  border-color: transparent;
  color: #fff;
}

/* ============================================================
   CHAT ENHANCEMENTS (emoji, reactions, tips)
   ============================================================ */
.emoji-picker {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: rgba(18, 12, 28, 0.98);
  border: 1px solid rgba(255, 0, 85, 0.3);
  border-radius: 12px;
  padding: 10px;
  display: none;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  z-index: 100;
  box-shadow: 0 12px 36px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}

.emoji-picker.show { display: grid; }

.emoji-item {
  padding: 7px;
  cursor: pointer;
  text-align: center;
  border-radius: 6px;
  font-size: 18px;
  transition: background 0.15s ease, transform 0.15s ease;
  line-height: 1;
}

.emoji-item:hover {
  background: rgba(255, 0, 85, 0.2);
  transform: scale(1.25);
}

.emoji-btn {
  background: rgba(255, 0, 85, 0.12);
  border: 1px solid rgba(255, 0, 85, 0.25);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emoji-btn:hover {
  background: #ff0055;
  border-color: #ff0055;
  transform: scale(1.1);
}

.chat-reactions {
  display: flex;
  gap: 5px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.reaction {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.reaction:hover, .reaction.active {
  background: rgba(255, 0, 85, 0.18);
  border-color: rgba(255, 0, 85, 0.4);
  transform: scale(1.1);
}

.reaction .count {
  opacity: 0.65;
  font-size: 10px;
  font-weight: 700;
}

.user-level {
  display: inline-block;
  background: linear-gradient(135deg, #ff0055, #ff4488);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tip-btn {
  background: linear-gradient(135deg, #ffc947 0%, #ff9500 100%);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 8px;
}

.tip-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.45);
}

.tip-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.25s ease both;
}

.tip-modal-content {
  background: linear-gradient(160deg, #1a0a20 0%, #080810 100%);
  border: 1px solid rgba(255, 0, 85, 0.3);
  border-radius: 18px;
  padding: 36px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65);
}

.tip-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.tip-amounts button {
  background: linear-gradient(135deg, #ffc947 0%, #ff9500 100%);
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tip-amounts button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 165, 0, 0.4);
}

/* ============================================================
   CONTINUE WATCHING
   ============================================================ */
.continue-watching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.cw-card {
  background: linear-gradient(145deg, #1a1a2c 0%, #0f0f1e 100%);
  border: 1px solid rgba(255, 0, 85, 0.12);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.cw-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 85, 0.4);
  box-shadow: 0 12px 32px rgba(255, 0, 85, 0.2);
}

.cw-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #1a1a2c, #0f0f1e);
  overflow: hidden;
}

.cw-thumb img,
.cw-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cw-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff0055, #ff4488);
  border-radius: 0 999px 999px 0;
}

.cw-time {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.cw-info { padding: 11px 12px; }

.cw-title {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cw-percent { color: #ff0055; font-size: 11px; font-weight: 700; }

/* Resume prompt */
.resume-prompt {
  position: absolute;
  bottom: 76px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 0, 85, 0.94);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
  backdrop-filter: blur(8px);
  animation: slideUp 0.3s ease both;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(255, 0, 85, 0.45);
}

.resume-prompt button {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.resume-prompt button:hover {
  background: #fff;
  color: #ff0055;
}

/* ============================================================
   OVERLAY BUTTONS
   ============================================================ */
.overlay-btn {
  background: rgba(255, 0, 85, 0.14);
  border: 1px solid rgba(255, 0, 85, 0.28);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.overlay-btn:hover {
  background: #ff0055;
  border-color: #ff0055;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 0, 85, 0.45);
}

.video-overlay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  background: rgba(255, 0, 85, 0.04);
  border: 1px solid rgba(255, 0, 85, 0.1);
  border-radius: 10px;
}

/* ============================================================
   PARTICLE CANVAS
   ============================================================ */
.particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.5;
}

/* ============================================================
   KEYBOARD SHORTCUTS HINT
   ============================================================ */
.shortcuts-hint {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(14, 10, 22, 0.96);
  border: 1px solid rgba(255, 0, 85, 0.3);
  border-radius: 14px;
  padding: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  z-index: 1000;
  max-width: 260px;
  backdrop-filter: blur(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.shortcuts-hint h4 {
  color: #ff0055;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shortcut-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 0, 85, 0.08);
  font-size: 12px;
}

.shortcut-row:last-child { border-bottom: none; }

.shortcut-key {
  background: rgba(255, 0, 85, 0.15);
  color: rgba(255,255,255,0.85);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'SF Mono', 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255, 0, 85, 0.25);
}

.shortcuts-hint-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, #ff0055, #ff4488);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.4);
}

.shortcuts-hint-toggle:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(255, 0, 85, 0.6);
}

.shortcuts-hint.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

/* ============================================================
   3D PARALLAX / TILT
   ============================================================ */
.perspective-container { perspective: 1000px; }

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}

.tilt-card:hover { transform: rotateX(4deg) rotateY(4deg) scale(1.02); }

/* ============================================================
   SKELETON LOADER
   ============================================================ */
.skeleton-loader {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 100%
  );
  background-size: 200% 100%;
  animation: skeletonSlide 1.6s ease-in-out infinite;
  border-radius: 8px;
}

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

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease,
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   QUALITY INDICATOR
   ============================================================ */
.quality-indicator {
  position: fixed;
  top: 80px;
  left: 24px;
  background: rgba(14, 10, 22, 0.96);
  border: 1px solid rgba(0, 207, 255, 0.35);
  border-radius: 10px;
  padding: 12px 16px;
  z-index: 999;
  backdrop-filter: blur(12px);
  transform: translateX(-160%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.quality-indicator.show { transform: translateX(0); }

.quality-indicator-bar {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}

.quality-indicator-fill {
  height: 100%;
  background: linear-gradient(90deg, #00e887, #00cfff);
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* ============================================================
   BADGE VARIANTS
   ============================================================ */
.badge-hot {
  background: linear-gradient(135deg, #ff0055, #ff4400);
  animation: pulseBadge 1.8s ease-in-out infinite;
}

.badge-new       { background: linear-gradient(135deg, #00e887, #00cc66); }
.badge-exclusive { background: linear-gradient(135deg, #ffc947, #ff9500); }

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7); }
  50%       { box-shadow: 0 0 0 8px rgba(255, 0, 85, 0); }
}

/* ============================================================
   COMPACT MODE
   ============================================================ */
.compact-mode .video-card { margin-bottom: 6px; }
.compact-mode .video-info { padding: 8px 10px; }
.compact-mode .video-title { font-size: 12px; -webkit-line-clamp: 1; }

/* ============================================================
   GLOW CARD
   ============================================================ */
.glow-card { position: relative; overflow: hidden; }

.glow-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 0, 85, 0.25),
    transparent 35%
  );
  animation: rotateConic 5s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-card:hover::before { opacity: 1; }

@keyframes rotateConic { 100% { transform: rotate(360deg); } }

/* ============================================================
   SMOOTH SCROLL & GLOBAL SCROLLBAR
   ============================================================ */
html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #080810; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff0055, #ff4488);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #ff3377, #ff66aa); }

/* ============================================================
   ANIMATION KEYFRAMES
   ============================================================ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 0, 85, 0.2);
  border-top-color: #ff0055;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .mini-player  { width: 240px; bottom: 12px; right: 12px; }
  .mini-player video { height: 135px; }
  .shortcuts-hint { display: none; }
  .video-overlay-actions { justify-content: center; }
  .search-filters { justify-content: center; }
  .continue-watching-grid { grid-template-columns: repeat(2, 1fr); }
  .toast-notification { right: 12px; max-width: 240px; }
}

@media (max-width: 480px) {
  .mini-player { width: 200px; }
  .mini-player video { height: 112px; }
  .continue-watching-grid { grid-template-columns: 1fr; }
  .resume-prompt { flex-direction: column; white-space: normal; text-align: center; }
  .emoji-picker { grid-template-columns: repeat(6, 1fr); }
}