/* cyrillic */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Rubik-cyrillic-400.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* cyrillic */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Rubik-cyrillic-700.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Rubik-latin-400.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Rubik-latin-700.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Reset */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
p {
  font-size: inherit;
  font-weight: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/*  */

body {
  font-family: "Rubik", system-ui;
  background-color: #3e1807;
  color: #e9e4e1;
}

a {
  color: #e9e4e1;
  font-weight: 700;
  text-transform: uppercase;
}

a:hover {
  color: #c7c7c7;
  transition: 0.3s;
}

section {
  padding: 50px 0;
}

h1,
h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  font-size: 30px;
  font-weight: 600;
}

p {
  font-size: 17px;
  line-height: 1.4;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.wrap-section {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
}

.wrap-img {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
}

.wrap-img img {
  max-width: 450px;
  border: 8px solid #3e1807;
  border-radius: 10px;
}

.btn {
  width: 190px;
  display: block;
  padding: 15px 25px;
  border: 1px solid #01abc6;
  background: linear-gradient(to bottom, #0a3e4c, #082c34);
  color: #fff;
  border-radius: 30px;
  text-align: center;
}

.btn-brown {
  width: 190px;
  display: block;
  padding: 15px 25px;
  border: 1px solid #ffc392;
  background: linear-gradient(to bottom, #9a5409, #3e1807);
  border-radius: 30px;
  text-align: center;
}

.brown {
  background-color: #3e1807;
}

.yell {
  color: #ffd600;
}

.blue {
  background-color: #02284f;
  box-shadow: 0 0 40px rgba(236, 235, 238, 0.2) inset;
}

.img-description {
  margin-top: 3px;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.info {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

/* Header */

.header-content {
  background-image: url("../img/background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  padding: 10px 0 40px 0;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
}

.logo {
  margin-bottom: 20px;
}

.header-content p {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-title {
  font-size: 57px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.header-img {
  margin-bottom: 15px;
  width: 227px;
}

.header-links {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
}

/* Demo */

.header-demo {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
}

.demo {
  width: 887px;
  height: 550px;
}

.header-demo a {
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
}

.btn-demo {
  width: max-content;
  margin: 15px 0;
  display: block;
  padding: 10px 15px;
  border: 1px solid #01abc6;
  background: linear-gradient(to bottom, #0a3e4c, #082c34);
  color: #ffa330;
  border-radius: 20px;
}

.btn-demo:hover {
  color: #e2902b;
}

/* Navigation */

.navigation {
  margin-bottom: 50px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  background-color: #9a5409;
  border-radius: 30px;
}

.navigation-title {
  font-size: 18px;
  padding: 15px 0;
  font-weight: 700;
  cursor: pointer;
}

li {
  margin-bottom: 15px;
  list-style-type: none;
}

li a {
  padding-left: 15px;
  font-size: 17px;
  font-weight: 400;
  text-transform: none;
}

/* Preview */

.preview {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.preview img {
  max-width: 600px;
}

.preview-text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

/* Slot Design */

.slot-design {
  display: flex;
  align-items: center;
  column-gap: 50px;
}

.slot-design img {
  max-width: 400px;
  border: 8px solid #3e1807;
  border-radius: 10px;
}

.slot-design-content {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

/* Parameters */

.parameters {
  width: 900px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  background-color: #004b6d;
  border: 2px solid #ffd600;
  border-radius: 20px;
}

.parameters-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.parameters-item p {
  font-size: 22px;
}

/* Symbols */

.symbols-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
  justify-content: center;
}

.symbols-item {
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
  background-color: #004b6d;
  border-radius: 10px;
}

.symbols-item img {
  margin-bottom: 10px;
}

.symbols-item-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-weight: 700;
}

.symbol-scatter {
  display: flex;
  align-items: center;
  column-gap: 30px;
  padding: 20px 25px;
  background-color: #004b6d;
  border-radius: 10px;
}

.scatter-info {
  display: flex;
  flex-direction: column;
}

.scatter-info img {
  max-width: 150px;
}

.scatter-text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.symbols-coins {
  border: 8px solid #3e1807;
  border-radius: 10px;
}

/* Win Game */

.win-games {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.win-games-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.win-games-scatter {
  width: 200px;
  display: flex;
  justify-content: end;
}

.win-games-scatter img {
  max-width: 32px;
}

/* Footer */

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  font-size: 14px;
}

/* Bonus */

.bonus-wrap {
  display: flex;
  justify-content: center;
  padding: 0 5px;
}

.bonus {
  width: 395px;
  padding: 8px 15px;
  border: 2px solid #00cfa6;
  background-color: #2a4241;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(236, 235, 238, 0.2) inset;

  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.bonus p {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: none;
}

/* Media */

@media (max-width: 1024px) {
  .preview {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .parameters {
    width: 100%;
  }
  .wrap-img {
    flex-direction: column;
    row-gap: 30px;
  }
  .wrap-img img {
    max-width: 100%;
  }
  .preview img {
    max-width: 100%;
  }
  .demo {
    width: 100%;
  }
  .header-demo-nav {
    width: 100%;
    padding: 10px 15px;
  }
}

@media (max-width: 768px) {
  .header-content {
    background-image: url("../img/background800.webp");
  }
  .header-demo {
    background-image: url("../img/background800.webp");
  }
  .header-links {
    flex-direction: column;
    row-gap: 15px;
    align-items: center;
    justify-content: center;
  }
  .slot-design {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  .slot-design-content {
    align-items: center;
  }
  .symbol-scatter {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  .scatter-text {
    align-items: center;
  }
  .bonus {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .header-content {
    background-image: url("../img/background425.webp");
  }
  .header-demo {
    background-image: url("../img/background425.webp");
  }
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 35px;
  }
  p {
    font-size: 16px;
  }
  .header-title {
    font-size: 40px;
  }
  .navigation {
    padding: 20px;
  }
  .slot-design img {
    max-width: 100%;
  }
  .parameters {
    padding: 15px;
    row-gap: 10px;
  }
  .parameters-item p {
    font-size: 17px;
  }
  .symbols-item {
    padding: 5px;
  }
  .win-games-scatter {
    width: 150px;
  }
  .win-games-scatter img {
    max-width: 26px;
  }
}

@media (max-width: 424px) {
  .bonus p {
    font-size: 22px;
  }
}

@keyframes burgerAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
