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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: #fff;
  background: #500d6b;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-weight: 400;
}

ul {
  list-style: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fce046;
  color: #500d6b;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  border-bottom: 2px solid #febe29;
  border-left: 2px solid #febe29;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  width: fit-content;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(252, 224, 70, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fce046;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 8px;
  border: 2px solid #fce046;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline:hover {
  background: #fce046;
  color: #500d6b;
}

@media (max-width: 768px) {
  .btn-primary {
    font-size: 16px;
    padding: 10px 24px;
  }

  .btn-outline {
    font-size: 14px;
    padding: 10px 24px;
  }
}

.is-hidden {
  display: none !important;
}
