@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0d0d0d;
  --bg-alt: #141414;
  --text: #e8e8e8;
  --muted: #a0a0a0;
  --accent: #d71759;
  --border: #252525;
  --max-width: 780px;
}

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

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--muted);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1rem 3rem;
}

body::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), #ff3f7f, var(--accent));
}

header {
  text-align: center;
  padding: 3rem 1rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0em;
  font-weight: 700;
  font-variant: small-caps;
  color: #fff;
}

.subtitle {
  color: var(--muted);
  font-size: 1.05rem;
}

nav {
  text-align: center;
  margin-top: 1.8rem;
}
nav a {
  margin: 0 0.8rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
nav a:hover {
  color: var(--accent);
}

main {
  padding-top: 3rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.2rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  z-index: 1;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.55em;
  background: var(--accent);
  z-index: -1;
  border-radius: 2px;
}

p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
li {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
}
.bullet::before {
  content: "• ";
  color: var(--accent);
}

.block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.4rem;
  border-radius: 4px;
}

footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}
footer a {
  color: var(--muted);
  margin: 0 0.4rem;
}
footer a:hover {
  color: var(--accent);
}

/* Social Buttons */
.rounded-social-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-button:hover {
  background: #ff3f7f;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  header {
    padding-top: 2rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  nav a {
    display: inline-block;
    margin: 0.4rem;
  }
}
