/* === STYLE FUTURISTE ULTRA ✨ === */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Inter:wght@400;600&display=swap');

:root {
  --bg: #0a0f1d;
  --bg-secondary: #11182e;
  --text: #e3e3e3;
  --accent: #4bc3ff;
  --accent-dark: #2f85a4;
  --glow: 0 0 12px var(--accent);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(ellipse at top left, #101628, #06090f 90%);
  color: var(--text);
  padding: 20px;
  animation: fadeIn 1.2s ease;
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #00f0ff33, transparent 25%, #00f0ff33);
  animation: rotateBackground 60s linear infinite;
  z-index: 0;
  opacity: 0.05;
}

header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 40px 0 20px;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3em;
  color: var(--accent);
  text-shadow: 0 0 25px var(--accent-dark);
  animation: floatText 4s infinite ease-in-out;
}

header p {
  color: #aaa;
  font-size: 1.2em;
  margin-top: 10px;
}

nav {
  z-index: 1;
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(21, 26, 38, 0.9);
  padding: 14px 28px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.08);
  margin-bottom: 35px;
}

nav ul li a {
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
  overflow: hidden;
}

nav ul li a::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  transition: 0.4s ease;
  opacity: 0.2;
}

nav ul li a:hover::before {
  left: 0;
}

nav ul li a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent);
}

main section {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 40px;
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1.2s ease forwards;
}

main section:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px var(--accent-dark);
}

.download, .script a {
  display: inline-block;
  margin-top: 16px;
  background: var(--accent);
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px var(--accent);
}

.download:hover, .script a:hover {
  background: var(--accent-dark);
  color: white;
  box-shadow: 0 0 25px var(--accent-dark);
  transform: scale(1.05);
}

footer {
  text-align: center;
  margin-top: 50px;
  color: #888;
  font-size: 0.9em;
  z-index: 1;
  position: relative;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes rotateBackground {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav ul li a {
    width: 100%;
    text-align: center;
  }
}
