* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--primary {
  background-color: #fff;
  color: #1a1a2e;
  border: 2px solid #fff;
}

.btn--primary:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn--secondary:hover {
  background-color: #fff;
  color: #1a1a2e;
}

.btn--full {
  width: 100%;
}

.header {
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  width: 40px;
  height: 40px;
}

.header__logo-text {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.header__nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: #ffd700;
}

.header__nav-link--active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ffd700;
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.header__mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

.main {
  margin-top: 70px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8),
    rgba(16, 13, 64, 0.7)
  );
  z-index: -1;
}

.hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero__description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.casino-hotels {
  padding: 80px 0;
  background-color: #1a1a2e;
  color: #fff;
}

.casino-hotels__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #fff;
}

.hotel-card {
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hotel-card__image {
  flex: 0 0 300px;
}

.hotel-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-card__content {
  flex: 1;
  padding: 30px;
}

.hotel-card__name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
}

.hotel-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.hotel-card__label {
  font-weight: 600;
  color: #ffd700;
  display: block;
  margin-bottom: 5px;
}

.hotel-card__value {
  color: #fff;
  line-height: 1.6;
}

.hotel-card__stars {
  color: #ffd700;
  font-size: 1.2rem;
}

.hotel-card__list {
  list-style: none;
  margin-top: 10px;
}

.hotel-card__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  color: #fff;
}

.hotel-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.selection-criteria {
  padding: 80px 0;
  background-color: #1a1a2e;
  color: #fff;
}

.selection-criteria__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #fff;
}

.criteria-list {
  display: grid;
  gap: 40px;
}

.criteria-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.criteria-item__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background-color: #ffd700;
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.criteria-item__content {
  flex: 1;
}

.criteria-item__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffd700;
}

.criteria-item__text {
  color: #fff;
  line-height: 1.7;
  margin-bottom: 15px;
}

.criteria-item__list {
  list-style: none;
}

.criteria-item__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.criteria-item__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.gambling-laws {
  padding: 80px 0;
  background-color: #1a1a2e;
  color: #fff;
}

.gambling-laws__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #fff;
}

.laws-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.law-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.law-card__icon {
  margin-bottom: 20px;
}

.law-card__img {
  width: 60px;
  height: 60px;
}

.law-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd700;
}

.law-card__text {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.law-card--detailed .law-card__details {
  text-align: left;
}

.law-card--detailed .law-card__details h4 {
  color: #ffd700;
  font-weight: 600;
  margin: 20px 0 10px 0;
}

.law-card--detailed .law-card__details ul {
  list-style: none;
  margin-bottom: 15px;
}

.law-card--detailed .law-card__details li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
}

.law-card--detailed .law-card__details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.contact-form {
  padding: 80px 0;
  background-color: #1a1a2e;
  color: #fff;
}

.contact-form__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.contact-form__subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.contact-form__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form__info h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
}

.contact-form__info p {
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-info__item {
  margin-bottom: 25px;
}

.contact-info__item h3 {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info__item p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.form {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form__group {
  margin-bottom: 25px;
}

.form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #ffd700;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  background-color: #0f0f1e;
  color: #fff;
  padding: 40px 0 20px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-img {
  width: 40px;
  height: 40px;
}

.footer__logo-text {
  font-weight: 700;
  font-size: 18px;
}

.footer__nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #ffd700;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer__disclaimer {
  flex: 1;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer__copyright {
  text-align: right;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.page-header {
  padding: 100px 0 60px;
  background-color: #1a1a2e;
  color: #fff;
  text-align: center;
}

.page-header__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header__subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.content-section {
  padding: 60px 0;
  background-color: #fff;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 40px 0 20px 0;
  color: #1a1a2e;
}

.content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 30px 0 15px 0;
  color: #1a1a2e;
}

.content p {
  margin-bottom: 20px;
  color: #555;
}

.content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.content li {
  margin-bottom: 8px;
  color: #555;
}

.content a {
  color: #1a1a2e;
  text-decoration: underline;
}

.content a:hover {
  color: #ffd700;
}

.success-section {
  padding: 120px 0;
  background-color: #1a1a2e;
  color: #fff;
  text-align: center;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 30px;
}

.success-icon__img {
  width: 80px;
  height: 80px;
}

.success-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
}

.success-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.hotels-grid {
  display: grid;
  gap: 40px;
}

.criteria-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.criteria-footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.criteria-footer h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
}

.criteria-footer p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.laws-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.laws-additional {
  margin-bottom: 60px;
}

.laws-additional h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #ffd700;
  text-align: center;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd700;
}

.legal-section p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 15px;
}

.legal-section ul {
  list-style: none;
  margin-left: 20px;
}

.legal-section li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.legal-section li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.help-resources {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.help-resources h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  text-align: center;
}

.help-resources > p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.help-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.help-contact {
  text-align: center;
}

.help-contact h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffd700;
}

.help-contact p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
