/* Cliplance Clipping Portal Stylesheet */

/* Design Tokens & Theme Variables */
:root {
  --bg-primary: #070708;
  --bg-secondary: #111113;
  --bg-tertiary: #19191c;
  --bg-glass: rgba(17, 17, 19, 0.75);
  
  --accent: #ffffff;
  --accent-muted: #a1a1aa;
  --accent-dim: rgba(255, 255, 255, 0.08);
  
  --text-main: #f4f4f5;
  --text-muted: #71717a;
  --text-inverse: #09090b;
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(255, 255, 255, 0.25);
  
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.9);
  
  --glow-subtle: 0 0 20px rgba(255, 255, 255, 0.03);
  --glow-card: 0 0 30px rgba(255, 255, 255, 0.05);
  
  /* Platform Accent Hints (subtle) */
  --platform-youtube: #ff0000;
  --platform-instagram: #e1306c;
  --platform-tiktok: #00f2fe;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-muted);
}

/* Layout Utilities */
.screen {
  display: none !important;
  width: 100%;
  min-height: 100vh;
}
.screen.active {
  display: flex !important;
}

/* Typography & Links */
a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
a:hover {
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-primary {
  background-color: var(--accent);
  color: var(--text-inverse);
}
.btn-primary:hover {
  background-color: var(--accent-muted);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--border-medium);
}
.btn-secondary:hover {
  background-color: var(--accent-dim);
  border-color: var(--accent);
}
.btn-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
}
.btn-danger:hover {
  background-color: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}
.btn-full {
  width: 100%;
}
.btn-submit {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
}

/* Inputs & Form Elements */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  width: 100%;
}
.input-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 5;
}

