/* ============================================
   Rate Goals - Core Component Styles

   Note: This file works together with:
   - variables.css (CSS custom properties)
   - animations.css (@keyframes definitions)
   - bulma-overrides.css (Bulma framework overrides)
   - game-container.css (game view layout)
   - responsive.css (media queries)
   ============================================ */

/* ===========================================
   Filter Bar Styles
   =========================================== */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.filter-dropdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.filter-label .icon {
  font-size: 0.65rem;
}

.filter-dropdown .select select {
  min-width: 120px;
  font-size: 0.85rem;
  padding-right: 2rem;
}

.filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 12px;
  background-color: var(--hover-bg);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.filter-toggle:hover {
  background-color: var(--primary-color);
  color: white;
}

.filter-toggle:hover .filter-toggle__label {
  color: white;
}

.filter-toggle input[type='checkbox'] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.filter-toggle__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color);
  white-space: nowrap;
}

.clear-filters-btn {
  margin-left: auto;
}

/* ===========================================
   Pagination Controls
   =========================================== */

.pagination-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
  gap: 12px;
  background-color: var(--bg-secondary);
}

.pagination-info {
  color: var(--text-secondary);
  font-size: 0.875rem;
  white-space: nowrap;
}

.page-size-select {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.page-size-select .select select {
  min-width: 70px;
}

.pagination-controls .pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.pagination-controls .pagination-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.pagination-controls .pagination-link,
.pagination-controls .pagination-previous,
.pagination-controls .pagination-next {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--card-bg);
  color: var(--text-color);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-controls .pagination-link:hover,
.pagination-controls .pagination-previous:hover:not(:disabled),
.pagination-controls .pagination-next:hover:not(:disabled) {
  background-color: var(--hover-bg);
  border-color: var(--primary-color);
}

.pagination-controls .pagination-link.is-current {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.pagination-controls .pagination-previous:disabled,
.pagination-controls .pagination-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-controls .pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  color: var(--text-secondary);
}

/* ===========================================
   Clip Verify / Submit Page
   =========================================== */

.clip-verify-container .section {
  padding: 1rem;
}

.clip-verify-container .container {
  max-width: 1400px;
}

.clip-verify-container .columns.is-tablet {
  display: flex;
  flex-wrap: wrap;
}

/* ===========================================
   Table Header Fixed
   =========================================== */

.table-header-fixed {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--bg-secondary);
  padding: 15px 20px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
}

.table-container {
  overflow-x: auto;
  margin-bottom: 0;
}

/* ===========================================
   Basic Table Styling
   =========================================== */

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  border: 1px solid var(--table-border);
  color: var(--text-color);
}

th {
  background-color: var(--table-header);
  color: var(--table-text);
  font-weight: 600;
  text-align: left;
  padding: 0.75rem;
  border-bottom: 2px solid var(--table-border);
}

td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--table-border);
  vertical-align: middle;
}

tr:nth-child(odd) {
  background-color: var(--table-odd);
}

tr:nth-child(even) {
  background-color: var(--table-even);
}

tbody tr:hover {
  background-color: var(--table-hover);
}

/* ===========================================
   Rank & Medal Badges
   =========================================== */

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.08);
  color: var(--text-color);
  font-weight: bold;
}

.rank-badge.is-first {
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  color: #1f2937;
}

.medal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.85rem;
}

.medal-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.medal-silver {
  background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 100%);
  color: #333;
  box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
}

.medal-bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(205, 127, 50, 0.4);
}

/* ===========================================
   Player Links
   =========================================== */

.player-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.player-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.rating-cell {
  color: var(--primary-color);
}

/* ===========================================
   Site Footer
   =========================================== */

.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  margin-top: 3rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(50, 115, 220, 0.03) 100%
  );
}

.footer-credit {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.footer-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
}

.footer-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-link:hover::after {
  width: 100%;
}

/* ===========================================
   Verification Page
   =========================================== */

.verify-section .container {
  max-width: 640px;
}

