/* Variable Declarations */
:root {
  --primary-color: #232323;
  --secondary-color: #4b0bff;
  --red: #b51f1f;
  --white: #fff;
  --black: #04030c;
}

/* Global Styles */
body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Container Styles */
.content-max div {
  max-width: 1100px;
  margin: 0 auto;
}

.content-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.content-container {
  background: transparent url('../assets/background.png') 0% 0% no-repeat
    padding-box;
  background-size: 100% auto;
  height: 100vh;
}

.reverse {
  display: flex;
  flex-direction: column;
}

/* Button Styles */
button {
  padding: 0.5em 1em;
  background-color: var(--secondary-color);
  color: var(--text-white);
  font-family: 'Roboto';
  font-weight: bold;
}

/* 
  Bonus Section Styles  
*/

/* Bonus Container Styles */
.bonus-container {
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/background-raios.png'),
    url('../assets/background-bonus.png');
  opacity: 1;
  background-size: cover, cover;
  background-position: center, center;
  background-color: rgba(255, 0, 61, 0.8);
  position: relative;
}

/* Bonus Content Section Styles */
.bonus-content-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}

/* Bonus Image Styles */
.bonus-image {
  width: 300px;
  max-width: 100%;
}

/* Bonus Button Styles */
.bonus-button {
  width: 253px !important;
  height: 45px !important;
  background: transparent linear-gradient(262deg, #e11033 0%, #fc0677 100%) 0%
    0% no-repeat padding-box;
  box-shadow: 0px 3px 24px #d989d9;
  border: 3px solid #ffffff;
  border-radius: 8px;
  opacity: 1;
  text-transform: uppercase;
  cursor: pointer;
}

/* Floating Button Styles */
.floating-button {
  height: 45px;
  background: transparent linear-gradient(262deg, #5907ff 0%, #1728ff 1000%) 0%
    0% no-repeat padding-box;
  box-shadow: 0px 3px 24px #3172ff;
  border: 3px solid #ffffff;
  border-radius: 8px;
  opacity: 1;
  text-transform: uppercase;
  cursor: pointer;
}

/* Cotação */
.price-container {
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent
    linear-gradient(49deg, #00dcff 1%, #6500ff 50%, #3172ff 1000%) 0% 0%
    no-repeat padding-box;
  position: relative;
}

/* Media Queries for Responsive Design */
@media only screen and (max-width: 1000px) {
  /* Styles for screens with a maximum width of 1000px */
  .reverse {
    flex-direction: column-reverse;
  }

  .sub-header-content div {
    margin-bottom: 20px;
  }

  .content-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }

  .title-container,
  .players-container {
    width: 100%;
    text-align: center;
  }

  .players-container img {
    max-width: 500px;
    height: auto;
  }

  .title-section {
    justify-content: center;
    width: 80%;
  }
  .player-section {
    justify-content: center;
    width: 100%;
  }

  .bonus-container {
    margin-top: 70px;
    height: 55vh;
  }

  .bonus-content-section {
    text-align: center;
  }

  .bonus-image {
    position: absolute;
    top: 10%;
    width: 300px;
    max-width: 100%;
  }

  .floating-button {
    width: 100%;
  }

  .slots-section {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    z-index: 1;
  }

  .floating-button {
    position: absolute;
    top: -7%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 300px;
  }

  .price-container {
    padding-top: 15%;
  }

  .price-section > img {
    position: absolute;
    bottom: 0;
    transform: translateX(-97%);
    width: 100%;
    max-width: 300px;
  }

  .price-content-image {
    width: 100%;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
  }

  .price-image {
    width: 90%;
    max-width: 100%;
    z-index: 1;
  }
}

@media only screen and (min-width: 1000px) {
  /* Styles for screens with a minimum width of 1000px */
  .title-container {
    margin-left: auto;
    z-index: 2;
  }

  .title-section {
    margin-top: -5%;
    margin-left: -1%;
    width: 75%;
  }

  .players-container {
    position: absolute;
    bottom: 0;
    right: 100px;
    z-index: 1;
  }

  .player-section {
    width: 700px;
  }

  .slots-section {
    position: absolute;
    bottom: 0;
    right: 100px;
    width: 70%;
    z-index: 1;
  }

  .floating-button {
    position: absolute;
    top: -9%;
    left: 14%;
    transform: translate(-50%, -50%);
    width: 300px;
  }

  .price-content-section {
    align-items: center;
    width: 100%;
  }

  .price-section {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 55%;
    z-index: 1;
  }

  .price-content-image {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .price-image {
    width: 70%;
  }
}
