/* Logo Styles */
.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  height: 50px;
  width: auto;
}

/* Discord Invite Widget Styles */
.discord-invite-widget {
  background: #e63027;
  border-radius: 8px;
  padding: 24px;
  max-width: 400px;
  width: 100%;
  color: white;
  font-family: 'Whitney', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.discord-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.discord-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 24px;
}

.discord-server-info h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.discord-server-info .server-id {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}

.discord-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.discord-members {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.members-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.9;
}

.members-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: transform 0.2s ease;
}

.member-avatar:hover {
  transform: scale(1.1);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.member-status {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
}

.status-online { background-color: #3ba55c; }
.status-idle { background-color: #faa61a; }
.status-dnd { background-color: #ed4245; }
.status-offline { background-color: #747f8d; }

.discord-invite-button {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.discord-invite-button:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.loading {
  text-align: center;
  padding: 40px;
  font-size: 16px;
  opacity: 0.8;
}

.error {
  text-align: center;
  padding: 40px;
  color: white;
  font-size: 16px;
}

/* Responsive design */
@media (max-width: 480px) {
  .discord-invite-widget {
    padding: 20px;
    margin: 16px;
  }
  
  .discord-header h2 {
    font-size: 20px;
  }
  
  .stat-number {
    font-size: 24px;
  }
}

/* Animation for loading */
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.loading {
  animation: pulse 2s infinite;
}