input[type="text"],
input[type="password"],
input[type="url"],
input[type="email"],
select {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

/* Fix CSS Specificity overlapping/collapsing with absolute icons */
.input-wrapper input[type="text"],
.input-wrapper input[type="password"],
.input-wrapper input[type="url"],
.input-wrapper input[type="email"] {
  padding-left: 42px !important;
  padding-right: 42px !important;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="url"]::placeholder,
input[type="email"]::placeholder {
  color: var(--text-muted);
}

/* Utility */
.hidden {
  display: none !important;
}
select option {
  background-color: var(--bg-secondary);
  color: var(--text-main);
}
.input-wrapper .prefix {
  position: absolute;
  left: 14px;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
  z-index: 5;
}
.input-wrapper input[id="account-username"] {
  padding-left: 32px !important;
}
.input-tip {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Password visibility button style */
.password-toggle-btn {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition-fast);
}
.password-toggle-btn:hover {
  color: var(--text-main);
}
.password-toggle-btn i {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  width: calc(100% - 48px);
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  animation: slideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  overflow: hidden;
}
.toast::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
  transform: scaleX(1);
  transform-origin: left;
  animation: shrinkBar 4s linear forwards;
}
.toast.success::after { background-color: #10b981; }
.toast.error::after { background-color: #ef4444; }
.toast.warning::after { background-color: #f59e0b; }
.toast.info::after { background-color: #3b82f6; }

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.toast.success .toast-icon { color: #10b981; }
.toast.error .toast-icon { color: #ef4444; }
.toast.warning .toast-icon { color: #f59e0b; }
.toast.info .toast-icon { color: #3b82f6; }

.toast-content {
  flex-grow: 1;
}
.toast-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.toast-message {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.toast-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}
.toast-close:hover {
  color: var(--text-main);
}

/* Animations */
@keyframes slideIn {
  to { transform: translateX(0); }
}
@keyframes shrinkBar {
  to { transform: scaleX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.05); }
  50% { box-shadow: 0 0 25px rgba(255, 255, 255, 0.12); }
}

/* ==========================================================================
   AUTHENTICATION VIEW
   ========================================================================== */
.auth-view {
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(ellipse at 50% 30%, #13131a 0%, #030304 70%);
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(145deg, rgba(25,25,30,0.95) 0%, rgba(17,17,20,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  animation: fadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
}

/* Auth form input special enhancements */
.auth-card .input-wrapper input[type="email"],
.auth-card .input-wrapper input[type="text"],
.auth-card .input-wrapper input[type="password"] {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 0.95rem;
  height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.auth-card .input-wrapper input[type="email"]:focus,
.auth-card .input-wrapper input[type="text"]:focus,
.auth-card .input-wrapper input[type="password"]:focus {
  border-color: rgba(255,255,255,0.35);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.07), 0 2px 12px rgba(0,0,0,0.4);
  outline: none;
}
.auth-card .input-icon {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
}
.auth-card .input-wrapper:focus-within .input-icon {
  color: rgba(255,255,255,0.7);
}
.auth-card .input-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.auth-card .btn-primary {
  height: 48px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 4px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(255,255,255,0.12);
  transition: all 0.2s ease;
}
.auth-card .btn-primary:hover {
  background: #e8e8e8;
  box-shadow: 0 6px 24px rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.auth-header {
  text-align: center;
  margin-bottom: 30px;
}
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}
.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.logo-subtext {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  font-weight: 600;
}
.auth-tabs {
  display: flex;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 4px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1;
  padding: 8px 12px;
  background: transparent;
  border: none;
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: all var(--transition-fast);
}
.auth-tab.active {
  background-color: var(--accent);
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
}
.cheat-code {
  font-family: monospace;
  background-color: var(--bg-tertiary);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  border: 1px solid var(--border-subtle);
}
.auth-footer-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

/* ==========================================================================
   APP SHELL LAYOUT
   ========================================================================== */
.app-shell {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* SIDEBAR */
.sidebar {
  width: 260px;
  height: 100%;
  background-color: var(--bg-secondary);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 24px 16px;
  z-index: 100;
}
.sidebar-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  padding-left: 8px;
}
.sidebar-header .logo-container {
  margin: 0;
  cursor: pointer;
}
.sidebar-header .logo-text {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
.sidebar-header .logo-icon {
  width: 24px;
  height: 24px;
}
.logo-tag {
  background-color: var(--border-medium);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  color: var(--accent-muted);
}
.logo-pulse:hover {
  animation: rotateGlow 0.8s ease-in-out;
}
@keyframes rotateGlow {
  0% { transform: rotate(0) scale(1); }
  50% { transform: rotate(180deg) scale(1.15); filter: drop-shadow(0 0 8px #fff); }
  100% { transform: rotate(360deg) scale(1); }
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}
.nav-item i {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}
.nav-item:hover {
  color: var(--text-main);
  background-color: var(--bg-tertiary);
}
.nav-item:hover i {
  transform: translateX(2px);
}
.nav-item.active {
  color: var(--text-inverse);
  background-color: var(--accent);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.12);
}

.sidebar-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.user-badge .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--border-medium);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  flex-shrink: 0;
}
.user-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.user-info .username {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-info .user-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.logout-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.logout-btn:hover {
  color: #ef4444;
  background-color: rgba(239, 68, 68, 0.1);
}

/* ==========================================================================
   ADMIN SPECIFIC APP SHELL LAYOUT STYLES
   ========================================================================== */
.text-red {
  color: #ef4444 !important;
}
.logo-icon.text-red {
  filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.4));
}
.admin-tag {
  background-color: rgba(239, 68, 68, 0.1) !important;
  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.25) !important;
}
.admin-sidebar-bg {
  background-color: #0c0c0e !important;
  border-right: 1px solid rgba(239, 68, 68, 0.15) !important;
}
.admin-indicator.text-red {
  background-color: rgba(239, 68, 68, 0.05) !important;
  border-color: rgba(239, 68, 68, 0.2) !important;
  color: #ef4444 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.05);
}
.admin-indicator.text-red i {
  color: #ef4444 !important;
}
.admin-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 6px;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.admin-link-inline:hover {
  color: #f87171;
}
.admin-link-inline i {
  width: 12px;
  height: 12px;
}

/* MAIN CONTENT CONTAINER */
.main-content {
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-primary);
  overflow-y: auto;
}

/* HEADER */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border-subtle);
  background-color: rgba(7, 7, 8, 0.4);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.view-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.view-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.admin-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}
.admin-indicator i {
  width: 14px;
  height: 14px;
}
.live-clock {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.02);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}

/* VIEW BODY */
.view-body {
  padding: 32px 40px 60px 40px;
  flex-grow: 1;
}
.tab-panel, .admin-tab-panel {
  display: none;
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.tab-panel.active, .admin-tab-panel.active {
  display: block;
}

/* ==========================================================================
   METRICS GRID
   ========================================================================== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.metric-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}
.metric-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md), var(--glow-subtle);
}
.metric-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.metric-icon-wrapper i {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.metric-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.text-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.metric-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  transition: transform var(--transition-normal);
}
.metric-card:hover .metric-glow {
  transform: scale(1.5);
}

/* SECTION CONTAINER */
.section-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
}
.section-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
}
.badge {
  background-color: var(--accent);
  color: var(--text-inverse);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}
.badge.secondary {
  background-color: var(--bg-tertiary);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

/* EMPTY STATES */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
}
.empty-icon {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.empty-state h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 320px;
  margin-bottom: 20px;
}

/* ==========================================================================
   CLIPS GRID & CARDS
   ========================================================================== */
.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.clip-card {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-normal);
  position: relative;
}
.clip-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-medium);
  background-color: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-sm);
}

