/* NEXORO Hosting Central Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

/* ========== Root Variables ========== */
:root {
  --bg-gradient: linear-gradient(120deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  --header-bg: linear-gradient(90deg, #04f5e9 0%, #0f0c29 100%);
  --footer-bg: linear-gradient(90deg, #0f0c29 0%, #302b63 100%);

  --text-color: #00f7ff;
  --footer-color: #fff;

  --accent: #f50b0b;
  --container-bg: rgba(15, 12, 41, 0.95);

  --nav-link: #fff;
  --nav-link-hover: #f50b0b;
}

/* ========== Global Styles ========== */
body {
  font-family: 'Orbitron', sans-serif;
  background: var(--bg-gradient);
  color: var(--text-color);
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ========== Header ========== */
header {
  background: var(--header-bg);
  color: var(--text-color);
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 2px solid var(--text-color);
  box-shadow: 0 0 24px #00f7ff44;
}

/* ========== Navigation ========== */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

nav a {
  color: var(--nav-link);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0 1rem;
  letter-spacing: 1px;
  transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
  color: var(--nav-link-hover);
  text-shadow: 0 0 8px var(--nav-link-hover);
}

/* ========== Container ========== */
.container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--container-bg);
  border-radius: 18px;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 24px #00f7ff44;
  animation: fadeIn 1.2s ease;
}

/* ========== Typography ========== */
h1 {
  font-size: 2.8rem;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

section {
  margin-bottom: 2.5rem;
}

ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* ========== Footer ========== */
footer {
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  color: var(--footer-color);
  background: var(--footer-bg);
  border-top: 2px solid var(--text-color);
  box-shadow: 0 0 24px #00f7ff44;
}

/* ========== Buttons ========== */
.button,
button,
input[type="submit"] {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7em 2em;
  font-size: 1.1rem;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 12px #f50b0b44;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 4px 24px #f50b0b88;
  transform: translateY(-2px) scale(1.04);
}

/* ========== Cards ========== */
.card {
  background: rgba(36, 36, 62, 0.98);
  border-radius: 14px;
  box-shadow: 0 4px 24px #302b6344;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s, transform 0.2s;
  animation: fadeIn 1.2s ease;
}

.card:hover {
  box-shadow: 0 8px 32px #04f5e988;
  transform: translateY(-4px) scale(1.02);
}

/* ========== Fade-In Animation ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Responsive ========== */
@media (max-width: 700px) {
  .container {
    padding: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  }
