/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body with soft blue gradient */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(-45deg, #1e3c72, #2a5298, #6a82fb, #b2fefa);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

/* Gradient animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header */
header {
  text-align: center;
  padding: 50px 20px;
  background: rgba(0,0,0,0.3);
  border-bottom: 3px solid #6a82fb;
}

header h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #b2fefa;
  text-shadow: 2px 2px 6px #000;
}

header p {
  font-size: 20px;
  color: #e0f7fa;
}

/* Navigation */
nav {
  background-color: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px;
}

nav a {
  color: #fffacd;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease, color 0.3s ease;
}

nav a:hover {
  color: #b2fefa;
  transform: translateY(-4px); /* jump effect */
}

/* Main content */
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 30px;
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

section {
  margin-bottom: 40px;
}

h2 {
  color: #b2fefa;
  margin-bottom: 12px;
  text-shadow: 1px 1px 4px #000;
}

/* Lists */
ul {
  list-style: none;
  padding-left: 0;
}

li {
  font-size: 18px;
  margin-bottom: 8px;
}

/* IP Box */
.ip-box {
  background: linear-gradient(135deg, #6a82fb, #b2fefa);
  color: #1e3c72;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.ip-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}

/* Buttons */
button, .store-button, .discord-login {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

button:hover, .store-button:hover, .discord-login:hover {
  background: linear-gradient(135deg, #6a82fb, #b2fefa);
  color: #1e3c72;
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(0,0,0,0.4);
  color: #fffacd;
  margin-top: 40px;
  border-top: 3px solid #6a82fb;
}