/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(-45deg, #0a0a0a, #151515, #0d0d0d, #1a1a1a);
  background-size: 400% 400%;
  animation: bgMove 14s ease infinite, fadeIn 1s ease-in;
  color: #f2f2f2;
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* Animations */
@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(25px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes glow { 
  0% { text-shadow: 0 0 6px #aaa; } 
  50% { text-shadow: 0 0 22px #bbb; } 
  100% { text-shadow: 0 0 6px #aaa; } 
}

/* Header */
header {
  padding: 2.5rem 2rem;
  text-align: center;
  background: rgba(12, 12, 12, 0.9);
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
nav a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}
nav a:hover {
  color: #fff;
  transform: scale(1.08);
}

/* Titles */
h1 {
  font-size: 3.2rem;
  color: #e0e0e0;
  font-weight: 700;
  animation: glow 2.5s infinite;
}
h2 {
  color: #d0d0d0;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
p {
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Buttons */
.btn {
  background: #2a2a2a;
  color: #f2f2f2;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.8rem;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn:hover {
  background: #3a3a3a;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

/* Fake Embed Preview */
.fake-embed {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 1.5rem;
  max-width: 750px;
  margin: 2rem auto;
  text-align: left;
  white-space: pre-line;
  font-family: Consolas, monospace;
  animation: slideUp 0.9s ease-out;
  border: 1px solid #222;
  color: #ccc;
}

/* Sections */
.container { max-width: 1150px; margin: 0 auto; padding: 2rem; }
.section { margin-bottom: 5rem; }
.section-title { text-align: center; margin-bottom: 1.5rem; }

/* Tabs */
.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.tab {
  background: #1c1c1c;
  border: none;
  color: #ddd;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}
.tab:hover { background: #2a2a2a; }
.tab.active { background: #444; color: #fff; }

/* Command List */
.cmds { list-style: none; padding: 0; }
.cmds li {
  background: #141414;
  margin: 0.4rem 0;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  transition: 0.3s ease;
  color: #ccc;
}
.cmds li:hover {
  background: #222;
  transform: translateX(6px);
}

/* About Cards */
.card {
  background: #131313;
  padding: 1.8rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  animation: slideUp 0.9s ease-out;
  border: 1px solid #222;
  transition: 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}
.card h3 {
  color: #e0e0e0;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #222;
  margin-top: 2rem;
}
footer a {
  color: #bbb;
  text-decoration: none;
  font-weight: 500;
}
footer a:hover { text-decoration: underline; }