.verify-card {
  margin: 1rem auto 0;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.recaptcha-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.verify-title {
  margin-bottom: 0.35rem;
}

.verify-subtitle {
  margin-top: 0;
}

/* ===========================================
   Vote Counter & Streak
   =========================================== */

.navbar-end--flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vote-counter {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(14, 165, 165, 0.12);
  border: 1px solid rgba(14, 165, 165, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.vote-counter:hover {
  transform: translateY(-1px);
  background: rgba(14, 165, 165, 0.18);
}

.vote-counter__text {
  white-space: nowrap;
}

.streak-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.2);
  font-size: 0.75rem;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

/* ===========================================
   Mobile Game View Styles
   =========================================== */

.mobile-game-wrapper {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  padding-bottom: 1rem;
  min-height: auto;
  height: auto;
  overflow: visible;
}

.mobile-game-wrapper.has-winner {
  padding-bottom: 5rem;
}

.mobile-game-header {
  text-align: center;
  padding: 0.35rem 0.25rem 0.1rem;
  margin-bottom: 1rem;
}

.mobile-game-header__title {
  color: var(--text-color);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

.mobile-game-header__subtitle {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0.15rem 0 0;
}

.mobile-game-header__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.mobile-game-header__votes {
  color: #0ea5a5;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Mobile Goal Cards */
.mobile-goal-card {
  overflow: hidden;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--card-accent);
  padding: 0.9rem 0.9rem 1rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-goal-card.is-player-one {
  background: linear-gradient(
      180deg,
      rgba(14, 165, 165, 0.12) 0%,
      rgba(15, 23, 42, 0) 45%
    ),
    var(--card-bg);
  border-color: rgba(14, 165, 165, 0.25);
}

.mobile-goal-card.is-player-two {
  background: linear-gradient(
      180deg,
      rgba(249, 115, 22, 0.12) 0%,
      rgba(15, 23, 42, 0) 45%
    ),
    var(--card-bg);
  border-color: rgba(249, 115, 22, 0.25);
}

.mobile-goal-card__header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.mobile-goal-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--card-accent) 20%, var(--card-bg));
  color: var(--text-color);
  border: 1px solid color-mix(in srgb, var(--card-accent) 40%, transparent);
  margin-bottom: 0.35rem;
}

.mobile-goal-card__title {
  color: var(--text-color);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.mobile-goal-card__subtitle {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0.2rem 0 0;
}

.mobile-goal-card__video {
  margin: 0.6rem 0 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
}

.mobile-goal-card__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--hover-bg);
  border-radius: 10px;
  margin-bottom: 0.35rem;
}

.mobile-goal-card__rating-label {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.mobile-goal-card__rating-value {
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.05rem;
}

.mobile-vote-btn {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.92)
  );
  color: var(--text-color);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}

.mobile-vote-btn:disabled {
  cursor: not-allowed;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: none;
  opacity: 0.6;
}

