/***** STD *****/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100vh;
  font-size: 1.6rem;
  color: white;
  font-family: "Raleway", system-ui;
  font-weight: 400;
  background-color: black;
  background-image: url('./assets/images/bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: white;
  cursor: pointer;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

h3 {
  color: #c08905;
}

.logo {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 4rem auto 4rem;
}

img {
  width: 100%;
  height: 100%;
}

.external-links {
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 4rem;
  gap: 1rem;
}

.external-links a {
  min-width: 280px;
  padding: 1rem 2rem;
  background-color: #03031b;
  border: 1px solid #663333;
  border-radius: 1rem;
  transition: all .3s ease;
}

.external-links a:hover {
  background-color: #0a0a33;
  transition: all .3s ease;
}

a.raffle-bg {
  background-color: #78675f;
}

a.raffle-bg:hover {
  background-color: #a79085;
  transition: all .3s ease;
}

a.green-link {
  color: #28e30f;
}

.accordion-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

.accordion-wrapper h3 {
  margin-bottom: 1rem;
}

.accordion-wrapper .line {
  display: inline-block;
  width: 280px;
  height: 8px;
  background-color: #03031b;
  border-radius: 1rem;
  border: 1px solid #663333;
  margin: 0 auto 2rem;
}

.tab {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: left;
}

.tab input {
  position: absolute; 
  opacity: 0;
  z-index: -1;
}

.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}

.tab input:checked ~ .tab__content {
  max-height: 30rem;
}

.accordion {
  color: var(--theme);
  border: 2px solid;
  border-radius: 0.5rem;
  overflow: hidden;
}

.tab__label,
.tab__close {
  display: flex;
  color: white;
  background: var(--theme);
  cursor: pointer;
}

.tab__label {
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  line-height: 2.2rem;
}

.tab__label::before {
  content: url("./assets/svg/arrow.svg");
  display: inline-block;
  position: relative;
  min-width: 1.4rem;
  height: 2.2rem;
  text-align: center;
  transform: rotate(0deg);
  transition: all 0.35s;
}

.tab input:checked + .tab__label::before {
  transform: rotate(90deg);
}

.tab__content a {
  color: #78675f;
  text-decoration: underline;
  font-weight: bold;
  transition: all .3s ease;
}

.tab__content a:hover {
  color: #a79085;
  transition: all .3s ease;
}

.tab__content p {
  margin: 0;
  padding: 1rem;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #78675f;
  font-weight: 500;
}

.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.tab:last-child {
  margin-bottom: 4rem;
}

.accordion--radio {
  --theme: var(--secondary);
}

.tab input:not(:checked) + .tab__label:hover::before {
  animation: bounce .5s infinite;
}

@media (min-width: 480px) {
  .tab {
    align-items: center;
  }
}

@media (min-width: 768px) {
  body{
    background-image: url('./assets/images/bg-web.jpg');
  }
}