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

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
  font-family: 'Rajdhani', sans-serif;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  text-align: center;
}

.card {
  background: rgba(20, 20, 35, 0.9);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 16px;
  padding: 40px 50px;
  max-width: 420px;
  box-shadow:
    0 0 40px rgba(255, 107, 53, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 14px;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.inviter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid rgba(255, 107, 53, 0.4);
}

.inviter-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.inviter-name {
  font-size: 20px;
  font-weight: 700;
  color: #ff8c42;
}

.invited-you {
  font-size: 16px;
  color: #aaa;
}

.join-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 50px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.join-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 35px rgba(255, 107, 53, 0.6);
  animation: none;
}

.join-btn:active {
  transform: translateY(0) scale(0.98);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 40px rgba(255, 107, 53, 0.6), 0 0 60px rgba(255, 107, 53, 0.2);
    transform: scale(1.03);
  }
}

.server-info {
  margin-top: 25px;
  font-size: 14px;
  color: #666;
}

.server-label {
  margin-right: 8px;
}

.server-info code {
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: monospace;
  color: #888;
}

.server-name {
  margin-top: 6px;
  font-size: 15px;
  color: #ff8c42;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.steam-link {
  color: #66c0f4;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.steam-link:hover {
  color: #a4d7f5;
}

.pirate-note {
  margin-top: 6px;
  font-size: 12px;
  color: #555;
  font-style: italic;
}

.site-link {
  display: inline-block;
  margin-top: 25px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.site-link:hover {
  color: #ff8c42;
}
