@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #121824;
  --bg-glass: rgba(18, 24, 36, 0.7);
  --bg-glass-hover: rgba(26, 34, 50, 0.8);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-focus: rgba(0, 102, 255, 0.4);
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --accent-primary: #0066ff;
  --accent-glow: rgba(0, 102, 255, 0.4);
  --accent-gradient: linear-gradient(135deg, #0066ff 0%, #7000ff 100%);
  
  /* Metallic accents */
  --gold-primary: #ffd700;
  --gold-gradient: linear-gradient(135deg, #ffe066 0%, #f5b041 50%, #d35400 100%);
  --gold-glow: rgba(255, 215, 0, 0.3);
  
  --silver-primary: #c0c0c0;
  --silver-gradient: linear-gradient(135deg, #ffffff 0%, #bdc3c7 50%, #7f8c8d 100%);
  --silver-glow: rgba(192, 192, 192, 0.25);
  
  --bronze-primary: #cd7f32;
  --bronze-gradient: linear-gradient(135deg, #f5cba7 0%, #dc7633 50%, #a04000 100%);
  --bronze-glow: rgba(205, 127, 50, 0.25);
  
  --success: #10b981;
  --error: #ef4444;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --blur-amount: 16px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(at 0% 0%, rgba(112, 0, 255, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(0, 102, 255, 0.12) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.7);
  backdrop-filter: blur(var(--blur-amount));
  border-bottom: 1px solid var(--border-glass);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
  font-size: 1.2rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border-color: var(--border-glass);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glass-focus);
  transform: translateY(-1px);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #fff;
  border-color: var(--error);
  transform: translateY(-1px);
}

.btn-small {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 8px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 50px 0 30px;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.badge-modality {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(0, 102, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

/* Podium */
.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  margin: 40px auto 50px;
  max-width: 800px;
  padding: 10px;
}

.podium-place {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: var(--transition-slow);
}

.podium-place.first { order: 2; }
.podium-place.second { order: 1; }
.podium-place.third { order: 3; }

.pedestal {
  width: 100%;
  border-radius: 16px 16px 12px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  box-shadow: var(--shadow-main);
  border: 1px solid var(--border-glass);
}

.first .pedestal {
  height: 220px;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, rgba(18, 24, 36, 0.9) 100%);
  border-color: rgba(255, 215, 0, 0.25);
  box-shadow: 0 10px 30px -10px rgba(255, 215, 0, 0.15);
}

.second .pedestal {
  height: 170px;
  background: linear-gradient(180deg, rgba(192, 192, 192, 0.08) 0%, rgba(18, 24, 36, 0.9) 100%);
  border-color: rgba(192, 192, 192, 0.2);
}

.third .pedestal {
  height: 130px;
  background: linear-gradient(180deg, rgba(205, 127, 50, 0.06) 0%, rgba(18, 24, 36, 0.9) 100%);
  border-color: rgba(205, 127, 50, 0.15);
}

.medal-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #0a0e17;
  position: absolute;
  top: -26px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.first .medal-circle { background: var(--gold-gradient); }
.second .medal-circle { background: var(--silver-gradient); }
.third .medal-circle { background: var(--bronze-gradient); }

.podium-user-card {
  text-align: center;
  margin-bottom: 12px;
  width: 100%;
  padding: 0 12px;
}

.podium-user-card .avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 2px solid var(--border-glass);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.first .avatar-placeholder { border-color: var(--gold-primary); }
.second .avatar-placeholder { border-color: var(--silver-primary); }
.third .avatar-placeholder { border-color: var(--bronze-primary); }

.podium-user-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.podium-user-org {
  font-size: 0.775rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.podium-user-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
}

.first .podium-user-score { color: var(--gold-primary); }

.pedestal-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  opacity: 0.04;
  margin-top: auto;
  margin-bottom: 8px;
  user-select: none;
}

/* Glass panel */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-main);
  margin-bottom: 40px;
}

/* Filters */
.filter-bar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.input-field {
  width: 100%;
  background: rgba(10, 14, 23, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.input-field:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(10, 14, 23, 0.8);
}

.search-input-wrapper .input-field {
  padding-left: 44px;
}

select.input-field {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}

table.results-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

table.results-table th {
  background: rgba(18, 24, 36, 0.8);
  padding: 14px 20px;
  color: var(--text-secondary);
  font-family: var(--font-display);
  border-bottom: 1px solid var(--border-glass);
}

table.results-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

table.results-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 700;
  font-family: var(--font-display);
  background: rgba(255, 255, 255, 0.05);
}

