* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #1e1e2e 0%, #2a2845 100%);
  color: #cdd6f4;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px;
  flex: 1;
  width: 100%;
}

header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
}

.logo-main {
  width: 292px;
  height: 118px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tagline {
  font-size: 16px;
  color: #a6adc8;
}

.description {
  background: rgba(45, 49, 69, 0.5);
  border: 1px solid #45475a;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
  color: #bac2de;
  line-height: 1.7;
}

.section-title {
  font-size: 19px;
  color: #f5ad56;
  margin-bottom: 16px;
  margin-top: 24px;
}

.webserver-list {
  background: rgba(30, 30, 46, 0.5);
  border: 1px solid #313244;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 32px;
}

.webserver-item {
  padding: 20px 24px;
  border-bottom: 1px solid #313244;
  transition: background 0.2s;
}

.webserver-item:last-child {
  border-bottom: none;
}

.webserver-item:hover {
  background: rgba(45, 49, 69, 0.4);
}

.ws-name {
  font-weight: 600;
  color: #f5ad56;
  font-size: 16px;
}

.ws-url {
  color: #89b4fa;
  font-size: 13px;
  font-family: 'Courier New', monospace;
  margin-top: 4px;
  text-decoration: none;
  transition: color 0.2s;
}

.ws-url:hover {
  color: #f5ad56;
}

.section-support {
  margin-bottom: 32px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f5ad56, #fab387);
  color: #1e1e2e;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
  font-size: 16px;
}

.button:hover {
  box-shadow: 0 4px 12px rgba(245, 173, 86, 0.3);
}

.button:active {
  transform: translateY(2px);
}

footer {
  text-align: center;
  padding: 32px 24px;
  margin-top: auto;
  border-top: 1px solid #45475a;
  color: #6c7086;
  font-size: 13px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .container {
    padding: 20px 16px;
  }

  header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .logo-main {
    margin-bottom: 20px;
  }
  
  .description {
	padding: 28px;
	text-align: center;
  }

  .section-title {
	text-align: center;
    margin-top: 16px;
    margin-bottom: 12px;
  }

  .webserver-item {
	text-align: center;
    padding: 16px 12px;
  }

  footer {
    padding: 20px 16px;
  }
}