.casino-hero-section {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: #f7f1ea;
  min-height: 760px;
  font-family: 'Open Sans', sans-serif;
}

.casino-hero-bg-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 64%;
  height: 100%;
  background: #fffaf4;
  z-index: 1;
}

.casino-hero-bg-accent {
  position: absolute;
  top: 80px;
  right: 0;
  width: 34%;
  height: 430px;
  background: #d7b08a;
  border-radius: 40px 0 0 40px;
  z-index: 1;
}

.casino-hero-image {
  position: relative;
  display: block;
  width: 58%;
  max-width: 920px;
  height: 620px;
  object-fit: cover;
  margin-left: auto;
  border-radius: 34px 0 0 34px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.casino-hero-card {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  width: 520px;
  padding: 48px;
  background: rgba(255, 250, 244, 0.96);
  border-radius: 34px;
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 55px rgba(59, 36, 22, 0.1);
  z-index: 3;
}

.casino-hero-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #9b5a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.casino-hero-subtitle {
  margin: 0 0 14px;
  color: #7c4420;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.casino-hero-title {
  margin: 0 0 24px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
}

.casino-hero-text {
  margin: 0;
  color: #5e4636;
  font-size: 18px;
  line-height: 1.85;
}

@media (max-width: 991px) {
  .casino-hero-section {
    padding: 70px 20px;
    min-height: auto;
  }

  .casino-hero-bg-light,
  .casino-hero-bg-accent {
    display: none;
  }

  .casino-hero-image {
    width: 100%;
    height: 420px;
    border-radius: 28px;
  }

  .casino-hero-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: -60px;
    padding: 38px;
  }

  .casino-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .casino-hero-section {
    padding: 70px 16px;
  }

  .casino-hero-image {
    height: 300px;
  }

  .casino-hero-card {
    padding: 30px 22px;
    margin-top: -40px;
  }

  .casino-hero-title {
    font-size: 30px;
  }

  .casino-hero-text {
    font-size: 16px;
    line-height: 1.75;
  }
}
.casino-features-section {
  padding: 100px 20px;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
}

.casino-features-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.casino-features-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.casino-features-heading h2 {
  margin: 18px 0 22px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  line-height: 1.14;
  font-weight: 800;
}

.casino-features-heading p {
  margin: 0;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.8;
}

.casino-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.casino-feature-card {
  padding: 34px 30px;
  background: #f7f1ea;
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(59, 36, 22, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.casino-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(59, 36, 22, 0.14);
}

.casino-feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(155, 90, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #9b5a2e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.casino-feature-card h4 {
  margin: 0 0 16px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
}

.casino-feature-card p {
  margin: 0 0 24px;
  color: #5e4636;
  font-size: 15.5px;
  line-height: 1.75;
}

.casino-feature-link {
  display: inline-flex;
  align-items: center;
  color: #9b5a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #9b5a2e;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.casino-feature-link:hover {
  color: #6f3d1d;
  border-color: #6f3d1d;
}

@media (max-width: 991px) {
  .casino-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .casino-features-heading h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .casino-features-section {
    padding: 70px 16px;
  }

  .casino-features-grid {
    grid-template-columns: 1fr;
  }

  .casino-features-heading h2 {
    font-size: 29px;
  }

  .casino-feature-card {
    padding: 30px 24px;
  }
}
.casino-evening-section {
  position: relative;
  padding: 100px 20px;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}

.casino-evening-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.casino-evening-bg {
  position: absolute;
  top: 70px;
  left: 4%;
  width: 76%;
  height: 520px;
  background: #f7f1ea;
  border-radius: 40px;
  z-index: 1;
}

.casino-evening-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: stretch;
}

.casino-evening-left,
.casino-evening-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.casino-evening-image {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 22px 54px rgba(59, 36, 22, 0.13);
}

.casino-evening-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-table {
  height: 430px;
}

.image-lounge {
  height: 520px;
}

.casino-evening-card {
  padding: 42px;
  background: #2d1b10;
  color: #fffaf4;
  border-radius: 34px;
}

.casino-evening-card .section-label {
  color: #d7b08a;
}

.casino-evening-card h3 {
  margin: 18px 0 20px;
  color: #fffaf4;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
}

.casino-evening-card p {
  margin: 0 0 30px;
  color: rgba(255, 250, 244, 0.84);
  font-size: 16px;
  line-height: 1.8;
}

