
html {
  scroll-behavior: smooth;
}

:root {
  --primary: #FFB400;
  --secondary: #FF3131;
  --highlight: #00BFFF;
  --background: #111111;
  --gold: #FFD700;
  --neon-purple: #9933FF;
  --text: #F5F5F5;
}

body {
  background: #111111;
  position: relative;
  margin: 0;
  font-family: "Segoe UI", sans-serif;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 73px;
  bottom: 0;
  z-index: 1;
}

h2 {
  font-family: "Segoe UI", sans-serif;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 0px 28px #ffb963;
  font-size: 2.5rem !important;
  margin-bottom: 18px;
}

/*h2:before {
  content: "\26A1 ";
  margin-right: 28px;
}
/*

/*p, 
li, 
a, 
span, 
button, 
h4,
input,
label {
  font-size: 21px !important; 
}*/

a {
  cursor: pointer;
}

h1 {
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
}

a.logo {
  font-family: "Segoe UI", sans-serif;
  color: #F38700;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 5px #f4ff3e, 0 0 10px #f4ff3e, 0 0 20px #f4ff3e, 0 0 40px #f4ff3e;
  font-size: 73px;
  margin-bottom: 32px;
  font-weight: 700;
  text-decoration: none;
  margin: 0 auto;
  display: block; 
}

.header {
  padding: 0 23px;  
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
  position: relative;
}

.burger span {
  width: 34px;
  height: 3px;
  background: #fff;
  display: block;
  border-radius: 2px;
}

.burger .active span {
  background: #000;
}

.header__logo {}

.header__logo-link {
  width: 144px;
  height: 81px;
}

.header__menu {
  max-width: 603px;
  width: 100%;  
}

.header__menu ul li a {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}

.header__menu ul li a:hover {
  cursor: pointer;
  color: #fff;
  text-decoration: underline;
}