.clip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.clip-meta {
  max-width: 80%;
}
.clip-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clip-project {
  font-size: 0.8rem;
  color: var(--text-muted);
  background-color: var(--bg-tertiary);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.clip-platform-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background-color: rgba(0, 0, 0, 0.3);
}
.clip-platform-badge i {
  width: 14px;
  height: 14px;
}

.clip-platform-youtube {
  color: #ff4b4b;
  border-color: rgba(255, 75, 75, 0.2);
}
.clip-platform-instagram {
  color: #f75c8d;
  border-color: rgba(247, 92, 141, 0.2);
}
.clip-platform-tiktok {
  color: #00f2fe;
  border-color: rgba(0, 242, 254, 0.2);
}

.clip-details-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed var(--border-subtle);
}
.clip-handle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.clip-handle i {
  width: 16px;
  height: 16px;
}
.clip-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  transition: all var(--transition-fast);
}
.clip-link-btn:hover {
  background-color: var(--accent);
  color: var(--text-inverse);
  transform: scale(1.05);
}

/* VIEWS UPDATE COMPONENT */
.clip-views-section {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.views-display-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.views-count-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.views-count-val {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}
.views-input-wrapper {
  display: flex;
  gap: 6px;
}
.views-edit-input {
  flex-grow: 1;
  padding: 6px 10px !important;
  font-size: 0.85rem !important;
  border-radius: 6px !important;
}
.btn-views-update {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 6px;
  background-color: var(--accent);
  color: var(--text-inverse);
}
.btn-views-update:hover {
  background-color: var(--accent-muted);
}

/* ==========================================================================
   SUBMIT CLIP VIEW & CONNECTED FORM VIEW
   ========================================================================== */
.form-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 0;
}
.glass-form-card {
  width: 100%;
  max-width: 680px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.card-header-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent);
}
.glass-form-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 580px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  line-height: 1.4;
}
.alert-box.warning {
  background-color: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}
.alert-box.warning i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   CONNECTED ACCOUNTS VIEW LAYOUT
   ========================================================================== */
.accounts-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .accounts-layout {
    grid-template-columns: 1fr;
  }
}
.linked-accounts-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  min-height: 380px;
  box-shadow: var(--shadow-sm);
}
.accounts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.account-card {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}
.account-card:hover {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: var(--border-medium);
}
.account-info-block {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}
.account-platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}
.account-platform-icon i {
  width: 20px;
  height: 20px;
}

