@charset "UTF-8";
body {
  font-family: "Oswald", sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

.header {
  background: #fff;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .logo img {
  height: 50px;
}
.header .logo a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
}
.header .nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.header .nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.header .nav ul li a:hover {
  color: #ff6600;
}

/* 📱 Адаптив */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
  }
  .nav ul {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .container {
    flex-direction: column;
  }
  .nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
.hero {
  position: relative;
  background: url("/assets/img/hero.webp") center/cover no-repeat;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero .container {
  position: relative;
  max-width: 1000px;
  padding: 20px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}
.hero p {
  font-size: 1.3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 📱 Адаптив */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 50vh;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
.about {
  background: linear-gradient(to right, #f4f4f4, #1a1a1a);
  color: #e0e0e0;
  padding: 100px 0;
}
.about .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}
.about .about-image {
  flex: 1;
}
.about .about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  filter: grayscale(100%);
  box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease forwards;
}
.about .about-text {
  flex: 1;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease forwards 0.5s;
}
.about .about-text h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
}
.about .about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ddd;
}
.about .about-text .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  background: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.about .about-text .btn:hover {
  background: #ccc;
  transform: scale(1.05);
}

/* 🔥 Анимации */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 📱 Адаптив */
@media (max-width: 900px) {
  .about .container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 100%;
  }
  .about-text {
    text-align: center;
  }
  .about-text .btn {
    display: block;
    width: -moz-max-content;
    width: max-content;
    margin: 15px auto 0;
  }
}
.game-block {
  padding: 60px 0;
  text-align: center;
  background: #f5f5f5;
}
.game-block h2 {
  font-weight: 900;
  font-size: 2.8rem;
}