.header__menu-navigation {
  display: flex;
  justify-content: space-between;
  list-style: none;
  color: #fff; 
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -116%;
  width: 100%;
  max-width: 969px;
  height: 100vh;
  background: #111111;
  padding: 32px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.header__mobile-menu ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.header__mobile-menu ul li {
  margin: 1.5rem 0;
}

.header__mobile-menu ul li a {
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
}

.header__mobile-menu.active {
  right: -52px;
}

.header__has-submenu {
  position: relative;
}

.header__submenu {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111111;
  padding: 0.5rem 0;
  min-width: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.header__has-submenu:hover .header__submenu {
  display: block;
}

.header__has-submenu .header__submenu li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.header__has-submenu .header__submenu li a:hover {
  background: #111111;
}

.header__has-submenu:hover .header__submenu {
  display: block;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-top: 32px;
}

.signup-overlay {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 30%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 0 17px;
}

.signup-modal {
  background: #ffefd3;
  padding: 51px 40px;
  border-radius: 12px;
  max-width: 452px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  font-family: Arial, sans-serif;
  text-align: center;
  position: relative;
}

.signup-form h2 {
  margin-bottom: 38px;
}

.signup-form input {
  width: 89%;
  padding: 18px 14px;
  margin-bottom: 28px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.signup-form button {
  cursor: pointer;
  background: radial-gradient(circle, rgb(249 207 6) 28%, rgba(243, 135, 0, 1) 85%);
  color: #303030;
  letter-spacing: 3px;
  font-weight: 400;
  padding: 15px 65px;
  display: block;
  margin: 0 auto;
  width: 96%;
  font-size: 1.2rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.signup-form button:hover {
  background-color: #F38700; 
}

.signup-success p {
  font-size: 1.1rem;
  color: #28a745;
}

.hidden {
  display: none !important;
}

.form-wrapper p {
  font-size: 17px;
  color: #fff;
  margin: 32px 0 32px 0;
  max-width: 700px;
  width: 100%;
  text-align: center;
  line-height: 1.5;
}

.contact-form-section {
  padding: 40px 0;
  position: relative;
}

.form-wrapper {
  background-color: var(--white);
  padding: 48px 17px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 734px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.form-group {
  margin-bottom: 1rem;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 11px;
  font-weight: 500;
  font-size: 17px;
  color: #fff;
}

input, select {
  max-width: 683px;
  padding: 23px;
  border: 1px solid var(--light-gray);
  border-radius: 46px;
  font-family: inherit;
  font-size: 17px;
  margin-bottom: 30px;
}

textarea {
  max-width: 683px;
  height: 222px;
  padding: 23px;
  border: 1px solid var(--light-gray);
  border-radius: 46px;
  font-family: inherit;
  font-size: 17px;
  margin-bottom: 30px;  
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(69, 123, 157, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.btn-submit {
  background: radial-gradient(circle, #cfb068 28%, #8d5c02 85%) ;
  box-shadow: 0px 0px 24px #ffb9637a;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 23px;
  display: block;
  margin: 20px auto 0 auto;
  max-width: 308px;
  width: 100%;
  font-family: "Segoe UI", sans-serif;
  font-size: 19px;
  border-radius: 34px;
  border: none;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.btn-submit:hover {
  background-color: #d32f3a;
  transform: translateY(-3px);
}

.hero {
  position: relative;
  bottom: 73px;
  background: url("../img/kasino-game.jpg") center/cover no-repeat;
  background-attachment: fixed;
  height: 803px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.hero__overlay {
  background: rgb(0 0 0 / 68%);
  width: 100%;
  height: 101%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: -7px;
}

.hero__content {
  margin-top: 60px;
}

.hero__title {
  font-size: 5rem;
  margin-bottom: 20px;
  text-shadow: 0px 0px 28px #ffb963;
}

.hero__subtitle {
  font-size: 1.3rem;
}

.hero__btn {
  background: #FFF;
  background: radial-gradient(circle, #cfb068 28%, #8d5c02 85%);
  color: #000;
  font-family: 'Segoe UI', sans-serif;
  padding: 23px;
  display: block;
  margin: 52px auto;
  max-width: 199px;
  width: 100%;
  font-weight: 700;
  text-align: center;
  font-size: 19px;
  letter-spacing: 3px;
  border-radius: 42px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0px 0px 28px #ffb963;
}

.hero__btn:hover {
  transition: background 0.3s ease;
  transform: translateY(-3px);
}

/* How to Play Section Styles */

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step__number {
  display: inline-block;
  font-size: 2rem;
  background: #ff69e0;
  color: white;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.how-to-play {
  padding: 60px 20px 0 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.how-to-play__header p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333;
  font-size: 17px;
  line-height: 27px;
}

.how-to-play__blocks {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.how-to-play__steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
  margin-bottom: 50px;
  margin-right: 27px;
}

.step {
  background: #ffffff00;
  padding: 20px 0;
  margin-bottom: 34px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgb(0 0 0 / 0%);
  gap: 15px;
}

.step__circle {
  color: #F38700;
  font-weight: bold;
  font-size: 2.3rem;
  line-height: 40px;
}

.step__content {
  text-align: left;
}

.step__content h3 {
  text-align: center;
  margin: 30px auto;
  font-size: 25px;
  color: #fff;
}

.step__content p {
  margin: 4px 0 0;
  font-size: 17px;
  color: #555;
  text-align: center;
}

.how-to-play__odds {
  max-width: 396px;
  width: 100%;  
  margin-bottom: 84px;
  background: #ffefd3;
  padding: 21px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.how-to-play__odds h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
  text-align: left;
}

.how-to-play__odds ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.how-to-play__odds li {
  margin-bottom: 8px;
  font-size: 17px;
  color: #222;
  text-align: left;
}

.how-to-play__cta {}

.btn-signup {
  background: radial-gradient(circle, rgb(249 207 6) 28%, rgba(243, 135, 0, 1) 85%);
  color: #303030;
  letter-spacing: 3px;
  font-weight: 600;
  padding: 15px 65px;
  display: block;
  margin: 0 auto;
  max-width: 128px;
  width: 100%;
  font-size: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.btn-signup:hover {
  background: #F38700;
}

.about {
  background: #111111;
  padding: 0 20px 100px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.about__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1389px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  gap: 40px;
}

.about__text {
  max-width: 685px;
  width: 100%;
  margin-right: 23px;  
}

.about__text h2 {
  margin: 0;
  text-align: left;
}

.about__text p {
  font-size: 17px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.6;
}

.about__image {
}

.about__image img {
  max-width: 657px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.strategies {
  position: relative;
  background: url("../img/kasino-game.jpg") center / cover no-repeat;
  background-attachment: fixed;
  padding: 60px 20px;
  height: 308px;
  font-family: 'Segoe UI', sans-serif;
}

.strategies h2 {
  margin: 0;
}

.strategies__overlay {
  background: rgb(0 0 0 / 68%);
  max-width: 1920px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.strategies__container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.strategies__subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: center;
  color: #555;
}

.strategies__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strategies__list li {
  background: #ffefd3;
  border-left: 6px solid #F38700;
  padding: 15px 20px;
  font-size: 1rem;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
}

.newsletter {
  padding: 11px 20px 90px 20px;
  text-align: center;
}

.newsletter__container {
  max-width: 900px;
  margin: 0 auto;
}

.newsletter__subtitle {
  font-size: 17px;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  line-height: 1.6;
}

.newsletter__title {
  margin: 0 !important;
}

.newsletter__form {
  max-width: 681px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  align-items: center;
}

.newsletter__input {
  padding: 23px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 34px;
  font-size: 17px;
}

.newsletter__button {
  cursor: pointer;
  background: radial-gradient(circle, #cfb068 28%, #8d5c02 85%) ;
  box-shadow: 0px 0px 24px #ffb9637a;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  letter-spacing: 3px;
  font-weight: 700;
  padding: 23px;
  display: block;
  margin: 0 auto 30px auto;
  max-width: 181px;
  width: 100%;
  font-family: "Segoe UI", sans-serif;
  font-size: 19px;
  border-radius: 34px;
  border: none;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

button.newsletter__button:hover {
  background-color: #F38700;
}

.newsletter__message {
  margin-top: 20px;
  color: green;
  font-weight: 600;
  background: #b6eeb6;
  padding: 19px;
  border: 1px solid #31c631;
  border-radius: 8px;
}

.hidden {
  display: none;
}

.reviews {
  padding: 1px 20px;
  font-family: sans-serif;
}

.reviews__container {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.reviews__desc {
  font-size: 17px;
  color: #fff;
  margin-bottom: 40px;
}

.reviews__grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.review {
  border-radius: 10px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review__avatar {
  max-width: 200px;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 46px;
  box-shadow: 0px 0px 24px #ffb9637a;
}

.review__name {
  font-size: 21px;
  font-weight: bold;
  margin: 5px 0;
  color: #fff;
}

.review__role {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 15px;
}

.review__text {
  font-size: 17px;
  color: #fff;
  line-height: 1.5;
}

.faq {
  font-family: sans-serif;
  padding: 84px 17px;
}

.faq__container {
  max-width: 836px;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 21px;
}

.faq__title {
  margin-bottom: 21px !important;
}

.faq__subtitle {
  font-size: 17px;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  line-height: 1.6;
}

.faq__question {
  background: radial-gradient(circle, #cfb068 28%, #8d5c02 85%) ;
  box-shadow: 0px 0px 24px #ffb9637a;
  background-size: 100%;
  background-position: center;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  width: 100%;
  text-align: center;
  padding: 23px 65px;
  margin-bottom: 21px;
  font-family: "Segoe UI", sans-serif;
  font-size: 19px;
  cursor: pointer;
  border-radius: 41px;

  transition: background-size 0.6s ease-out, background-position 0.6s ease-out;
}

.faq__question:hover {
  background-size: 120%;
  background-position: top left;

  transition: all 5s ease-out;
}

.faq__answer {
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 4px 20px;
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
}

.responsible {
  font-size: 17px;
  color: #fff;
  line-height: 1.5;
  font-family: 'Arial', sans-serif;
  padding: 96px 20px 46px 20px;
}

.responsible__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.responsible__container h2 {
  margin: 0;
  padding-bottom: 17px;
}

.responsible__subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}

.responsible__cards {
  text-align: center;  
}

.responsible__cards a {
  color: #fff;
}

.responsible__card {
  background: #444;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 251px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.responsible__card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.responsible__card h3 {
  color: violet;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.responsible__card p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ccc;
}

.responsible__card a {
  color: #00f6ff;
  text-decoration: underline;
}

.footer {
  color: #f0f0f0;
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
}

img.logo__footer {
  width: 276px;
  height: 169px;
  padding: 74px 0;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__brand {
  color: #F38700;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 5px #f4ff3e, 0 0 10px #f4ff3e, 0 0 20px #f4ff3e, 0 0 40px #f4ff3e;
  font-size: 2.5rem !important;
  margin-bottom: 32px;
  text-decoration: none;
  font-weight: 700;
}

.footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 21px;
}

.footer__logos img {
  height: 88px;
  max-width: 100%;
  object-fit: contain;
}

.footer__legal {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer__legal a {
  color: #00f6ff;
  text-decoration: underline;
}

.footer__warning {
  color: #ff7070;
  font-weight: bold;
  margin-top: 15px;
}

.footer__bottom {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}

.footer__bottom a {
  color: #f0f0f0;
  margin: 0 8px;
  text-decoration: underline;
}

.footer__bottom p {
  text-align: center;
}

.game {
  height: 100vh;
  margin-bottom: 59px;
}

.game__container {
  max-width: 1145px;
  margin: 0 auto;
  padding: 0 34px;
  height: 641px;
  position: relative;
  top: 21%;
}

.game__container h2 {
  margin-bottom: 52px;
}

.iframeGame {

}

@media only screen and (max-width: 1512px) {

  .about__container {
    max-width: none;
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
  }

  .about__text {
    max-width: 1512px;
    text-align: center;
    margin-right: 0;
  }

  .about__image img {
    max-width: 100%;
  }

  .about__text h2 {
    text-align: center;
  }

}

@media only screen and (max-width: 1088px) {

  .how-to-play__steps {
    flex-wrap: wrap;
    justify-content: center;
  }

}

@media only screen and (max-width: 969px) {

  a.logo {
    font-size: 54px;
  }


  img.logo__header {
    width: 276px;
    height: 136px;
  }

  .burger {
    display: flex;
  }

  .header__menu {
    display: none;
  }

  .how-to-play__odds h3 {
    margin-top: 2px;
  }  

  .how-to-play__steps {
    margin-bottom: 0;
    margin-right: 33px;
  }

  .how-to-play__odds {
    max-width: none;
    width: 52%;
  }

  .how-to-play__odds ul {
    margin: 0;
  }

  .hero {
    height: 692px;
  }

  .responsible__cards {
    flex-wrap: wrap;
    max-width: 618px;
    width: 100%;
    margin: 0 auto;
  }

  .reviews__grid {
    flex-wrap: wrap;
  }

  .hero__title {
    font-size: 3rem;
    margin-top: 102px;
  }

  .hero__content {
    padding: 0 14px;
  }

}

@media only screen and (max-width: 864px) {

  .how-to-play__blocks {
    display: block;
  }

  .step {
    max-width: 867px;
  }

  .how-to-play__odds {
    width: 89%;
  }  

}

@media screen and (max-width: 651px) {

  .header__mobile-menu .has-submenu .submenu {
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 15px;
  }

  .header__mobile-menu .has-submenu.active .submenu {
    display: block;
  }

  .header__mobile-menu .submenu li a {
    color: #fff;
    padding: 10px 0;
  }

}

@media only screen and (max-width: 651px) {

    .newsletter__form {
      display: block;
    }

    .newsletter__input {
      margin-bottom: 21px;
      max-width: 294px;
    }

}

@media only screen and (max-width: 445px) {}

@media only screen and (max-width: 400px) {

    .newsletter__input {
      max-width: 246px;
    }

    a.logo {
      font-size: 44px;
    }

    .step__circle {
      width: 50px;
    }

}