/* /public_html/luda-ekipa.rs/assets/css/le-extra.css */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-actions .btn {
  min-width: 180px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* scroll reveal */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* hall of fame */

.hof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hof-card {
  position: relative;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(255, 127, 80, 0.25), rgba(5, 6, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.hof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
}

.hof-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  z-index: 1;
}

.hof-header h3 {
  font-size: 1.05rem;
  color: #ffffff;
}

.hof-season {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffd27f;
}

.hof-category {
  position: relative;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.hof-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.hof-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hof-body {
  position: relative;
  z-index: 1;
}

.hof-body p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.hof-body a {
  font-size: 0.82rem;
  color: #ffb347;
  text-decoration: none;
}

.hof-body a:hover {
  text-decoration: underline;
}

/* alerts / admin style reuse */

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.7);
  color: #2ecc71;
}

.alert-error {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.7);
  color: #e74c3c;
}

/* forms for extra pages */

.page-section {
  padding: 60px 0;
}

.page-section .container-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.le-form-card {
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.55), rgba(8, 9, 18, 0.98));
  border-radius: 14px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.le-form-card h2 {
  margin-bottom: 10px;
}

.le-form-row {
  margin-bottom: 14px;
}

.le-form-row label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}

.le-form-row input,
.le-form-row textarea,
.le-form-row select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.9rem;
}

.le-form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.le-form-row input:focus,
.le-form-row textarea:focus,
.le-form-row select:focus {
  outline: none;
  border-color: #ffb347;
  box-shadow: 0 0 0 1px rgba(255, 179, 71, 0.35);
}

.le-form-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.le-form-actions .btn {
  border-radius: 10px;
}

/* changelog page */

.changelog-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.changelog-entry {
  position: relative;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: radial-gradient(circle at left, rgba(46, 204, 113, 0.18), rgba(8, 9, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.9);
}

.changelog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.changelog-version {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.changelog-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.changelog-body {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.changelog-image {
  margin-top: 0.6rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.changelog-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* support ticket list (if used later) */

.ticket-status-open {
  color: #2ecc71;
}

.ticket-status-answered {
  color: #f1c40f;
}

.ticket-status-closed {
  color: #e74c3c;
}

.ticket-priority-high {
  color: #e74c3c;
}

.ticket-priority-normal {
  color: #3498db;
}

.ticket-priority-low {
  color: #95a5a6;
}

/* live match status badge */

.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(231, 76, 60, 0.85);
  color: #fff;
  animation: le-pulse 1.4s ease-out infinite;
}

.live-status-badge--upcoming {
  background: rgba(52, 152, 219, 0.85);
}

@keyframes le-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(231, 76, 60, 0);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    transform: scale(1);
  }
}

/* small tables for ticket/admin pages reused */

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.table th,
.table td {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.table th {
  text-align: left;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