.game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.game-container .slots {
  width: 100%;
  max-width: 500px;
  background: #222;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.game-container .window {
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  height: 280px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.game-container .outer-col {
  width: 30%;
  background: radial-gradient(circle, #ffffff 0%, #d3d3d3 100%);
  border-radius: 8px;
  box-shadow: inset 0 -4px 10px rgba(0, 0, 0, 0.3);
}
.game-container .col {
  padding: 10px;
  transition: transform 1s ease-in-out;
}
.game-container .icon {
  display: block;
  font-size: 64px;
  height: 100px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.game-container .icon:hover {
  transform: scale(1.2);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}
.game-container .slots.spinning .col {
  animation: scroll 2.8s cubic-bezier(0.5, 0, 0.5, 1) forwards, blur 2.8s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(calc(-100% + 290px));
  }
  100% {
    transform: translateY(calc(-100% + 294px));
  }
}
@keyframes blur {
  0% {
    filter: blur(0);
  }
  20% {
    filter: blur(4px);
  }
  60% {
    filter: blur(6px);
  }
  100% {
    filter: blur(0);
  }
}
.game-container .spin-btn {
  display: block;
  margin: 20px auto 0 auto;
  padding: 14px 28px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background: #111;
  color: #fff;
  transition: background 0.3s, transform 0.2s ease;
}
.game-container .spin-btn:hover {
  background: #444;
  transform: scale(1.1);
}
.game-container .spin-btn:disabled {
  background: #999;
  cursor: not-allowed;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .slots {
    width: 90%;
    padding: 20px;
  }
  .window {
    height: 250px;
  }
  .outer-col {
    width: 32%;
  }
  .icon {
    font-size: 54px;
    height: 90px;
  }
  .spin-btn {
    font-size: 18px;
    padding: 12px 25px;
  }
}
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1c1c28;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  z-index: 1000;
  display: none;
}
.cookie-consent__text {
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-align: center;
}
.cookie-consent__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.cookie-consent__actions .cookie-consent__btn {
  flex: 1;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #29b6f6;
  border-radius: 5px;
  background-color: transparent;
  color: #29b6f6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-consent__actions .cookie-consent__btn:hover {
  background-color: #29b6f6;
  color: #ffffff;
}
.cookie-consent__actions .accept {
  border-color: #00e676;
  color: #00e676;
}
.cookie-consent__actions .accept:hover {
  background-color: #00e676;
}
.cookie-consent__actions .decline {
  border-color: #f44336;
  color: #f44336;
}
.cookie-consent__actions .decline:hover {
  background-color: #f44336;
}

.features {
  background: #111;
  color: #e0e0e0;
  padding: 100px 0;
  text-align: center;
}
.features h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.features .feature-item {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.features .feature-item i {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}
.features .feature-item h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}
.features .feature-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
}
.features .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* 🔥 Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 📱 Адаптив */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    padding: 30px;
  }
}
.testimonials {
  background: #0d0d0d;
  color: #e0e0e0;
  padding: 100px 0;
  text-align: center;
}
.testimonials h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
}
.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonials .testimonial-item {
  background: #161616;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.testimonials .testimonial-item .testimonial-quote {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  padding-left: 30px;
}
.testimonials .testimonial-item .testimonial-quote::before {
  content: "❝";
  font-size: 2rem;
  color: #bbb;
  position: absolute;
  left: 0;
  top: -5px;
}
.testimonials .testimonial-item .testimonial-author {
  font-size: 1.2rem;
  font-weight: bold;
  color: #aaa;
}
.testimonials .testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* 🔥 Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 📱 Адаптив */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-item {
    padding: 25px;
  }
}
.disclaimer {
  background: #0d0d0d;
  color: #e0e0e0;
  padding: 80px 0;
  text-align: center;
}
.disclaimer .container {
  max-width: 800px;
  margin: 0 auto;
}
.disclaimer h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}
.disclaimer p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}
.disclaimer .disclaimer__images {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.disclaimer .disclaimer__images img {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}
.disclaimer .disclaimer__images img:hover {
  transform: scale(1.1);
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .disclaimer {
    padding: 60px 20px;
  }
  .disclaimer h2 {
    font-size: 2rem;
  }
  .disclaimer p {
    font-size: 1.1rem;
  }
  .disclaimer .disclaimer__images {
    flex-direction: column;
    align-items: center;
  }
  .disclaimer .disclaimer__images img {
    width: 80px;
  }
}
.footer {
  background: #0d0d0d;
  color: #e0e0e0;
  padding: 50px 0;
  text-align: center;
}
.footer .container {
  max-width: 900px;
  margin: 0 auto;
}
.footer .footer__logo img {
  width: 150px;
  margin-bottom: 20px;
}
.footer .footer__nav {
  margin-bottom: 20px;
}
.footer .footer__nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer .footer__nav ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.footer .footer__nav ul li a:hover {
  color: #fff;
}
.footer .footer__links {
  margin-bottom: 15px;
}
.footer .footer__links a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  color: #aaa;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer .footer__links a:hover {
  color: #fff;
}
.footer .footer__copy {
  font-size: 0.9rem;
  color: #888;
  margin-top: 10px;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }
  .footer .footer__nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .footer .footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer .footer__copy {
    font-size: 0.8rem;
  }
}
.contact {
  background: #0d0d0d;
  color: #e0e0e0;
  padding: 100px 0;
  text-align: center;
}
.contact .container {
  max-width: 800px;
  margin: 0 auto;
}
.contact h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
}
.contact p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}
.contact form {
  background: #161616;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact form .form-group {
  display: flex;
  gap: 15px;
}
.contact form .form-group input {
  flex: 1;
}
.contact form input,
.contact form textarea {
  width: 95%;
  padding: 15px;
  font-size: 1.2rem;
  border: 2px solid #333;
  border-radius: 8px;
  background: #222;
  color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact form input:focus,
.contact form textarea:focus {
  border-color: #fff;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
  outline: none;
}
.contact form textarea {
  resize: none;
  height: 150px;
}
.contact form .submit-btn {
  padding: 15px;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #111;
  transition: background 0.3s ease, transform 0.2s ease;
}
.contact form .submit-btn:hover {
  background: #ccc;
  transform: scale(1.05);
}

/* 🔥 Стили для popup */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(255, 255, 255, 0.2);
  text-align: center;
  z-index: 1000;
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.popup.hidden {
  display: none;
}
.popup .popup-content {
  max-width: 300px;
  margin: auto;
}
.popup .popup-content h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}
.popup .popup-content p {
  font-size: 1rem;
  color: #444;
}
.popup .popup-content .close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #555;
  transition: color 0.3s ease;
}
.popup .popup-content .close-popup:hover {
  color: #000;
}

/* 🔥 Анимация появления popup */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -55%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* 📱 Адаптив */
@media (max-width: 768px) {
  .contact {
    padding: 80px 20px;
  }
  .container {
    padding: 0 10%;
  }
  h2 {
    font-size: 2.3rem;
  }
  p {
    font-size: 1.1rem;
  }
  form {
    padding: 30px;
  }
  .form-group {
    flex-direction: column;
  }
  .popup-content {
    max-width: 260px;
  }
}
.privacy,
.terms {
  background: #f9f9f9;
  color: #333;
  padding: 80px 0;
  text-align: left;
}
.privacy .container,
.terms .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5%;
}
.privacy h2,
.terms h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
}
.privacy p,
.terms p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.privacy h3,
.terms h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 30px;
  color: #222;
}
.privacy ul,
.terms ul {
  padding-left: 20px;
}
.privacy ul li,
.terms ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  list-style: disc;
}
.privacy a,
.terms a {
  color: #0066cc;
  text-decoration: underline;
}
.privacy a:hover,
.terms a:hover {
  color: #004999;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .privacy,
  .terms {
    padding: 60px 20px;
  }
  .privacy h2,
  .terms h2 {
    font-size: 2.3rem;
  }
  .privacy h3,
  .terms h3 {
    font-size: 1.5rem;
  }
  .privacy p,
  .privacy li,
  .terms p,
  .terms li {
    font-size: 1.1rem;
  }
}/*# sourceMappingURL=style.css.map */