.platform-yt {
  background-color: rgba(255, 0, 0, 0.05);
  color: var(--platform-youtube);
  border-color: rgba(255, 0, 0, 0.15);
}
.platform-insta {
  background-color: rgba(225, 48, 108, 0.05);
  color: var(--platform-instagram);
  border-color: rgba(225, 48, 108, 0.15);
}
.platform-tk {
  background-color: rgba(0, 242, 254, 0.05);
  color: var(--platform-tiktok);
  border-color: rgba(0, 242, 254, 0.15);
}

.account-texts {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.account-handle {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-platform-name {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: capitalize;
}
.unlink-btn {
  background-color: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}
.unlink-btn:hover {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
}

/* ==========================================================================
   LEADERBOARD VIEW & PODIUM
   ========================================================================== */
.podium-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  padding-top: 40px;
  min-height: 280px;
}
.podium-place {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 220px;
  position: relative;
}

/* Unique Height for steps */
.place-1 { order: 2; }
.place-2 { order: 1; }
.place-3 { order: 3; }

.podium-avatar-wrapper {
  position: relative;
  margin-bottom: 12px;
}
.podium-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  border: 2px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-main);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.podium-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
  z-index: 3;
}
.place-1 .podium-avatar {
  width: 88px;
  height: 88px;
  border-color: #ffd700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}
.place-1 .podium-badge { background-color: #ffd700; }
.place-1 .crown {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
  font-size: 1.8rem;
  z-index: 10;
  animation: crownHover 2s ease-in-out infinite alternate;
}
@keyframes crownHover {
  from { transform: translateX(-50%) rotate(-10deg) translateY(0); }
  to { transform: translateX(-50%) rotate(-5deg) translateY(-4px); }
}

.place-2 .podium-avatar { border-color: #c0c0c0; box-shadow: 0 0 20px rgba(192, 192, 192, 0.1); }
.place-2 .podium-badge { background-color: #c0c0c0; }

.place-3 .podium-avatar { border-color: #cd7f32; box-shadow: 0 0 15px rgba(205, 127, 50, 0.08); }
.place-3 .podium-badge { background-color: #cd7f32; }

.podium-step {
  width: 100%;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(17, 17, 19, 0.4) 100%);
  border: 1px solid var(--border-subtle);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}
.podium-place:hover .podium-step {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg), var(--glow-subtle);
}
.place-1 .podium-step { height: 160px; }
.place-2 .podium-step { height: 120px; }
.place-3 .podium-step { height: 90px; }

.podium-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 4px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.podium-views {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
}
.place-1 .podium-views { font-size: 1.4rem; }
.podium-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* LEADERBOARD TABLE */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}
.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.leaderboard-table th {
  padding: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-subtle);
}
.leaderboard-table td {
  padding: 16px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color var(--transition-fast);
}
.leaderboard-table tr {
  transition: background-color var(--transition-fast);
}
.leaderboard-table tbody tr:hover td {
  background-color: rgba(255, 255, 255, 0.015);
}
.text-right {
  text-align: right;
}
.rank-number {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.rank-1 { color: #ffd700; background-color: rgba(255, 215, 0, 0.1); }
.rank-2 { color: #c0c0c0; background-color: rgba(192, 192, 192, 0.1); }
.rank-3 { color: #cd7f32; background-color: rgba(205, 127, 50, 0.1); }

.clipper-profile-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.clipper-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}
.table-views-val {
  font-weight: 700;
  color: var(--accent);
}

/* ==========================================================================
   ADMIN PANEL VIEW & OVERVIEW WIDGETS
   ========================================================================== */
.admin-metrics {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.admin-card {
  border-color: rgba(255, 255, 255, 0.08);
}
.admin-icon {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.15);
}
.admin-icon i {
  color: var(--accent);
}

/* ==========================================================================
   ADMIN CLIPPER DIRECTORY SPLIT DETAILED LAYOUT
   ========================================================================== */
.audits-split-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .audits-split-layout {
    grid-template-columns: 1fr;
  }
}
.audits-list-pane {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 650px;
  overflow-y: auto;
}
.pane-title {
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.audits-clipper-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.clipper-audit-card {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-subtle);
  padding: 14px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}
.clipper-audit-card:hover {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: var(--border-medium);
}
.clipper-audit-card.active {
  background-color: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.4);
}
.clipper-audit-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.clipper-audit-card-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}
.clipper-audit-card-stats {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.clipper-audit-card-views {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-muted);
}
.clipper-audit-card.active .clipper-audit-card-views {
  color: #ef4444;
}

/* Detail Inspect Pane */
.audits-detail-pane {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px;
  min-height: 480px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.inspector-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  height: 100%;
  flex-grow: 1;
}
.inspector-placeholder-icon {
  width: 56px;
  height: 56px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.inspector-placeholder h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.inspector-placeholder p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.4;
}

.inspector-content {
  animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.inspector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
}
@media (max-width: 680px) {
  .inspector-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.inspector-user-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}
.inspector-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}
.inspector-name-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.inspector-stats-row {
  display: flex;
  gap: 16px;
}
.inspector-stat {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.inspector-stat .stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}
.inspector-stat .stat-val {
  font-weight: 800;
  font-size: 1.2rem;
}

.inspector-section {
  display: flex;
  flex-direction: column;
}
.inspector-sec-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.inspector-accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.inspector-account-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.inspector-account-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-main);
}
.inspector-account-lbl i {
  width: 16px;
  height: 16px;
}
.inspector-account-link {
  color: var(--text-muted);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
}
.inspector-account-link:hover {
  color: var(--accent);
}

