* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #1b1b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  padding: 20px;
}

.container {
  background: #242424;
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.badge {
  display: inline-block;
  background: #ff9000;
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

h1 {
  font-size: 30px;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 13px;
  color: #888;
  margin-bottom: 36px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: filter 0.15s ease, transform 0.15s ease;
  text-align: left;
}

.link-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.link-btn .icon {
  font-size: 20px;
  flex-shrink: 0;
}

.link-btn .label {
  flex: 1;
}

.link-btn .arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
}

.link-btn.website {
  background: #ff9000;
  color: #000;
}

.link-btn.website .arrow {
  color: rgba(0,0,0,0.4);
}

.link-btn.bot {
  background: #2a2a2a;
  color: #ff9000;
  border: 2px solid #ff9000;
}

.link-btn.backup {
  background: #2a2a2a;
  color: #fff;
  border: 1px solid #3a3a3a;
}

.link-btn.support {
  background: #1e1e1e;
  color: #aaa;
  border: 1px solid #2e2e2e;
}

.footer {
  margin-top: 28px;
  font-size: 11px;
  color: #444;
  letter-spacing: 1px;
}

@media (max-width: 480px) {
  .container {
    padding: 32px 20px;
  }

  h1 {
    font-size: 22px;
  }

  .link-btn {
    font-size: 14px;
    padding: 14px 16px;
  }
}