.rank-1 .rank-badge { background: var(--gold-gradient); color: #0a0e17; }
.rank-2 .rank-badge { background: var(--silver-gradient); color: #0a0e17; }
.rank-3 .rank-badge { background: var(--bronze-gradient); color: #0a0e17; }

.participant-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.participant-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.participant-name-wrapper {
  display: flex;
  flex-direction: column;
}

.participant-name { font-weight: 600; }
.participant-team { font-size: 0.8rem; color: var(--text-secondary); }

.badge-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
}

.badge-tag.federation { background: rgba(112, 0, 255, 0.06); border-color: rgba(112, 0, 255, 0.15); color: #c7d2fe; }
.badge-tag.district { background: rgba(16, 185, 129, 0.06); border-color: rgba(16, 185, 129, 0.15); color: #a7f3d0; }

.table-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}

/* Empty placeholder */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

footer {
  text-align: center;
  padding: 30px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Login box */
.login-card {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
}

.login-card h2 { text-align: center; margin-bottom: 6px; }
.login-card p { text-align: center; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 20px; }

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Admin lists */
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: rgba(10, 14, 23, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  margin-bottom: 10px;
}

.admin-item-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 60%;
}

.admin-item-name { font-weight: 600; }
.admin-item-meta { display: flex; flex-wrap: wrap; gap: 4px; }

.admin-score-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  width: 44px;
  text-align: center;
}

.score-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.score-btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.admin-actions {
  display: flex;
  gap: 4px;
  margin-left: 6px;
}

.action-icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-icon-btn:hover { color: var(--text-primary); }
.action-icon-btn.edit-btn:hover { background: rgba(0, 102, 255, 0.12); color: #3b82f6; }
.action-icon-btn.delete-btn:hover { background: rgba(239, 68, 68, 0.12); color: #f87171; }

/* Modals */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 7, 12, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}

.modal.active { display: flex; }

.modal-content {
  width: 100%;
  max-width: 500px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
}

/* Toast alert system */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(18, 24, 36, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-left: 4px solid var(--accent-primary);
  border-radius: 8px;
  padding: 12px 18px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  animation: slideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--error); }

@keyframes slideIn {
  0% { transform: translateX(120%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .admin-grid { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .podium-container {
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding-top: 30px;
  }
  .podium-place { width: 100%; max-width: 280px; }
  .podium-place.first { order: 1; }
  .podium-place.second { order: 2; }
  .podium-place.third { order: 3; }
  .pedestal { height: auto !important; padding-bottom: 20px; }
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  width: fit-content;
}

.status-badge.ongoing {
  background: rgba(0, 102, 255, 0.1);
  color: #60a5fa;
  border-color: rgba(0, 102, 255, 0.2);
  animation: pulse-soft 2s infinite ease-in-out;
}

.status-badge.finished {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-color: rgba(16, 185, 129, 0.2);
}

@keyframes pulse-soft {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
  }
  50% {
    opacity: 0.5;
    text-shadow: 0 0 1px rgba(96, 165, 250, 0.1);
  }
}

/* Background Watermark for game results page */
.watermark-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, background-image 0.5s ease-in-out;
}

.watermark-bg.active {
  opacity: 0.05;
}

.watermark-bg::after {
  content: '';
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: radial-gradient(circle, rgba(10, 14, 23, 0.2) 20%, var(--bg-primary) 90%);
}

/* Footer soft blinking logo */
.logo-soft-blink {
  animation: logo-blink 3s infinite ease-in-out;
  transition: opacity 0.3s ease;
}

@keyframes logo-blink {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.45; }
}

/* Kiosk mode and selector idle hiding rules */
header .nav-links {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#kiosk-controls-toolbar {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s ease;
}

#btn-start-slideshow {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.user-idle header .nav-links {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-20px);
}

body.user-idle #kiosk-controls-toolbar {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 30px) !important;
}

body.user-idle #btn-start-slideshow {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Slideshow view optimizations */
body.slideshow-active .filter-bar {
  display: none !important;
}

body.slideshow-active {
  overflow: hidden !important;
}

body.slideshow-active .table-wrapper {
  max-height: calc(100vh - 360px);
  overflow-y: auto;
  scrollbar-width: none;
}

/* Slideshow layout: side-by-side columns (podium left, table right) */
@media (min-width: 900px) {
  body.slideshow-active #leaderboard-view {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
    margin-top: 10px;
  }

  body.slideshow-active #leaderboard-view .hero {
    grid-column: span 2;
    padding: 15px 0 !important;
  }
  
  body.slideshow-active .hero h2 {
    font-size: 2rem !important;
    margin-bottom: 4px !important;
  }
  
  body.slideshow-active .hero p {
    font-size: 0.9rem !important;
  }

  body.slideshow-active #podium-section {
    grid-column: 1;
    margin: 0 !important;
    height: auto;
    padding-top: 40px;
  }

  body.slideshow-active #standings-card {
    grid-column: 2;
    margin: 0 !important;
  }

  body.slideshow-active .table-wrapper {
    max-height: calc(100vh - 250px) !important;
  }
}

body.slideshow-active #leaderboard-view.no-table {
  display: block !important;
}

body.slideshow-active #leaderboard-view.no-table #podium-section {
  max-width: 800px;
  margin: 40px auto !important;
}

body.slideshow-active .table-wrapper::-webkit-scrollbar {
  display: none;
}

/* Trophy glowing animations (podium shine sequentially - only in slideshow mode) */
body.slideshow-active .podium-place.second .avatar-placeholder {
  animation: trophy-glow-2 3s infinite ease-in-out;
  animation-delay: 0s;
}
body.slideshow-active .podium-place.first .avatar-placeholder {
  animation: trophy-glow-1 3s infinite ease-in-out;
  animation-delay: 1.0s;
}
body.slideshow-active .podium-place.third .avatar-placeholder {
  animation: trophy-glow-3 3s infinite ease-in-out;
  animation-delay: 2.0s;
}

@keyframes trophy-glow-1 {
  0%, 40%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    filter: brightness(1);
  }
  20% {
    transform: scale(1.12);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    filter: brightness(1.3);
  }
}

@keyframes trophy-glow-2 {
  0%, 40%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(192, 192, 192, 0);
    filter: brightness(1);
  }
  20% {
    transform: scale(1.12);
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.6);
    filter: brightness(1.3);
  }
}

@keyframes trophy-glow-3 {
  0%, 40%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(205, 127, 50, 0);
    filter: brightness(1);
  }
  20% {
    transform: scale(1.12);
    box-shadow: 0 0 25px rgba(205, 127, 50, 0.6);
    filter: brightness(1.3);
  }
}



