@charset "UTF-8";
.note-for-cursor {
  only-make-updates-to: "style.scss" !important; /* NOTE */
}

/* CSS moved from index.php */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: url("images/rust-bg.jpg") center top/100% auto no-repeat, linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: #ffffff;
  font-size: 16px; /* Base font size for better accessibility */
  line-height: 1.6; /* Better line spacing for readability */
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 60, 114, 0.75);
  z-index: 0;
  pointer-events: none;
}

a:link, a:visited {
  color: #ffd700;
  text-decoration: none;
}

a:hover, a:active {
  color: #ffd700;
  text-decoration: underline;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: clamp(2rem, 5vw, 3rem); /* Responsive font sizing */
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-weight: 700;
}

.header p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.95;
  color: #ffffff;
}

.timezone-selector {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.timezone-selector label {
  font-size: 1rem;
  color: #ffd700;
  font-weight: bold;
  min-width: 120px; /* Ensure label doesn't wrap awkwardly */
}

.timezone-selector select {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.timezone-selector select:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.timezone-selector select:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
  background: rgba(255, 255, 255, 0.25);
}

.timezone-selector select option {
  background: #2a5298;
  color: #ffffff;
  padding: 8px;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: stretch;
}

.event-tracker, .prediction-panel {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  margin-bottom: 20px;
  text-align: center;
  color: #ffd700;
  font-weight: 700;
}

.event-buttons {
  display: grid;
  gap: 15px;
}

.event-btn {
  padding: 18px 24px;
  border: none;
  border-radius: 12px;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-height: 60px; /* Ensure consistent button height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

.event-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.event-btn.airdrop {
  background: linear-gradient(45deg, #d32f2f, #f44336);
  color: white;
}

.event-btn.cargo {
  background: linear-gradient(45deg, #3f51b5, #5c6bc0);
  color: white;
}

.event-btn.lockedcrate {
  background: linear-gradient(45deg, #00796b, #26a69a);
  color: white;
}

.event-btn.merchant {
  background: linear-gradient(45deg, #f57c00, #ff9800);
  color: white;
}

.event-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.event-btn:active {
  transform: translateY(0);
}

.event-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.event-btn.on-cooldown {
  background: #888 !important;
  color: #fff !important;
  border-color: #aaa !important;
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}

.cooldown-timer {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  color: #ffd700;
  margin-top: 4px;
  text-shadow: 0 0 4px #222;
  letter-spacing: 1px;
  animation: pulse-timer 1s infinite alternate;
}

@keyframes pulse-timer {
  0% {
    color: #ffd700;
  }
  100% {
    color: #ff4444;
  }
}
#globalCooldownBanner {
  display: none;
  margin-bottom: 10px;
  color: #fff;
  background: #d32f2f;
  padding: 8px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  font-size: 1.08em;
  letter-spacing: 0.5px;
  z-index: 2001;
}

.prediction-display {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow-x: hidden;
}

.prediction-title {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffd700;
  font-weight: 700;
}

.cargo-prediction {
  background: rgba(63, 81, 181, 0.3);
  border: 2px solid rgba(63, 81, 181, 0.4);
  margin-top: 15px;
}

.cargo-prediction .next-event {
  color: #90caf9;
}

.cargo-prediction .prediction-title {
  color: #90caf9;
}

.lockedcrate-prediction {
  background: rgba(0, 121, 107, 0.3);
  border: 2px solid rgba(0, 121, 107, 0.4);
  margin-top: 15px;
}

.lockedcrate-prediction .next-event {
  color: #80cbc4;
}

.lockedcrate-prediction .prediction-title {
  color: #80cbc4;
}

.merchant-prediction {
  background: rgba(245, 124, 0, 0.3);
  border: 2px solid rgba(245, 124, 0, 0.4);
  margin-top: 15px;
}

.merchant-prediction .next-event {
  color: #ffcc80;
}

.merchant-prediction .prediction-title {
  color: #ffcc80;
}

.next-event {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  margin-bottom: 10px;
  color: #ffd700;
  font-weight: 600;
}

.countdown {
  font-size: clamp(1.8rem, 4vw, 2rem);
  font-weight: bold;
  color: #ff6b6b;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  min-width: 80px;
  display: inline-block;
  text-align: center;
  font-family: "Roboto Mono", "Consolas", monospace;
}

.event-history {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.history-title {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  margin-bottom: 20px;
  text-align: center;
  color: #ffd700;
  font-weight: 700;
}

.history-description {
  text-align: center;
  font-size: 0.98rem;
  opacity: 0.7;
  margin-bottom: 8px;
}

.history-list {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 680px; /* 10 items, each ~68px tall including margin/padding */
  overflow-y: auto;
}

.history-list::-webkit-scrollbar {
  width: 8px;
}

.history-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.history-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.history-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.history-item {
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 12px;
  padding: 18px;
  border-radius: 10px;
  border-left: 5px solid #ffd700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  min-height: 56px;
}

.history-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(2px);
}

