@import "https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap";

/* src/client/styles.css */
body {
  font-family: "Crimson Text", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #d4af37;
  background:
    linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.8) 0%,
      rgba(26, 26, 26, 0.8) 25%,
      rgba(15, 15, 15, 0.8) 50%,
      rgba(26, 26, 26, 0.8) 75%,
      rgba(10, 10, 10, 0.8) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 40px;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.15) 0%,
      transparent 50%),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 48, 0.15) 0%,
      transparent 50%),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 119, 198, 0.08) 0%,
      transparent 50%);
  pointer-events: none;
  z-index: -1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
}
#app {
  padding: 1rem;
  position: relative;
  z-index: 1;
}
.App {
  position: relative;
  z-index: 1;
}
.App::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: -1;
}
h1 {
  color: #ffd700;
  font-size: 2.5rem;
  background:
    linear-gradient(
      45deg,
      #ffd700,
      #ffed4e,
      #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
@keyframes goldShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
b {
  color: #ffd700;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
a {
  color: #d4af37;
  text-decoration-line: underline;
  text-underline-offset: 3px;
  text-decoration-color: #b8860b;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
a:hover {
  color: #ffd700;
  text-decoration-color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.server-status {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}
.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 120px;
  justify-content: center;
  border: 2px solid;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-badge.online {
  background:
    linear-gradient(
      135deg,
      rgba(34, 139, 34, 0.9) 0%,
      rgba(0, 100, 0, 0.9) 100%);
  border-color: #32cd32;
  color: #90ee90;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(50, 205, 50, 0.3);
}
.status-badge.offline {
  background:
    linear-gradient(
      135deg,
      rgba(139, 0, 0, 0.9) 0%,
      rgba(100, 0, 0, 0.9) 100%);
  border-color: #dc143c;
  color: #ff6b6b;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(220, 20, 60, 0.3);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.status-badge.online .status-dot {
  background: #4caf50;
}
.status-badge.offline .status-dot {
  background: #f44336;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.player-count {
  font-size: 0.8rem;
  opacity: 0.9;
}
.music-control {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}
.music-toggle {
  background:
    linear-gradient(
      135deg,
      #8b4513 0%,
      #a0522d 50%,
      #8b4513 100%);
  color: #ffd700;
  border: 2px solid #b8860b;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
.music-toggle:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(255, 215, 0, 0.3);
  color: #ffff00;
  border-color: #ffd700;
}
.music-toggle:active {
  transform: translateY(0);
}
.globe-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
  position: relative;
}
.globe-container::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background:
    linear-gradient(
      45deg,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 25%,
      transparent 75%,
      rgba(255, 215, 0, 0.1) 100%);
  border-radius: 20px;
  z-index: -1;
}
.globe-section {
  flex: 1;
  max-width: 500px;
}
.stats-panel {
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.95) 0%,
      rgba(42, 42, 42, 0.95) 50%,
      rgba(26, 26, 26, 0.95) 100%);
  border: 2px solid #b8860b;
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 300px;
  max-width: 350px;
  max-height: 600px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(184, 134, 11, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.stats-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      45deg,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 25%,
      transparent 75%,
      rgba(255, 215, 0, 0.05) 100%);
  border-radius: 10px;
  pointer-events: none;
}
.stats-panel h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: center;
  flex-shrink: 0;
  font-family: "Cinzel", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
}
.stats-section {
  margin-bottom: 1.5rem;
}
.stats-section:last-child {
  margin-bottom: 0;
}
.stats-section h4 {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}
.country-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  max-height: 200px;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.country-stats::-webkit-scrollbar {
  width: 6px;
}
.country-stats::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.country-stats::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.country-stats::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      135deg,
      #5a6fd8 0%,
      #6a4190 100%);
}
.country-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border-radius: 8px;
  border: 1px solid rgba(184, 134, 11, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.country-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 215, 0, 0.1) 50%,
      transparent 100%);
  transition: left 0.5s ease;
}
.country-stat:hover::before {
  left: 100%;
}
.country-stat:hover {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 215, 0, 0.05) 100%);
  transform: translateX(5px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.country-stat:first-child {
  background:
    linear-gradient(
      135deg,
      rgba(255, 107, 107, 0.2) 0%,
      rgba(238, 90, 36, 0.2) 100%);
  border-color: rgba(255, 107, 107, 0.3);
}
.country-stat:nth-child(2) {
  background:
    linear-gradient(
      135deg,
      rgba(255, 193, 7, 0.2) 0%,
      rgba(255, 152, 0, 0.2) 100%);
  border-color: rgba(255, 193, 7, 0.3);
}
.country-stat:nth-child(3) {
  background:
    linear-gradient(
      135deg,
      rgba(76, 175, 80, 0.2) 0%,
      rgba(139, 195, 74, 0.2) 100%);
  border-color: rgba(76, 175, 80, 0.3);
}
.country-stat.all-time {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}
.country-stat.all-time:hover {
  background: rgba(255, 255, 255, 0.08);
}
.country-flag {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}
.country-name {
  flex: 1;
  text-align: left;
  color: #ccc;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.country-count {
  background:
    linear-gradient(
      135deg,
      #ff6b6b 0%,
      #ee5a24 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  min-width: 2rem;
  text-align: center;
  flex-shrink: 0;
}
.country-count.top-1 {
  background:
    linear-gradient(
      135deg,
      #ff6b6b 0%,
      #ee5a24 100%);
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}
.country-count.top-2 {
  background:
    linear-gradient(
      135deg,
      #ffc107 0%,
      #ff9800 100%);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}
.country-count.top-3 {
  background:
    linear-gradient(
      135deg,
      #4caf50 0%,
      #8bc34a 100%);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}
.country-count.all-time {
  background:
    linear-gradient(
      135deg,
      #9c27b0 0%,
      #673ab7 100%);
  font-size: 0.8rem;
}
.country-count.all-time.top-1 {
  background:
    linear-gradient(
      135deg,
      #9c27b0 0%,
      #673ab7 100%);
  box-shadow: 0 2px 8px rgba(156, 39, 176, 0.4);
}
.country-count.all-time.top-2 {
  background:
    linear-gradient(
      135deg,
      #673ab7 0%,
      #3f51b5 100%);
  box-shadow: 0 2px 8px rgba(103, 58, 183, 0.4);
}
.country-count.all-time.top-3 {
  background:
    linear-gradient(
      135deg,
      #3f51b5 0%,
      #2196f3 100%);
  box-shadow: 0 2px 8px rgba(63, 81, 181, 0.4);
}
.more-countries-indicator {
  text-align: center;
  padding: 0.5rem;
  color: #888;
  font-size: 0.8rem;
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
}
.no-stats {
  color: #666;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}
.server-info-link,
.guide-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background:
    linear-gradient(
      135deg,
      #8b4513 0%,
      #a0522d 50%,
      #8b4513 100%);
  color: #ffd700;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #b8860b;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.server-info-link::before,
.guide-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 215, 0, 0.2) 50%,
      transparent 100%);
  transition: left 0.5s ease;
}
.server-info-link:hover::before,
.guide-link:hover::before {
  left: 100%;
}
.server-info-link:hover,
.guide-link:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(255, 215, 0, 0.3);
  text-decoration: none;
  color: #ffff00;
  border-color: #ffd700;
}
.rates {
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.8) 0%,
      rgba(42, 42, 42, 0.8) 100%);
  border: 2px solid #b8860b;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(184, 134, 11, 0.2);
  position: relative;
}
.rates::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      45deg,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 25%,
      transparent 75%,
      rgba(255, 215, 0, 0.05) 100%);
  border-radius: 10px;
  pointer-events: none;
}
.rates h2 {
  color: #ffd700;
  font-family: "Cinzel", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.rates p {
  color: #d4af37;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.links {
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.8) 0%,
      rgba(42, 42, 42, 0.8) 100%);
  border: 2px solid #b8860b;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(184, 134, 11, 0.2);
  position: relative;
}
.links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      45deg,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 25%,
      transparent 75%,
      rgba(255, 215, 0, 0.05) 100%);
  border-radius: 10px;
  pointer-events: none;
}
.links h2 {
  color: #ffd700;
  font-family: "Cinzel", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.links a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  background:
    linear-gradient(
      135deg,
      #8b4513 0%,
      #a0522d 50%,
      #8b4513 100%);
  color: #ffd700;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #b8860b;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.links a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(255, 215, 0, 0.3);
  color: #ffff00;
  border-color: #ffd700;
}
.social-widgets {
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.8) 0%,
      rgba(42, 42, 42, 0.8) 100%);
  border: 2px solid #b8860b;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(184, 134, 11, 0.2);
  position: relative;
}
.social-widgets::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      45deg,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 25%,
      transparent 75%,
      rgba(255, 215, 0, 0.05) 100%);
  border-radius: 10px;
  pointer-events: none;
}
.social-widgets h2 {
  color: #ffd700;
  font-family: "Cinzel", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.widgets-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.discord-widget,
.telegram-widget {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(184, 134, 11, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.discord-widget::before,
.telegram-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 215, 0, 0.1) 50%,
      transparent 100%);
  transition: left 0.5s ease;
}
.discord-widget:hover::before,
.telegram-widget:hover::before {
  left: 100%;
}
.discord-widget:hover,
.telegram-widget:hover {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 215, 0, 0.05) 100%);
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.discord-widget h3,
.telegram-widget h3 {
  color: #ffd700;
  font-family: "Cinzel", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.discord-info,
.telegram-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.discord-icon,
.telegram-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      rgba(255, 215, 0, 0.2) 0%,
      rgba(255, 215, 0, 0.1) 100%);
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.3);
}
.discord-details,
.telegram-details {
  flex: 1;
}
.discord-details h4,
.telegram-details h4 {
  color: #ffd700;
  font-family: "Cinzel", serif;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.discord-status,
.telegram-subscribers {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}
.status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.status-indicator.online {
  background: #4caf50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
  animation: pulse 2s infinite;
}
.subscriber-count {
  color: #ffd700;
  font-weight: bold;
}
.discord-join-btn,
.telegram-join-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background:
    linear-gradient(
      135deg,
      #8b4513 0%,
      #a0522d 50%,
      #8b4513 100%);
  color: #ffd700;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #b8860b;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  text-align: center;
  position: relative;
  z-index: 1;
}
.discord-join-btn:hover,
.telegram-join-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(255, 215, 0, 0.3);
  color: #ffff00;
  border-color: #ffd700;
  text-decoration: none;
}
footer {
  margin-top: 3rem;
  padding: 2rem;
  border-top: 2px solid #b8860b;
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.8) 0%,
      rgba(42, 42, 42, 0.8) 100%);
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      45deg,
      rgba(255, 215, 0, 0.03) 0%,
      transparent 25%,
      transparent 75%,
      rgba(255, 215, 0, 0.03) 100%);
  pointer-events: none;
}
footer p {
  color: #d4af37;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .globe-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .stats-panel {
    min-width: 280px;
    max-width: 100%;
  }
  .globe-section canvas {
    width: 300px !important;
    height: 300px !important;
  }
  .server-status {
    position: static;
    margin-bottom: 1rem;
  }
  .music-control {
    position: static;
    margin-bottom: 1rem;
  }
  .widgets-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .discord-widget,
  .telegram-widget {
    padding: 1rem;
  }
  .discord-info,
  .telegram-info {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .discord-icon,
  .telegram-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .globe-section canvas {
    width: 250px !important;
    height: 250px !important;
  }
  .stats-panel {
    padding: 1rem;
  }
  .country-stat {
    padding: 0.5rem;
  }
  .country-flag {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
  .status-badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
  .music-toggle {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}
/*# sourceMappingURL=index.css.map */