.casino-evening-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 40px;
  background: #9b5a2e;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.casino-evening-btn:hover {
  background: #c17a3a;
  transform: translateY(-2px);
}

.casino-evening-heading {
  padding: 30px 10px 10px;
}

.casino-evening-small {
  display: inline-block;
  margin-bottom: 18px;
  color: #9b5a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.casino-evening-heading h2 {
  margin: 0;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
}

@media (max-width: 991px) {
  .casino-evening-layout {
    grid-template-columns: 1fr;
  }

  .casino-evening-bg {
    display: none;
  }

  .casino-evening-heading {
    order: -1;
    padding: 0;
  }

  .casino-evening-heading h2 {
    font-size: 36px;
  }

  .image-table,
  .image-lounge {
    height: 380px;
  }
}

@media (max-width: 575px) {
  .casino-evening-section {
    padding: 70px 16px;
  }

  .casino-evening-card {
    padding: 32px 24px;
  }

  .casino-evening-card h3,
  .casino-evening-heading h2 {
    font-size: 29px;
  }

  .image-table,
  .image-lounge {
    height: 260px;
  }
}
.casino-info-section {
  padding: 100px 20px;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

.casino-info-inner {
  max-width: 900px;
  margin: 0 auto;
}

.casino-info-kicker {
  margin: 12px 0 16px;
  color: #9b5a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.casino-info-title {
  margin: 0 auto 24px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
}

.casino-info-subtitle {
  margin: 36px auto 18px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
}

.casino-info-text {
  margin: 0 auto 22px;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.85;
}

.casino-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 52px;
  padding: 0 32px;
  border: 2px solid #9b5a2e;
  border-radius: 40px;
  color: #9b5a2e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.casino-info-btn:hover {
  background: #9b5a2e;
  color: #fff;
}

.casino-gallery-section {
  padding: 100px 20px;
  background: #f7f1ea;
  font-family: 'Open Sans', sans-serif;
}

.casino-gallery-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.casino-gallery-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.casino-gallery-heading h2 {
  margin: 18px 0 22px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  line-height: 1.16;
  font-weight: 800;
}

.casino-gallery-heading p {
  margin: 0;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.8;
}

.casino-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.casino-gallery-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(59, 36, 22, 0.1);
}

@media (max-width: 991px) {
  .casino-info-title,
  .casino-gallery-heading h2 {
    font-size: 36px;
  }

  .casino-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .casino-info-section,
  .casino-gallery-section {
    padding: 70px 16px;
  }

  .casino-info-title,
  .casino-gallery-heading h2 {
    font-size: 29px;
  }

  .casino-info-subtitle {
    font-size: 25px;
  }

  .casino-gallery-grid {
    grid-template-columns: 1fr;
  }

  .casino-gallery-image {
    height: 240px;
  }
}
.casino-cta-section {
  padding: 110px 20px;
  background: #f7f1ea;
  font-family: 'Open Sans', sans-serif;
}

.casino-cta-inner {
  max-width: 980px;
  margin: 0 auto;
}

.casino-cta-card {
  padding: 62px 54px;
  background: #fffaf4;
  border-radius: 38px;
  text-align: center;
  box-shadow: 0 22px 56px rgba(59, 36, 22, 0.1);
}

.casino-cta-card h2 {
  max-width: 720px;
  margin: 18px auto 24px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
}

.casino-cta-card p {
  max-width: 760px;
  margin: 0 auto 36px;
  color: #5e4636;
  font-size: 18px;
  line-height: 1.85;
}

.casino-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.casino-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.casino-cta-btn.primary {
  background: #9b5a2e;
  border: 2px solid #9b5a2e;
  color: #fff;
}

.casino-cta-btn.primary:hover {
  background: #6f3d1d;
  border-color: #6f3d1d;
  transform: translateY(-2px);
}

.casino-cta-btn.secondary {
  background: transparent;
  border: 2px solid rgba(59, 36, 22, 0.28);
  color: #2d1b10;
}

.casino-cta-btn.secondary:hover {
  background: #2d1b10;
  border-color: #2d1b10;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .casino-cta-section {
    padding: 70px 16px;
  }

  .casino-cta-card {
    padding: 38px 24px;
    border-radius: 30px;
  }

  .casino-cta-card h2 {
    font-size: 30px;
  }

  .casino-cta-card p {
    font-size: 16px;
  }

  .casino-cta-actions {
    flex-direction: column;
  }

  .casino-cta-btn {
    width: 100%;
  }
}
.casino-games-section {
  padding: 100px 20px;
  background: #f7f1ea;
  font-family: 'Open Sans', sans-serif;
}

