* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
  position: relative;
}

/* Epique watermark background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("images/epique-logo.png") center no-repeat;
  background-size: 320px;
  opacity: 0.05;
  z-index: -1;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.profile {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  padding: 14px 20px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: 0.2s ease;
}

.primary {
  background: #000;
  color: #fff;
}

.primary:hover {
  background: #333;
}

.secondary {
  border: 2px solid #000;
  color: #000;
  background: transparent;
}

.secondary:hover {
  background: #000;
  color: #fff;
}

@media (min-width: 600px) {
  .buttons {
    flex-direction: row;
    justify-content: center;
  }
}
