/* ----- ROOT COLORS ----- */
:root {
  --bg-main: #0b0b14;
  --bg-panel: #151524;
  --accent-main: #6b4cff;
  --accent-soft: #9d8cff;
  --gold: #c9b36d;
  --text-main: #ffffff;
  --text-muted: #b8b8d4;
}

/* ----- GENERAL ----- */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top, #1a1633 0%, var(--bg-main) 60%);
  color: var(--text-main);
  overflow-x: hidden;
}

/* STAR CANVAS */
#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* HERO */
header {
  text-align: center;
  padding: 100px 20px 60px;
}

#stolasLogo {
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 0 25px var(--accent-main));
}

h1, h2, nav a {
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
}

/* NAVIGATION */
nav {
  position: sticky;
  top: 0;
  background: linear-gradient(to right, var(--bg-panel), #1a1633);
  border-bottom: 1px solid rgba(107,76,255,0.3);
  text-align: center;
  padding: 10px;
  z-index: 100;
}

nav a {
  color: var(--text-main);
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ff5e5e;
}

/* SECTIONS */
section {
  max-width: 900px;
  margin: 40px auto;
  padding: 60px 20px;
  text-align: center;
  background: rgba(21,21,36,0.6);
  border: 1px solid rgba(107,76,255,0.2);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(107,76,255,0.15);
}

/* SOCIAL BUTTONS */
.social-links {
  margin-top: 30px;
}

.social-button {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 15px;
  font-size: 32px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 10px black;
  border: 2px solid rgba(201,179,109,0.3);
}

.social-button:hover {
  transform: scale(1.2);
  box-shadow: 0 0 25px var(--accent-main);
}

.tiktok { background: #69C9D0; }
.youtube { background: #FF0000; }
.discord { background: #5865F2; }

/* MUSIC SECTION */
#music-section input[type="text"] {
  width: 60%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #555;
  margin-top: 15px;
}

#music-section button {
  margin: 10px 5px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: var(--accent-main);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#music-section button:hover {
  background: var(--accent-soft);
}

/* FOOTER */
footer {
  background: var(--bg-panel);
  text-align: center;
  padding: 15px;
  color: var(--text-muted);
}

/* RESPONSIVE YOUTUBE */
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  aspect-ratio: 16 / 9;
}