.casino-games-inner,
.casino-testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.casino-games-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.casino-games-main-image {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 24px 56px rgba(59, 36, 22, 0.12);
}

.casino-games-content h2 {
  margin: 18px 0 34px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
}

.casino-games-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casino-game-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: #fffaf4;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(59, 36, 22, 0.08);
}

.casino-game-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(155, 90, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.casino-game-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #9b5a2e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.casino-game-item h4 {
  margin: 0 0 8px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.casino-game-item p,
.casino-games-description {
  margin: 0;
  color: #5e4636;
  line-height: 1.8;
}

.casino-games-description {
  margin-top: 28px;
  font-size: 16px;
}

.casino-games-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 40px;
  background: #9b5a2e;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.casino-games-btn:hover {
  background: #6f3d1d;
}

.casino-testimonials-section {
  padding: 100px 20px;
  background: #fffaf4;
}

.casino-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.casino-testimonial-card {
  padding: 36px 30px;
  background: #f7f1ea;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(59, 36, 22, 0.08);
}

.casino-testimonial-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  border-radius: 18px;
  background: rgba(155, 90, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-testimonial-icon svg {
  width: 24px;
  height: 24px;
  fill: #9b5a2e;
}

.casino-testimonial-card p {
  margin: 0 0 24px;
  color: #5e4636;
  font-size: 16px;
  line-height: 1.8;
}

.casino-testimonial-card h5 {
  margin: 0 0 6px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.casino-testimonial-card span {
  color: #9b5a2e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .casino-games-layout,
  .casino-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .casino-games-main-image {
    height: 420px;
  }

  .casino-games-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .casino-games-section,
  .casino-testimonials-section {
    padding: 70px 16px;
  }

  .casino-games-content h2 {
    font-size: 29px;
  }

  .casino-games-main-image {
    height: 260px;
  }

  .casino-testimonial-card,
  .casino-game-item {
    padding: 26px 22px;
  }
}
.casino-events-section {
  padding: 100px 20px;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
}

.casino-events-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.casino-events-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 70px;
}

.casino-events-row:last-child {
  margin-bottom: 0;
}

.casino-events-image {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 22px 54px rgba(59, 36, 22, 0.12);
}

.casino-events-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.casino-events-content h2 {
  margin: 18px 0 24px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  line-height: 1.16;
  font-weight: 800;
}

.casino-events-content p {
  margin: 0 0 28px;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.8;
}

.casino-events-link {
  display: inline-flex;
  align-items: center;
  color: #9b5a2e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid #9b5a2e;
}

@media (max-width: 800px) {
  .casino-events-row,
  .casino-events-row.reverse {
    grid-template-columns: 1fr;
  }

  .casino-events-row.reverse .casino-events-content {
    order: 2;
  }

  .casino-events-row.reverse .casino-events-image {
    order: 1;
  }

  .casino-events-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .casino-events-section {
    padding: 70px 16px;
  }

  .casino-events-image img {
    height: 260px;
  }

  .casino-events-content h2 {
    font-size: 29px;
  }
}
.casino-team-section {
  padding: 100px 20px;
  background: #f7f1ea;
  font-family: 'Open Sans', sans-serif;
}

.casino-team-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.casino-team-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.casino-team-heading h2 {
  margin: 18px 0 22px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  line-height: 1.14;
  font-weight: 800;
}

.casino-team-heading p {
  margin: 0;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.8;
}

.casino-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.casino-team-card {
  padding: 26px 22px 30px;
  background: #fffaf4;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(59, 36, 22, 0.08);
  transition: transform 0.3s ease;
}

.casino-team-card:hover {
  transform: translateY(-6px);
}

.casino-team-photo {
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 22px;
}

.casino-team-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.casino-team-card h5 {
  margin: 0 0 8px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.casino-team-card span {
  color: #9b5a2e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .casino-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .casino-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .casino-team-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .casino-team-section {
    padding: 70px 16px;
  }

  .casino-team-grid {
    grid-template-columns: 1fr;
  }

  .casino-team-heading h2 {
    font-size: 29px;
  }

  .casino-team-photo img {
    height: 320px;
  }
}
.casino-premium-section {
  padding: 100px 20px;
  background: #f7f1ea;
  font-family: 'Open Sans', sans-serif;
}

.casino-premium-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.casino-premium-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #fffaf4;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(59, 36, 22, 0.1);
}