.inspector-clips-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.inspector-clips-table th {
  padding: 10px 12px;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-align: left;
}
.inspector-clips-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
}
.inspector-clip-title {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}
.inspector-clip-proj {
  font-size: 0.75rem;
  color: var(--text-muted);
  background-color: var(--bg-tertiary);
  padding: 1px 6px;
  border-radius: 3px;
  display: inline-block;
}
.inspector-clips-table tbody tr:hover td {
  background-color: rgba(255, 255, 255, 0.015);
}
.text-center {
  text-align: center;
}
.inspector-clip-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  transition: all var(--transition-fast);
}
.inspector-clip-link-btn:hover {
  background-color: var(--accent);
  color: var(--text-inverse);
}
.inspector-clip-link-btn i {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   MODAL OVERLAY (ADMIN PASSWORD MODAL)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  padding: 32px;
  box-shadow: var(--shadow-lg), var(--glow-card);
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalScaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-header {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-title-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}
.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.modal-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.modal-footer-btns {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  margin-top: 8px;
}

/* SYSTEM FOOTER */
.system-footer {
  text-align: center;
  padding: 40px 24px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-admin-trigger {
  font-size: 0.75rem;
}
.footer-admin-trigger .cheat-code {
  cursor: pointer;
  transition: all var(--transition-fast);
}
.footer-admin-trigger .cheat-code:hover {
  background-color: var(--accent);
  color: var(--text-inverse);
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================================================== */
@media (max-width: 768px) {
  .app-shell {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 20px;
  }
  .sidebar-header {
    margin-bottom: 16px;
  }
  .sidebar-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }
  .nav-item {
    padding: 8px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 6px;
  }
  .nav-item i {
    width: 16px;
    height: 16px;
  }
  .sidebar-footer {
    display: none; /* Hide standard avatar block on mobile sidebar */
  }
  .app-header {
    padding: 16px 20px;
  }
  .view-body {
    padding: 20px 20px 60px 20px;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .podium-container {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    gap: 24px;
  }
  .podium-place {
    width: 100%;
  }
  .place-1 { order: 1; }
  .place-2 { order: 2; }
  .place-3 { order: 3; }
  .place-1 .podium-step,
  .place-2 .podium-step,
  .place-3 .podium-step {
    height: auto;
    padding: 12px;
    border-radius: 8px;
  }
}
