@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:wght@300;400;700&display=swap');

:root {
  --val-red: #ff4655;
  --val-dark: #0f1923;
  --val-darker: #111111;
  --val-light: #ece8e1;
  --val-gray: #333333;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--val-dark);
  color: var(--val-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

a {
  color: var(--val-red);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ff7b85;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: var(--val-darker);
  padding: 20px 0;
  border-bottom: 2px solid var(--val-red);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.logo h1 {
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: var(--val-light);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

nav ul li a:hover {
  color: var(--val-red);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('bot_banner.png') center/cover no-repeat;
  opacity: 0.15;
  z-index: -1;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.btn {
  display: inline-block;
  background-color: var(--val-red);
  color: var(--val-light);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 15px 35px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

/* Document Pages (ToS / Privacy) */
.document {
  padding: 60px 0;
}

.document h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--val-gray);
  padding-bottom: 10px;
  color: var(--val-red);
}

.document h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px 0;
  color: var(--val-light);
}

.document p, .document ul {
  margin-bottom: 20px;
  color: #ccc;
}

.document ul {
  padding-left: 20px;
}

.document ul li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: var(--val-darker);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--val-gray);
  margin-top: 40px;
}

footer p {
  color: #888;
  font-size: 0.9rem;
}