.casino-premium-image-side {
  position: relative;
}

.casino-premium-image-wrapper {
  height: 100%;
}

.casino-premium-image-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.casino-premium-content-side {
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.casino-premium-content-side h2 {
  margin: 18px 0 26px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  line-height: 1.14;
  font-weight: 800;
}

.casino-premium-content-side p {
  margin: 0 0 22px;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.85;
}

.casino-premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  margin-top: 14px;
  padding: 0 34px;
  border-radius: 40px;
  background: #9b5a2e;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.casino-premium-btn:hover {
  background: #6f3d1d;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .casino-premium-layout {
    grid-template-columns: 1fr;
  }

  .casino-premium-image-wrapper img {
    min-height: 420px;
  }

  .casino-premium-content-side {
    padding: 50px 40px;
  }

  .casino-premium-content-side h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .casino-premium-section {
    padding: 70px 16px;
  }

  .casino-premium-content-side {
    padding: 36px 24px;
  }

  .casino-premium-content-side h2 {
    font-size: 29px;
  }

  .casino-premium-image-wrapper img {
    min-height: 260px;
  }
}
.casino-faq-section {
  padding: 100px 20px;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
}

.casino-faq-inner {
  max-width: 980px;
  margin: 0 auto;
}

.casino-faq-heading {
  text-align: center;
  margin-bottom: 56px;
}

.casino-faq-heading h2 {
  margin: 18px auto 0;
  max-width: 720px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
}

.casino-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.casino-faq-item {
  background: #f7f1ea;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(59, 36, 22, 0.08);
}

.casino-faq-question {
  width: 100%;
  min-height: 82px;
  padding: 0 28px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}

.casino-faq-question span {
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.casino-faq-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(155, 90, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.casino-faq-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #9b5a2e;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.casino-faq-answer {
  display: none;
  padding: 0 28px 28px;
}

.casino-faq-answer p {
  margin: 0;
  color: #5e4636;
  font-size: 16px;
  line-height: 1.8;
}

.casino-faq-item.active .casino-faq-answer {
  display: block;
}

.casino-faq-item.active .casino-faq-icon svg {
  transform: rotate(180deg);
}

@media (max-width: 575px) {
  .casino-faq-section {
    padding: 70px 16px;
  }

  .casino-faq-heading h2 {
    font-size: 30px;
  }

  .casino-faq-question {
    padding: 0 22px;
  }

  .casino-faq-question span {
    font-size: 17px;
  }

  .casino-faq-answer {
    padding: 0 22px 24px;
  }
}
.casino-brands-section {
  position: relative;
  padding: 110px 20px;
  background:
    linear-gradient(rgba(18, 12, 8, 0.92), rgba(18, 12, 8, 0.92)),
    url('images/casino-premium-bg.webp') center/cover no-repeat;
  overflow: hidden;
}

.casino-brands-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(201, 141, 72, 0.22),
    transparent 35%
  );
  pointer-events: none;
}

.casino-brands-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.casino-brands-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.casino-brands-header h2 {
  margin: 18px 0 22px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}

.casino-brands-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.casino-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.casino-brand-card {
  position: relative;
  min-height: 150px;
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(248, 186, 145, 0.718),
    rgba(151, 79, 2, 0.596)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.casino-brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 141, 72, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.casino-brand-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 141, 72, 0.45);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.casino-brand-card:hover::before {
  opacity: 1;
}

.casino-brand-icon {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.casino-brand-icon svg {
  width: 100%;
  max-width: 150px;
  max-height: 70px;
  fill: #ffffff;
  opacity: 0.82;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    fill 0.35s ease;
}

.casino-brand-card:hover svg {
  opacity: 1;
  fill: #d8a15f;
  transform: scale(1.05);
}

@media (max-width: 1199px) {
  .casino-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .casino-brands-section {
    padding: 90px 18px;
  }

  .casino-brands-header h2 {
    font-size: 42px;
  }

  .casino-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .casino-brands-section {
    padding: 70px 16px;
  }

  .casino-brands-header {
    margin-bottom: 50px;
  }

  .casino-brands-header h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .casino-brands-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .casino-brands-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .casino-brand-card {
    min-height: 130px;
    border-radius: 24px;
  }

  .casino-brand-icon {
    min-height: 130px;
    padding: 26px;
  }

  .casino-brand-icon svg {
    max-width: 130px;
  }
}
