@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

body {
  margin: 0;
  font-family: "Lexend", sans-serif;
  color: #ffffff;
  background-color: #000;
  background-image: url('assets/images/bg.png');
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
}

/* Animated background */

section h1 {
  color: #ff4d6d;
}

nav {
  background: black;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 15px rgba(255, 77, 109, 0.2);
}

.home:hover {
  transform: scale(1.03);
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #ff4d6d;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  font-size: 15px;
}

.nav-links a:hover {
  color: #ff4d6d;
  transform: scale(1.03);
}

section {
  background: black;
  margin: 50px auto;
  padding: 40px;
  width: 80%;
  border-radius: 15px;
  border-style: solid;
  border-width: 3px;
  border-color: #ccc;
}

.gsection {
  height: 70vh;
  overflow-y: auto;
}

p {
  font-family: "Lexend", sans-serif;
  color: #ccc;
}

h3 {
  color: white;
  font-family: "Lexend", sans-serif;
}
button {
  display: inline-block;
  margin: 4px;
  padding: 15px;
  background-color: #1c1c1c;
  color: white;
  font-size: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-style: solid;
  border-width: 2px;
  border-color: #ff4d6d;
}

button:hover {
  background-color: #555555;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.search-section {
  max-width: 700px;
  margin: 120px auto;
  padding: 50px;
  background: #111;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.search-section h1 {
  color: #ff4d6d;
  font-size: 36px;
  margin-bottom: 10px;
}

.search-section p {
  color: #ccc;
  margin-bottom: 30px;
}

/* SEARCH BOX */
.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  padding: 15px;
  border-radius: 10px;
  border: none;
  background: #1a1a1a;
  color: #888;
  font-size: 16px;
}

.search-box button {
  padding: 15px 25px;
  border-radius: 10px;
  border: none;
  background: #ff1e56;
  color: white;
  font-size: 16px;
  cursor: not-allowed;
  opacity: 0.7;
}

/* NOTICE BOX */
.notice {
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid #ff4d6d;
  background: #1a1a1a;
  border-radius: 8px;
}

.notice p {
  color: #aaa;
  font-size: 14px;
}

.settings-section {
  margin-top: 20px;
  padding: 15px;
  background-color: #111;
  border-radius: 8px;
}

.settings-section h2 {
  margin-top: 0;
}

.settings-section button {
  padding: 8px 14px;
  background-color: #444;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.settings-section button:hover {
  background-color: #666;
}

.settings-section .note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #aaa;
}

/* background */
#vanta-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

/* flow background */
#content {
  position: relative;
  z-index: 1;
}