.mobile-vote-btn.player-one {
  background: linear-gradient(135deg, #0ea5a5, #22c55e);
  box-shadow: 0 4px 15px rgba(14, 165, 165, 0.5);
}

.mobile-vote-btn.player-two {
  background: linear-gradient(135deg, #22c55e, #0ea5a5);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.5);
}

.mobile-vote-btn:active:not(:disabled) {
  transform: scale(0.97);
  opacity: 0.9;
}

.mobile-vote-btn__icon {
  font-size: 1.1rem;
}

.mobile-vote-btn__text {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-goal-card button:active {
  transform: scale(0.98);
}

/* Mobile VS Divider */
.mobile-vs-divider {
  text-align: center;
  margin: -0.2rem 0 0.2rem;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-vs-pill {
  background: var(--card-bg);
  color: var(--text-color);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
}

.mobile-vs-divider__line {
  flex: 1;
  height: 1px;
}

.mobile-vs-divider__line--left {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
}

.mobile-vs-divider__line--right {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}

.mobile-vs-divider__badge {
  background: linear-gradient(135deg, #0ea5a5, #22c55e);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  margin: 0 1rem;
  box-shadow: 0 4px 15px rgba(14, 165, 165, 0.3);
}

.mobile-vs-divider__text {
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* Mobile Next Button */
.mobile-next-btn {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 1.1rem;
  background: linear-gradient(135deg, #0ea5a5 0%, #22c55e 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(14, 165, 165, 0.5);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-next-btn:active {
  transform: scale(0.98);
}

.mobile-next-btn__icon {
  font-size: 1.3rem;
}

.next-matchup-btn:active {
  transform: scale(0.98);
}

/* Mobile Card V2 Styles */
.mobile-card-wrapper {
  margin-bottom: 0.75rem;
}

.mobile-goal-card-v2 {
  border-radius: 16px;
  padding: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-goal-card-v2.player-one {
  background: linear-gradient(
    145deg,
    rgba(14, 165, 165, 0.15) 0%,
    rgba(14, 165, 165, 0.05) 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-goal-card-v2.player-two {
  background: linear-gradient(
    145deg,
    rgba(34, 197, 94, 0.15) 0%,
    rgba(34, 197, 94, 0.05) 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-goal-card-v2.is-winner {
  transform: scale(1.02);
}

.mobile-goal-card-v2.is-winner.player-one {
  border-color: #0ea5a5;
  box-shadow: 0 0 30px rgba(14, 165, 165, 0.25), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-goal-card-v2.is-winner.player-two {
  border-color: #22c55e;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.25), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-goal-card-v2.is-loser {
  opacity: 0.5;
  transform: scale(0.98);
}

/* Card shimmer effect */
.card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-15deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.mobile-goal-card-v2:hover .card-shimmer {
  left: 150%;
}

.mobile-goal-card-v2:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.mobile-goal-card-v2[style*='cursor: pointer'] {
  animation: cardPulse 2.5s ease-in-out infinite;
}

.mobile-goal-card-v2[style*='cursor: pointer']:hover {
  animation: none;
}

.mobile-goal-card-v2[style*='cursor: pointer'] iframe,
.mobile-goal-card-v2[style*='cursor: pointer'] video {
  pointer-events: none;
}

/* Mobile Card Header */
.mobile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.mobile-card-header__player {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-card-header__opponent {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.mobile-card-header__badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile Winner Badge */
.mobile-winner-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  padding: 0.4rem 0.8rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
  z-index: 5;
}

/* Mobile Video Container */
.mobile-video-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Card Footer */
.mobile-card-footer {
  margin-top: 0.75rem;
}

/* Mobile Rating Display */
.mobile-rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-rating-display__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.mobile-rating-display__value {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

.mobile-rating-display__change {
  font-weight: bold;
  font-size: 0.95rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.mobile-rating-display__change.positive {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.2);
}

.mobile-rating-display__change.negative {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.2);
}

/* ===========================================
   Navbar Component Styles
   =========================================== */

.navbar.game-navbar {
  padding: 0.5rem 1rem;
  height: auto;
  min-height: 3rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
}

.navbar-brand--full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo {
  font-weight: bold;
  font-size: 1.25rem;
  padding-left: 0;
  text-decoration: none;
  color: inherit;
}

/* Subdomain branding - uses theme color */
.navbar__logo.subdomain-logo {
  color: var(--primary-color);
}

.button .icon {
  margin: 0;
}

/* Navbar button fixes */
.button.is-info.is-responsive {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
}

.button span {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-item .button {
  height: 2.5rem;
  font-size: 1rem;
}

/* Theme toggle spin */
.theme-toggle-spin {
  transition: transform 0.5s ease;
}

.theme-toggle-spin:active {
  transform: rotate(360deg);
}

/* ===========================================
   How It Works Card
   =========================================== */

.how-it-works-card .columns .column {
  display: block;
}

.how-it-works-card .icon.is-large {
  height: 3rem;
  width: 3rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-card {
  height: auto;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 1rem;
}

.how-it-works-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.how-it-works-card .content {
  padding: 0.5rem;
}

.how-it-works-card .columns {
  margin-bottom: 0;
}

.how-it-works-card .title.is-3 {
  margin-bottom: 1rem;
}

.how-it-works-card .subtitle.is-6 {
  margin-bottom: 0;
  line-height: 1.2;
}

.how-it-works-card .column {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.how-it-works-card.mb-5 {
  margin-bottom: 2rem;
}

/* ===========================================
   Hover Effects
   =========================================== */

.hover-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hover-danger:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   Next Button Enhanced
   =========================================== */

.next-button {
  position: relative;
  overflow: hidden;
}

.next-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.next-button:hover::before {
  left: 100%;
}

/* ===========================================
   Admin Navigation
   =========================================== */

.admin-login-nav {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.admin-login-nav__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.admin-login-nav__buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===========================================
   Button Color Variants
   =========================================== */

.btn-neutral {
  background-color: #f5f5f5 !important;
  color: #363636 !important;
  border: 1px solid #dbdbdb !important;
}

.btn-neutral:hover {
  background-color: #e8e8e8 !important;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: none !important;
}

.btn-primary:hover {
  background-color: #0c9090 !important;
}

.btn-info {
  background-color: #3273dc !important;
  color: white !important;
  border: none !important;
}

.btn-info:hover {
  background-color: #2366d1 !important;
}

.btn-warning {
  background-color: #f59e0b !important;
  color: white !important;
  border: none !important;
}

.btn-warning:hover {
  background-color: #d97706 !important;
}

/* ===========================================
   Special Buttons
   =========================================== */

.verify-clips-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background-color: var(--accent-color);
  border: none;
  font-weight: bold;
}

.verify-clips-btn:hover {
  background-color: #9a6800;
}

.contribute-clips-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color);
  border: none;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
}

.contribute-clips-btn:hover {
  background-color: #9a6800;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--success-color);
  border: none;
  font-weight: bold;
}

.share-btn:hover {
  background-color: #128a3d;
}

.share-btn--copied {
  background-color: var(--success-color);
}

/* ===========================================
   Utility Classes
   =========================================== */

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}