.history-item:focus-within {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
}

.event-content {
  flex: 1;
}

.delete-btn {
  background: rgba(211, 47, 47, 0.3);
  border: 2px solid #d32f2f;
  color: #ffffff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-left: 12px;
  min-width: 32px;
}

.delete-btn:hover {
  background: rgba(211, 47, 47, 0.5);
  transform: scale(1.1);
}

.delete-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.4);
}

.delete-btn:active {
  transform: scale(0.95);
}

.history-item.airdrop {
  border-left-color: #d32f2f;
}

.history-item.cargo {
  border-left-color: #3f51b5;
}

.history-item.lockedcrate {
  border-left-color: #00796b;
}

.history-item.merchant {
  border-left-color: #f57c00;
}

.history-item.serverdown {
  border-left-color: #d32f2f;
  background: rgba(211, 47, 47, 0.12);
}

.history-item.serverup {
  border-left-color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
}

.event-type {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: #ffffff;
}

.event-type.serverdown {
  color: #d32f2f;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.event-type.serverdown::before {
  content: "⚠"; /* Warning sign */
  color: #d32f2f;
  font-size: 1.2em;
  margin-right: 0.4em;
}

.event-type.serverup {
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.event-type.serverup::before {
  content: "✔"; /* Checkmark */
  color: #4CAF50;
  font-size: 1.2em;
  margin-right: 0.4em;
}

.event-time {
  font-size: 1rem;
  opacity: 0.9;
  color: #ffffff;
}

.stats {
  width: 100vw;
  max-width: 100vw;
  margin: 40px 0 0 50%;
  transform: translateX(-50%);
  padding: 32px 0 32px 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stats > .stat-card {
  margin: 0 10px;
}

@media (max-width: 1200px) and (min-width: 600px) {
  .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px 24px;
    justify-items: center;
    align-items: stretch;
    padding: 24px 12px;
    width: 100vw;
    max-width: 100vw;
  }
  .stats > .stat-card {
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .stats {
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .stats > .stat-card {
    margin: 10px auto;
    width: calc(50vw - 30px);
  }
}
.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2rem);
  font-weight: bold;
  color: #ffd700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
  color: #ffffff;
  font-weight: 600;
  margin-top: 8px;
}

.clear-btn {
  background: linear-gradient(45deg, #d32f2f, #f44336);
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.clear-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}

.clear-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.error-message {
  background: rgba(211, 47, 47, 0.3);
  border: 2px solid #d32f2f;
  border-radius: 10px;
  padding: 18px;
  margin: 20px 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.success-message {
  background: rgba(76, 175, 80, 0.3);
  border: 2px solid #4CAF50;
  border-radius: 10px;
  padding: 18px;
  margin: 20px 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.timezone-info {
  text-align: center;
  margin-top: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.timezone-info p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.95;
  color: #ffffff;
}

.timezone-info strong {
  color: #ffd700;
  font-weight: 700;
}

.reset-timezone-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 8px;
  transition: all 0.3s ease;
  min-height: 28px;
}

.reset-timezone-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.reset-timezone-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .header h1 {
    font-size: 2rem;
  }
  .event-btn {
    padding: 16px 20px;
    font-size: 1rem;
    min-height: 56px;
  }
  .prediction-display {
    padding: 20px;
  }
  .timezone-selector {
    flex-direction: column;
    align-items: stretch;
  }
  .timezone-selector select {
    min-width: auto;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 15px;
  }
  .event-tracker, .event-history {
    padding: 20px;
  }
  .event-btn {
    padding: 14px 16px;
    font-size: 0.9rem;
    min-height: 52px;
  }
  .history-item {
    padding: 14px;
  }
  .delete-btn {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}
/* High contrast mode support */
@media (prefers-contrast: high) {
  .event-btn {
    border: 3px solid #ffffff;
  }
  .prediction-display {
    border: 3px solid #ffffff;
  }
  .history-item {
    border: 3px solid #ffffff;
  }
  .stat-card {
    border: 3px solid #ffffff;
  }
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .event-btn:hover,
  .history-item:hover,
  .stat-card:hover {
    transform: none;
  }
}
/* Focus visible for better keyboard navigation */
.event-btn:focus-visible,
.delete-btn:focus-visible,
.clear-btn:focus-visible,
.reset-timezone-btn:focus-visible,
.timezone-selector select:focus-visible {
  outline: 3px solid #ffd700;
  outline-offset: 2px;
}

/* Countdown animations */
@keyframes urgent-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes urgent-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}
/* Reduced motion support for animations */
@media (prefers-reduced-motion: reduce) {
  .countdown {
    animation: none !important;
  }
}
/* PIN Modal Styles */
.pin-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.pin-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pin-modal-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pin-modal h3 {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.pin-modal p {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1rem;
  opacity: 0.9;
}

.pin-input {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}

.pin-input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
  background: rgba(255, 255, 255, 0.25);
}

.pin-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

.pin-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

.pin-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.pin-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}

.pin-btn.confirm {
  background: linear-gradient(45deg, #d32f2f, #f44336);
  color: white;
}

.pin-btn.cancel {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.pin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pin-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
}

.pin-error {
  color: #ff4444;
  font-size: 0.9rem;
  margin-top: 10px;
  font-weight: 600;
  display: none;
}

.pin-error.show {
  display: block;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
.server-status-light {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  border: 2px solid #222;
}

.server-status-online {
  background: #4CAF50;
  box-shadow: 0 0 8px #4CAF50;
}

.server-status-offline {
  background: #d32f2f;
  box-shadow: 0 0 8px #d32f2f;
}

@media (min-width: 768px) {
  .server-status-bar-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-top: 48px;
    padding-bottom: 48px;
    max-width: 1400px;
  }
  .header {
    margin-bottom: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .header .brand-logo {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
  }
  .header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
  }
  .header p {
    font-size: 1.4rem;
  }
  .main-content {
    padding: 40px 32px;
    margin-bottom: 64px;
    gap: 40px;
  }
  .event-tracker, .event-history {
    padding: 35px;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .event-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .event-btn {
    padding: 22px 28px;
    font-size: 1.2rem;
    min-height: 70px;
  }
  .prediction-display {
    padding: 28px;
    margin-top: 25px;
  }
  .next-event {
    font-size: 1.6rem;
  }
  .countdown {
    font-size: 2.2rem;
  }
  .history-list {
    max-height: 750px;
  }
  .history-item {
    padding: 22px;
    min-height: 65px;
  }
  .stats {
    margin-top: 56px;
    margin-bottom: 48px;
  }
  .timezone-info {
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 24px;
  }
  .pin-modal {
    padding-bottom: 48px;
  }
  .floating-prediction-widget {
    position: fixed;
    width: 320px;
    max-width: 90vw;
    background: rgba(30, 60, 114, 0.97);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border: 2px solid #ffd700;
    padding: 22px 20px 18px 20px;
    z-index: 1200;
    transition: box-shadow 0.2s;
    cursor: move;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .floating-prediction-widget.airdrop {
    top: 80px;
    right: 32px;
  }
  .floating-prediction-widget.cargo {
    top: 80px;
    left: 32px;
  }
  /* Hide original panels on desktop */
  .main-content .prediction-display.airdrop-prediction,
  .main-content .prediction-display.cargo-prediction {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .floating-prediction-widget {
    display: none !important;
  }
}
.server-status-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

.edit-server-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0 14px;
  height: 40px;
  min-width: 40px;
  background: rgba(170, 170, 170, 0.92);
  border: 1.5px solid #bbb;
  border-radius: 22px;
  margin-left: 18px;
  box-shadow: none;
  transition: background 0.2s, border 0.2s, color 0.2s, box-shadow 0.2s;
  color: #d9d9d9 !important;
  cursor: pointer;
}

.edit-server-btn svg {
  width: 1.2em;
  height: 1.2em;
  min-width: 1.2em;
  min-height: 1.2em;
  display: inline-block;
  color: #222 !important;
}

.edit-server-label {
  font-size: 1em;
  font-weight: 500;
  color: #222 !important;
  margin: 0;
  letter-spacing: 0.01em;
  display: inline-block;
}

.edit-server-btn svg .icon-pencil-body {
  fill: #222 !important;
}

.edit-server-btn svg .icon-pencil-tip {
  fill: #ffd700 !important;
}

@media (max-width: 600px) {
  .edit-server-label {
    display: none;
  }
  .edit-server-btn {
    padding: 0;
    width: 36px;
    height: 36px;
    min-width: 36px;
    margin-left: 0;
  }
  .edit-server-btn svg {
    width: 1.5em !important;
    height: 1.5em !important;
    display: inline-block;
  }
  .edit-server-btn svg path {
    fill: #ffd700 !important;
    stroke: none !important;
    opacity: 1 !important;
  }
}
.edit-server-btn:hover, .edit-server-btn:focus {
  background: rgba(170, 170, 170, 0.92);
  color: #d9d9d9 !important;
  border: 1.5px solid #bbb;
  box-shadow: none;
}

.edit-server-btn:hover .edit-server-label,
.edit-server-btn:focus .edit-server-label {
  text-decoration: underline;
}

.edit-server-btn span {
  font-size: 1.5em;
  line-height: 1;
}

@media (max-width: 600px) {
  .server-status-bar-sticky {
    background: #111 !important;
    border-bottom: 2px solid #ffd700 !important;
  }
  .server-status-bar-content,
  .server-status-bar-content *,
  .server-status-bar-content a,
  .server-status-bar-content span,
  .server-status-bar-content strong {
    color: #ffd700 !important;
    text-shadow: 0 1px 2px #000, 0 0 2px #000 !important;
    opacity: 1 !important;
  }
  .server-status-bar-content .server-name {
    color: #ffd700 !important;
    text-shadow: 0 1px 2px #000, 0 0 2px #000 !important;
  }
  .edit-server-btn {
    background: #222 !important;
    color: #ffd700 !important;
    border: 2px solid #ffd700 !important;
  }
  .edit-server-btn svg {
    color: #ffd700 !important;
  }
}
.server-dropdown {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  border: 1.5px solid #bbb;
  background: #222;
  color: #ffd700;
  font-size: 1em;
}

.server-dropdown option {
  color: #222;
  background: #ffd700;
}

.bg-image-container {
  position: relative;
  z-index: 1;
}

.bg-image-container > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  body::before {
    background: rgba(30, 60, 114, 0.88);
  }
}
.brand-logo {
  display: block;
  margin: 0 auto 10px auto;
  width: 180px;
  max-width: 180px;
  height: auto;
}

/* Player names popover styles */
.player-names-popover {
  max-height: 260px;
  overflow-y: auto;
  min-width: 220px;
  max-width: 320px;
  background: rgba(30, 30, 30, 0.98);
  color: #ffd700;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  padding: 16px 18px 12px 18px;
  font-size: 1rem;
  z-index: 2000;
  text-align: left;
  border: 1px solid #ffd700;
  transition: box-shadow 0.2s;
  position: fixed; /* Ensure fixed positioning */
}

.player-names-popover ul {
  margin: 8px 0 0 0;
  padding: 0 0 0 18px;
  max-height: 200px;
  overflow-y: auto;
}

.player-names-popover li {
  margin-bottom: 2px;
  word-break: break-all;
}

@media (max-width: 600px) {
  .player-names-popover {
    min-width: 160px;
    max-width: 95vw;
    font-size: 0.98rem;
    left: 10px !important;
    right: 10px !important;
  }
}
.server-players {
  cursor: pointer;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  text-underline-offset: 3px;
  transition: color 0.2s, -webkit-text-decoration 0.2s;
  transition: color 0.2s, text-decoration 0.2s;
  transition: color 0.2s, text-decoration 0.2s, -webkit-text-decoration 0.2s;
  position: relative;
  color: #ffd700;
  font-weight: 600;
}

.server-players:hover,
.server-players:focus {
  color: #fffbe7;
  -webkit-text-decoration: underline solid;
          text-decoration: underline solid;
}

.server-players::after {
  /* Use a custom SVG user icon as a background image for maximum visibility */
  content: "";
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  margin-left: 0.4em;
  vertical-align: middle;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="%23ffd700"><circle cx="16" cy="11" r="7"/><path d="M16 20c-7 0-12 3.5-12 7v1h24v-1c0-3.5-5-7-12-7z"/></svg>') no-repeat center/contain;
  filter: drop-shadow(0 0 2px #222);
  opacity: 0.95;
  transition: opacity 0.2s, filter 0.2s;
}

.server-players:hover::after,
.server-players:focus::after {
  opacity: 1;
  filter: drop-shadow(0 0 4px #ffd700);
}

.event-icon {
  width: 80px;
  height: auto;
  vertical-align: middle;
  margin-right: 0.3em;
  display: inline-block;
  filter: drop-shadow(0 0 2px #222);
}

.closed-widget {
  position: relative !important;
  box-shadow: none !important;
  border-radius: 12px !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  padding: 24px !important;
  margin-top: 20px !important;
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
}

.closed-widget .close-widget-btn {
  display: none !important;
}

.show-widget-btn {
  background: #222;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1.05em;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0.95;
  transition: background 0.2s, color 0.2s, border 0.2s;
  z-index: 1300;
}

.show-widget-btn:hover,
.show-widget-btn:focus {
  background: #ffd700;
  color: #222;
  border-color: #fffbe7;
  outline: none;
}

.draggable-handle, .draggable-handle * {
  cursor: move !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.floating-prediction-widget .close-widget-btn {
  display: block;
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: #ffd700;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

/* Privacy Policy Page Styles */
.privacy-page {
  padding-top: 48px;
}

.privacy-main-content {
  max-width: none;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.privacy-content, .vote-content {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  border-radius: 15px;
  margin: 20px auto;
  line-height: 1.7;
  max-width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.privacy-content h2, .vote-content h2 {
  color: #ffd700;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.6em;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.privacy-content h3, .vote-content h3 {
  color: #ffd700;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: 600;
}

.privacy-content p, .vote-content p {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 1.05em;
}

.privacy-content ul, .vote-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.privacy-content ol, .vote-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.privacy-content li, .vote-content li {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.05em;
}

/* General ordered list indentation */
ol, ol {
  padding-left: 1.5em;
  margin-left: 0;
  type: decimal;
  list-style-type: decimal;
  list-style-position: inside;
  list-style-image: none;
  list-style-type: lower-alpha;
}

.privacy-content strong, .vote-content strong {
  color: #ffd700;
  font-weight: 600;
}

.privacy-content a {
  color: #90caf9;
  text-decoration: underline;
  transition: color 0.2s;
}

.privacy-content a:hover {
  color: #64b5f6;
}

.back-to-home {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  border-top: 2px solid rgba(255, 215, 0, 0.2);
}

body .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
body .btn-primary:hover {
  text-decoration: none;
}

.vote-link-group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.vote-info-tooltip {
  position: relative;
  left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vote-info-tooltip:hover,
.vote-info-tooltip:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.vote-info-tooltip:focus-visible {
  outline: 2px solid #ffb300;
  outline-offset: 2px;
}

.vote-info-icon {
  font-size: 0.95em;
  font-weight: 700;
  line-height: 1;
}

.vote-info-tooltip-text {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: min(280px, 80vw);
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(8, 13, 21, 0.95);
  color: #f1f5ff;
  font-size: 0.9em;
  line-height: 1.5;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 5;
}

.vote-info-tooltip-text::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: rgba(8, 13, 21, 0.95) transparent transparent transparent;
}

.vote-info-tooltip:hover .vote-info-tooltip-text,
.vote-info-tooltip:focus .vote-info-tooltip-text,
.vote-info-tooltip:focus-within .vote-info-tooltip-text {
  opacity: 1;
  visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  .vote-info-tooltip {
    transition: none;
  }
  .vote-info-tooltip-text {
    transition: none;
  }
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  background: linear-gradient(45deg, #ffed4e, #ffd700);
}

/* Desktop-specific privacy policy improvements */
@media (min-width: 1024px) {
  .privacy-content {
    padding: 50px 60px;
    margin: 30px auto;
    max-width: 1000px;
    font-size: 1.1em;
  }
  .privacy-content h2 {
    font-size: 1.8em;
    margin-top: 50px;
    margin-bottom: 25px;
  }
  .privacy-content h3 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .privacy-content p,
  .privacy-content li {
    font-size: 1.1em;
    line-height: 1.8;
  }
  .back-to-home {
    margin-top: 60px;
    padding: 40px;
  }
  .btn-primary {
    padding: 18px 36px;
    font-size: 1.2em;
  }
}
/* Custom popover for server last update info */
#serverLastUpdatePopover {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #ffd700;
  border: 1px solid #ffd700;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 1em;
  z-index: 3000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

#serverLastUpdateNote:hover + #serverLastUpdatePopover,
#serverLastUpdatePopover.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.player-list-spinner {
  display: inline-block;
  width: 21px;
  height: 21px;
  border: 3px solid #e0e0e0;
  border-top: 3px solid #e0e0e0;
  border-radius: 50%;
  vertical-align: middle;
  opacity: 1;
  transition: border-top-color 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
}

.player-list-spinner.spinning {
  border-top: 3px solid #ffe066;
  animation: spin 0.8s linear infinite;
}

.player-list-spinner.reverse-spin {
  animation: none;
  border-top: 3px solid #e0e0e0;
  background: conic-gradient(#ffe066 var(--reverse-spin-progress, 0deg), #222a2f var(--reverse-spin-progress, 0deg) 360deg);
  transition: background 0.8s linear;
  box-shadow: 0 0 0 1px #222a2f inset;
  border-width: 1px;
}

.player-list-spinner.reverse-spin::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.player-list-spinner {
  position: relative;
  z-index: 1;
}

.server-info-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 28px auto;
  padding: 22px 0 18px 0;
  background: rgba(30, 60, 114, 0.85);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  text-align: center;
  font-size: 1.18rem;
  color: #ffd700;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.server-info-name {
  font-size: 1.25em;
  font-weight: 700;
  color: #fffbe7;
  margin-bottom: 2px;
  text-shadow: 1px 1px 2px #222;
}

.server-info-wipe {
  font-size: 1.05em;
  color: #ffd700;
  font-weight: 500;
  margin-top: 0;
  text-shadow: 1px 1px 2px #222;
}

.wipe-countdown-clock {
  font-family: "Share Tech Mono", "Consolas", "Menlo", "Monaco", monospace;
  font-size: 1.2em;
  font-weight: 900;
  color: #ffd700;
  background: linear-gradient(90deg, #2d2d2d 0%, #3a2c0f 100%);
  border-radius: 10px;
  padding: 6px 14px 5px 14px;
  margin: 0 auto 6px auto;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18), 0 0 0 2px #222 inset;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px #000, 0 0 2px #ff9800;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 2px solid #ff9800;
  position: relative;
}

.wipe-clock-part {
  display: inline-block;
  min-width: 2ch;
  padding: 0 2px;
  color: #ffd700;
  text-shadow: 0 1px 4px #000, 0 0 2px #ff9800;
}

.wipe-days {
  color: #ff9800;
  text-shadow: 0 0 8px #ff9800, 0 2px 8px #000;
}

.wipe-hours {
  color: #fffbe7;
}

.wipe-mins {
  color: #ffd700;
}

.wipe-secs {
  color: #ff9800;
  animation: wipe-blink 1s steps(1) infinite;
}

@keyframes wipe-blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0.6;
  }
}
.wipe-date {
  font-size: 0.95em;
  color: #fffbe7;
  opacity: 0.7;
  margin-top: 2px;
  text-shadow: 0 1px 4px #000;
}

.wipe-due {
  color: #ff4444;
  font-weight: 900;
  text-shadow: 0 0 12px #ff4444, 0 2px 8px #000;
  letter-spacing: 0.12em;
  font-size: 1.2em;
  animation: wipe-due-pulse 1s infinite alternate;
}

@keyframes wipe-due-pulse {
  0% {
    text-shadow: 0 0 12px #ff4444, 0 2px 8px #000;
  }
  100% {
    text-shadow: 0 0 32px #ff4444, 0 2px 16px #000;
  }
}
/* --- Footer Links (Gaming Footer Redesign) --- */
footer.footer-main {
  margin-top: 48px;
  padding: 28px 0 0 0;
  border-top: 2px solid rgba(255, 215, 0, 0.18);
  background: linear-gradient(90deg, rgba(24, 28, 36, 0.4117647059) 0%, rgba(35, 42, 54, 0.8392156863) 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.footer-links {
  text-align: center;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 7px;
  position: relative;
}

.footer-links a {
  color: #ffd700;
  text-decoration: none;
  font-size: 1em;
  font-weight: 700;
  padding: 0 8px;
  position: relative;
  transition: color 0.18s;
  opacity: 0.92;
  letter-spacing: 0.01em;
}

.footer-links a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 2px;
  margin: 4px auto 0 auto;
  transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.2666666667);
}

.footer-links a:hover, .footer-links a:focus {
  color: #fffbe7;
  opacity: 1;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.3333333333);
  outline: none;
}

.footer-links a:hover::after, .footer-links a:focus::after {
  width: 80%;
}

.footer-links .footer-sep {
  color: rgba(255, 215, 0, 0.2666666667);
  font-weight: 400;
  font-size: 1.1em;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.footer-copyright {
  text-align: center;
  color: #ffffff;
  font-size: 0.98em;
  margin: 12px 0 0 0;
  padding-bottom: 18px;
  letter-spacing: 0.01em;
  opacity: 0.7;
}
.footer-copyright a {
  color: inherit;
}

@media (max-width: 700px) {
  .footer-links {
    flex-direction: column;
    gap: 0;
    font-size: 1em;
    padding: 20px 0 0 0;
    align-items: stretch;
  }
  .footer-links a {
    font-size: 1em;
    padding: 14px 0;
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    margin: 0 0 4px 0;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.18s;
  }
  .footer-links a:hover, .footer-links a:focus {
    background: rgba(255, 215, 0, 0.08);
  }
  .footer-links .footer-sep {
    display: none;
  }
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 0;
}

.footer-links {
  width: 100%;
  padding: 19px 0 15px;
  align-items: center;
}

.external-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.32em;
  vertical-align: text-bottom;
  background: no-repeat center/contain;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 20 20"><path d="M10 3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V5.414l-9.293 9.293a1 1 0 0 1-1.414-1.414L15.586 4H11a1 1 0 0 1-1-1z"/><path d="M5 5a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3a1 1 0 1 1 2 0v3a4 4 0 0 1-4 4H5a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4h3a1 1 0 1 1 0 2H5z"/></svg>');
  opacity: 0.7;
}

.map-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

.map-container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffd700;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.3333333333);
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}

.videos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 900px) {
  .videos-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
  }
  .videos-container > iframe {
    margin-bottom: 0;
  }
}
.videos-container > iframe {
  max-width: 100%;
  width: 560px;
  height: 315px;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  background: #000;
}

@media (max-width: 700px) {
  .timezone-info {
    padding: 12px 6px;
    margin-top: 16px;
    border-radius: 10px;
    font-size: 0.98em;
    background: rgba(30, 60, 114, 0.92);
    border: 1.5px solid rgba(255, 215, 0, 0.2666666667);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .timezone-info p {
    font-size: 0.98em;
    flex-direction: column;
    gap: 10px;
    display: flex;
    align-items: stretch;
  }
  .timezone-info select {
    width: 100%;
    min-width: 0;
    margin: 8px 0 0 0;
    font-size: 1em;
    padding: 10px 8px;
    border-radius: 8px;
  }
  .reset-timezone-btn {
    width: 100%;
    margin: 10px 0 0 0;
    font-size: 1em;
    padding: 10px 0;
    border-radius: 8px;
  }
}
.block {
  display: block;
  width: 100%;
  max-width: 100%;
}

.auth-container {
  background: rgba(30, 60, 114, 0.95);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.auth-form {
  margin-top: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffd700;
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.45;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.auth-button {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: none;
  border-radius: 8px;
  color: #1e3c72;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.auth-button:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.auth-button:active {
  transform: translateY(0);
}

.auth-links {
  margin-top: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.auth-links p {
  margin: 10px 0;
}

.auth-links a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.auth-links a:hover {
  color: #ffed4e;
}

.auth-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}

.auth-error {
  background: rgba(211, 47, 47, 0.2);
  border: 2px solid rgba(211, 47, 47, 0.5);
  color: #ff6b6b;
}

.auth-success {
  background: rgba(46, 125, 50, 0.2);
  border: 2px solid rgba(46, 125, 50, 0.5);
  color: #81c784;
}

.auth-status {
  font-size: 1rem;
}

@media (max-width: 600px) {
  .auth-container {
    padding: 30px 20px;
  }
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }
}
.feedback-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group-hcaptcha {
  margin-bottom: 20px;
  overflow: visible;
}
.form-group-hcaptcha .h-captcha {
  display: flex;
  justify-content: center;
  min-height: 78px;
}
.form-group-hcaptcha .hcaptcha-label {
  display: block;
  margin-bottom: 8px;
  color: #ffd700;
  font-weight: 600;
  font-size: 1rem;
}
.form-group-hcaptcha .hcaptcha-disclosure {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  line-height: 1.45;
}
.form-group-hcaptcha .hcaptcha-disclosure a {
  color: #90caf9;
  text-decoration: underline;
}
.form-group-hcaptcha .hcaptcha-disclosure a:hover {
  color: #64b5f6;
}/*# sourceMappingURL=style.css.map */