@import "https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Roboto:wght@400;500&display=swap";
@import "https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&family=Open+Sans:wght@400;600&display=swap";
@import "https://fonts.googleapis.com/css2?family=Unica+One:wght@400&family=Roboto+Condensed:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+Pro:wght@400;600&display=swap";
@import "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;600&display=swap";
@import "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Montserrat:wght@400;600&display=swap";
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
}
img {
  display: block;
  max-width: 100%;
}
.casino-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  font-family: Playfair Display, serif;
  background: linear-gradient(135deg, #1a0b2e 0%, #0d051a 100%);
  border-bottom: 2px solid #ffd700;
  box-shadow: 0 4px 20px #ffd7004d;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: casinoFadeIn 1.2s ease-out forwards;
}
.brand-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
  position: relative;
  overflow: hidden;
}
.brand-title {
  color: gold;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.4);
  animation: glowPulse 2s infinite ease-in-out;
}
@keyframes casinoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7),
      0 0 20px rgba(255, 215, 0, 0.4);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.6);
  }
  to {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7),
      0 0 20px rgba(255, 215, 0, 0.4);
  }
}
.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  transition: all 0.5s ease;
}
.header-inner:hover {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 30px #ffd70066;
  transform: translateY(-2px);
}
.casino-logo {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  border: 2px solid #ffd700;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  background: linear-gradient(45deg, #1a0b2e, #2e1a4b);
}
.casino-logo:hover {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 25px #ffd70099, 0 0 50px #ffd7004d;
  border-color: #fff;
}
.casino-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.2);
  transition: all 0.4s ease;
}
.casino-logo:hover .casino-logo-img {
  transform: scale(1.15);
  filter: brightness(1.4) contrast(1.1);
}
.casino-logo:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 10%,
    transparent 70%
  );
  top: 10%;
  left: 10%;
  animation: sparkle 3s infinite ease-in-out;
  opacity: 0;
}
@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.5) translate(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) translate(20px, 20px);
  }
  to {
    opacity: 0;
    transform: scale(0.5) translate(40px, 40px);
  }
}
@media (min-width: 1281px) {
  .header-inner {
    padding: 16px 100px;
  }
  .casino-logo {
    width: 80px;
    height: 80px;
  }
  .brand-title {
    font-size: 32px;
  }
}
@media (max-width: 1280px) {
  .header-inner {
    padding: 10px 20px;
  }
  .casino-logo {
    width: 55px;
    height: 55px;
  }
  .brand-title {
    font-size: 22px;
  }
}
.luxury-hero {
  background-image: linear-gradient(
      135deg,
      rgba(10, 5, 20, 0.9),
      rgba(25, 15, 40, 0.85)
    ),
    url(/assets/h1-7a004c72.jpg);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  width: 100%;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #b8860b;
  box-shadow: 0 8px 30px #0009, inset 0 0 15px #ffd70033;
  animation: opulentEntrance 1.5s ease-out forwards;
}
.luxury-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top center,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 60%
  );
  opacity: 0.6;
  pointer-events: none;
  animation: neonPulse 8s ease-in-out infinite;
}
.luxury-hero:after {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 30px;
  height: 30px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 10%,
    transparent 70%
  );
  animation: casinoSparkle 4s infinite ease-in-out;
  opacity: 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-content h1 {
  color: #fff8e1;
  font-family: Cinzel Decorative, serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.5);
  margin-bottom: 20px;
  max-width: 800px;
  opacity: 0;
  transform: scale(0.95);
  animation: majesticFadeIn 1.2s ease-out 0.3s forwards;
}
.hero-content p {
  color: khaki;
  font-family: Roboto, sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  max-width: 800px;
  opacity: 0;
  transform: scale(0.95);
  animation: majesticFadeIn 1.2s ease-out 0.6s forwards;
}
@media (min-width: 1281px) {
  .hero-content {
    padding: 0 120px;
  }
  .hero-content h1 {
    font-size: 56px;
  }
  .hero-content p {
    font-size: 32px;
  }
}
@media (max-width: 1280px) {
  .luxury-hero {
    padding: 40px 0;
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-content h1 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .hero-content p {
    font-size: 18px;
  }
}
@keyframes opulentEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes neonPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
  to {
    opacity: 0.6;
    transform: scale(1);
  }
}
@keyframes majesticFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes casinoSparkle {
  0% {
    opacity: 0;
    transform: translate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(30px, 30px) scale(1.2);
  }
  to {
    opacity: 0;
    transform: translate(60px, 60px) scale(0.5);
  }
}
.reviews-section {
  width: 100%;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #001a2e 0%, #000c1a 100%);
}
.swiper-reviews {
  overflow: visible !important;
  max-width: 100%;
  margin-left: 0 !important;
}
.reviews-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  gap: 30px;
}
.swiper-wrapper-reviews {
  display: flex;
  align-items: center;
}
.reviews-entry {
  background: rgba(0, 28, 46, 0.85) url(../img/review-bg.jpg) center/cover
    no-repeat !important;
  box-shadow: 0 8px 32px #0003;
  border-radius: 12px;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  animation: fadeInEntry 0.6s ease forwards;
  position: relative;
  min-height: 214px;
  padding: 40px 40px 21px;
}
.reviews-entry:nth-child(1) {
  animation-delay: 0.1s;
}
.reviews-entry:nth-child(2) {
  animation-delay: 0.2s;
}
.reviews-entry:nth-child(3) {
  animation-delay: 0.3s;
}
.reviews-entry:nth-child(4) {
  animation-delay: 0.4s;
}
.reviews-entry:nth-child(5) {
  animation-delay: 0.5s;
}
.reviews-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px #0000004d, inset 0 0 15px #ffffff0d;
}
.reviews-entry h3 {
  position: absolute;
  top: -20px;
  right: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  padding: 9px 28px;
  border-radius: 24px;
  font-weight: 400;
  background: rgba(0, 28, 46, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews-entry:hover h3 {
  transform: scale(1.02);
  box-shadow: 0 0 15px #ffffff80, 0 0 30px #ffffff4d, 0 0 60px #ffffff26,
    inset 0 0 20px #fff3;
}
.reviews-entry p {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-family: Montserrat, sans-serif;
}
.reviews-heading {
  font-family: Playfair Display, serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: left;
  font-size: 42px;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}
.reviews-heading:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shine 3s infinite ease-in-out;
}
.stars {
  width: 247px;
  height: 39px;
}
@media (max-width: 1280px) {
  .reviews-container {
    padding: 15px;
    gap: 20px;
  }
  .reviews-entry {
    width: 100%;
    border-radius: 10px;
    padding: 30px 30px 15px;
    min-height: 180px;
  }
  .reviews-entry h3 {
    font-size: 14px;
    padding: 7px 20px;
    top: -15px;
    right: 30px;
  }
  .reviews-entry p {
    font-size: 14px;
  }
  .reviews-heading {
    font-size: 32px;
  }
  .swiper-reviews {
    max-width: 100%;
  }
}
@media (min-width: 1281px) {
  .reviews-container {
    padding: 40px;
    gap: 40px;
  }
  .reviews-entry {
    max-width: 497px;
    padding: 40px 73px 40px 40px;
    min-height: 258px;
  }
  .reviews-entry h3 {
    font-size: 24px;
    padding: 25px 42px;
    top: -46px;
  }
  .reviews-entry p {
    font-size: 24px;
  }
  .reviews-heading {
    font-size: 48px;
  }
  .swiper-reviews {
    max-width: 497px;
  }
}
.grand-casino-footer {
  width: 100%;
  background: linear-gradient(
      135deg,
      rgba(20, 10, 35, 0.95) 0%,
      rgba(10, 5, 20, 0.95) 100%
    ),
    url(/assets/footer-bg-ea02d4ce.jpg) center/cover no-repeat;
  border-top: 3px solid #b8860b;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 30px #b8860b4d;
}
.grand-casino-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top center,
    rgba(184, 134, 11, 0.15) 0%,
    transparent 70%
  );
  opacity: 0.8;
  animation: footerGlow 12s ease-in-out infinite;
}
.grand-casino-footer:after {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 25px;
  height: 25px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 10%,
    transparent 70%
  );
  animation: footerSparkle 5s infinite ease-in-out;
  opacity: 0;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  padding: 40px 15px;
}
.footer-notice {
  width: 100%;
  opacity: 0;
  animation: noticeFadeIn 1.2s ease forwards;
  animation-delay: 0.3s;
}
.footer-text {
  line-height: 1.7;
  color: #f0e6d6;
  font-size: 15px;
  text-align: center;
  margin: 0;
  font-family: Open Sans, sans-serif;
  transition: color 0.4s ease, transform 0.4s ease;
}
.footer-text:hover {
  color: gold;
  transform: translateY(-2px);
}
.mb-25 {
  margin-bottom: 25px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  animation: noticeFadeIn 1.2s ease forwards;
  animation-delay: 0.5s;
}
.footer-link-item {
  text-align: center;
}
.footer-link-item a {
  color: gold;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  position: relative;
  font-family: EB Garamond, serif;
  transition: color 0.4s ease, transform 0.4s ease;
}
.footer-link-item a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.footer-link-item a:hover {
  color: #fff8e1;
  transform: translateY(-2px);
}
.footer-link-item a:hover:after {
  transform: scaleX(1);
}
.footer-brand-logo {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  border: 2px solid #b8860b;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.footer-brand-logo:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px #b8860b99;
}
.footer-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.2);
}
.partners-vault {
  border-radius: 15px;
  width: 100%;
  padding: 25px;
  background: linear-gradient(
    145deg,
    rgba(20, 10, 35, 0.9),
    rgba(10, 5, 20, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
  border: 2px solid rgba(184, 134, 11, 0.2);
  box-shadow: 0 10px 30px #00000080, inset 0 0 12px #b8860b33;
  opacity: 0;
  animation: noticeFadeIn 1.2s ease forwards;
  animation-delay: 0.7s;
}
.vault-partner {
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}
.vault-partner:hover {
  transform: translateY(-6px) scale(1.05);
  opacity: 0.9;
  filter: brightness(1.3);
}
.partner-lg {
  max-width: 200px;
}
.partner-lg-2 {
  max-width: 260px;
}
.partner-sm {
  max-width: 70px;
}
@keyframes noticeFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes footerGlow {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
  to {
    opacity: 0.8;
    transform: scale(1);
  }
}
@keyframes footerSparkle {
  0% {
    opacity: 0;
    transform: translate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(30px, 30px) scale(1.2);
  }
  to {
    opacity: 0;
    transform: translate(60px, 60px) scale(0.5);
  }
}
@media (max-width: 1280px) {
  .grand-casino-footer {
    padding: 40px 0;
  }
  .footer-content {
    padding: 25px 10px;
    gap: 25px;
  }
  .footer-text {
    font-size: 14px;
    text-align: left;
  }
  .footer-links {
    gap: 15px;
  }
  .footer-link-item a {
    font-size: 15px;
  }
  .partners-vault {
    gap: 25px;
    padding: 20px;
  }
  .footer-brand-logo {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1281px) {
  .footer-content {
    padding: 50px 120px;
    gap: 60px;
  }
  .footer-links {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
  .footer-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }
  .footer-link-item a {
    font-size: 18px;
    line-height: 1.5;
  }
  .partners-vault {
    padding: 40px;
    gap: 50px;
  }
  .footer-brand-logo {
    width: 90px;
    height: 90px;
  }
}
.special-bg {
  background-color: #ffffff12;
  border-radius: 30px;
}
.page-margin {
  margin-bottom: 32px;
}
.page-margin-2 {
  margin-bottom: 16px;
}
.page-margin-8,
.page-margin-24 {
  margin-bottom: 8px;
}
.h3-uppercase {
  text-transform: uppercase;
}
.page-text-bold {
  font-weight: 600;
}
.page-text {
  line-height: 1.57143;
}
@media screen and (min-width: 1440px) {
  .page-text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-simple-list {
  list-style: disc;
  padding-left: 20px;
}
.page-simple-link {
  line-height: 1.57143;
  color: #0059ff;
}
@media screen and (min-width: 1440px) {
  .page-simple-link {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-title-h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55556;
}
@media screen and (min-width: 1440px) {
  .page-title-h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.page-title {
  font-family: Nunito, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  margin: 116px auto 40px;
}
@media screen and (min-width: 1440px) {
  .page-title {
    font-size: 28px;
    line-height: 1.57143;
    margin-top: 189px;
  }
}
.page-content {
  padding: 0 16px 60px;
}
@media screen and (min-width: 1440px) {
  .page-content {
    padding: 0 212px 120px;
  }
}
.btn-flip {
  opacity: 1;
  outline: 0;
  color: #fff;
  line-height: 40px;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  font-family: Open Sans;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 20px;
}
.btn-flip:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.btn-flip:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}
.btn-flip:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: #323237;
  display: block;
  transition: 0.5s;
  position: absolute;
  background: #adadaf;
  content: attr(data-back);
  transform: translateY(-50%) rotateX(90deg);
}
.btn-flip:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: #adadaf;
  display: block;
  padding: 0 30px;
  line-height: 40px;
  transition: 0.5s;
  position: relative;
  background: #323237;
  content: attr(data-front);
  transform: translateY(0) rotateX(0);
}
.opulent-casino-vault {
  padding: 60px 20px;
  background: linear-gradient(120deg, #1c0f2b 0%, #0a0514 100%);
  color: #f0e6d6;
  font-family: Unica One, cursive;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #b8860b;
  box-shadow: inset 0 0 20px #b8860b4d;
}
.opulent-casino-vault:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(184, 134, 11, 0.2) 0%,
    transparent 70%
  );
  opacity: 0.8;
  animation: vaultGlow 12s ease-in-out infinite;
}
.opulent-casino-vault:after {
  content: "";
  position: absolute;
  top: 10%;
  left: 15%;
  width: 25px;
  height: 25px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 10%,
    transparent 70%
  );
  animation: vaultSparkle 5s infinite ease-in-out;
  opacity: 0;
}
.vault-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.premium-casino-ticket {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #2a1b3d 0%, #140a1f 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 25px #0009, inset 0 0 10px #b8860b33;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    box-shadow 0.6s ease;
  animation: ticketReveal 1s ease-out forwards;
  opacity: 0;
  transform: scale(0.9) translateY(40px);
  max-width: 450px;
  margin: 0 auto;
  border: 2px solid rgba(184, 134, 11, 0.3);
  position: relative;
}
.premium-casino-ticket.golden-ticket .prestige-label {
  background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
  box-shadow: 0 4px 10px #ffd70099;
  animation: goldenPulse 2.5s ease-in-out infinite;
}
.premium-casino-ticket:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 15px 35px #000000b3, inset 0 0 15px #b8860b4d;
}
.ticket-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  text-align: center;
  font-family: Roboto Condensed, sans-serif;
}
.prestige-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #2a1b3d, #140a1f);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 15px;
  gap: 10px;
  text-transform: uppercase;
  font-size: 14px;
  box-shadow: 0 4px 8px #0000004d;
  transition: transform 0.5s ease, background 0.5s ease;
}
.prestige-label:hover {
  transform: scale(1.1) rotate(1deg);
  background: linear-gradient(90deg, #3c2f5e, #1f143c);
}
.icon {
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.icon-jackpot:before {
  content: "🎰";
  animation: slotSpin 2s linear infinite;
}
.icon-win:before {
  content: "💰";
  color: #f0e6d6;
}
.ticket-logo {
  display: block;
  width: 100%;
  max-width: 260px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.ticket-brand-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 8px 16px #00000080;
}
.ticket-logo:hover .ticket-brand-img {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(1.2) contrast(1.15);
  box-shadow: 0 10px 20px #0009, 0 0 25px #b8860b66;
}
.ticket-logo:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 134, 11, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}
.ticket-logo:hover:after {
  left: 100%;
}
.stats-display {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 15px;
}
.rating-stats {
  align-items: center;
}
.score-display {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(184, 134, 11, 0.1);
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: inset 0 2px 4px #b8860b33;
}
.score-display h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}
.score-display h3 span {
  font-size: 24px;
  font-weight: 800;
  color: gold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.star-display {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.star-cluster {
  display: flex;
  gap: 5px;
}
.star-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #ffd700, #f0e6d6);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: starGlow 2.5s infinite alternate;
}
.star-icon:nth-child(odd) {
  animation-delay: 0.3s;
}
.star-display:hover .star-icon {
  transform: rotate(20deg) scale(1.2);
  box-shadow: 0 0 12px #ffd700cc;
}
.star-display p {
  margin: 0;
  font-size: 13px;
  color: #d4c2a6;
  font-style: italic;
}
.performance-stats {
  justify-content: space-around;
}
.withdraw-stats,
.rtp-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 15px;
  background: linear-gradient(180deg, #2a1b3d, #140a1f);
  border-radius: 12px;
  width: 48%;
  transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 5px 10px #0006;
  border: 1px solid rgba(184, 134, 11, 0.2);
}
.withdraw-stats:hover,
.rtp-stats:hover {
  background: linear-gradient(180deg, #3c2f5e, #1f143c);
  transform: scale(1.06);
  box-shadow: 0 8px 15px #00000080, 0 0 20px #b8860b4d;
}
.withdraw-stats p,
.rtp-stats p {
  margin: 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f0e6d6;
  font-weight: 500;
}
.withdraw-stats h3,
.rtp-stats h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: gold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.reward-panel {
  padding: 30px;
  background: linear-gradient(180deg, #2a1b3d 0%, #140a1f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 2px solid rgba(184, 134, 11, 0.2);
  position: relative;
  overflow: hidden;
}
.reward-panel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(184, 134, 11, 0.15) 0%,
    transparent 70%
  );
  opacity: 0.8;
}
.reward-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: gold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 0 12px rgba(184, 134, 11, 0.3);
  font-family: Unica One, cursive;
}
.reward-offer {
  display: block;
  background: linear-gradient(90deg, #ffd700, #f0e6d6, #ffd700);
  color: #1c0f2b;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 8px #b8860b66;
  letter-spacing: 1px;
}
.reward-offer:hover {
  background: linear-gradient(90deg, #f0e6d6, #ffd700, #f0e6d6);
  transform: scale(1.08);
  box-shadow: 0 6px 12px #b8860b99;
}
.claim-ticket-btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #ffd700, #f0e6d6, #ffd700);
  color: #1c0f2b;
  font-weight: 800;
  padding: 14px 0;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 4px 8px #b8860b66;
  animation: ticketPulse 2s infinite;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}
.claim-ticket-btn:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}
.claim-ticket-btn:hover:after {
  opacity: 1;
}
.claim-ticket-btn:hover {
  background: linear-gradient(90deg, #f0e6d6, #ffd700, #f0e6d6);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px #b8860b99;
}
@keyframes ticketReveal {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes starGlow {
  0% {
    opacity: 0.8;
    box-shadow: 0 0 6px #ffd70099;
  }
  to {
    opacity: 1;
    box-shadow: 0 0 12px gold;
  }
}
@keyframes ticketPulse {
  0% {
    box-shadow: 0 0 #b8860b99;
  }
  70% {
    box-shadow: 0 0 0 18px #b8860b00;
  }
  to {
    box-shadow: 0 0 #b8860b00;
  }
}
@keyframes slotSpin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes goldenPulse {
  0% {
    box-shadow: 0 4px 10px #ffd70099;
  }
  50% {
    box-shadow: 0 4px 10px gold;
  }
  to {
    box-shadow: 0 4px 10px #ffd70099;
  }
}
@keyframes vaultGlow {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
  to {
    opacity: 0.8;
    transform: scale(1);
  }
}
@keyframes vaultSparkle {
  0% {
    opacity: 0;
    transform: translate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(40px, 40px) scale(1.3);
  }
  to {
    opacity: 0;
    transform: translate(80px, 80px) scale(0.5);
  }
}
.premium-casino-ticket:nth-child(1) {
  animation-delay: 0.2s;
}
.premium-casino-ticket:nth-child(2) {
  animation-delay: 0.4s;
}
.premium-casino-ticket:nth-child(3) {
  animation-delay: 0.6s;
}
@media (min-width: 1281px) {
  .vault-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .premium-casino-ticket {
    width: calc(33.33% - 20px);
    flex-direction: row;
    align-items: stretch;
    max-width: none;
    animation: ticketSlideIn 1s ease-out forwards;
    transform: translate(-40px);
  }
  @keyframes ticketSlideIn {
    0% {
      opacity: 0;
      transform: translate(-40px);
    }
    to {
      opacity: 1;
      transform: translate(0);
    }
  }
  .ticket-info {
    width: 60%;
    padding: 30px;
  }
  .reward-panel {
    width: 40%;
    padding: 30px;
    border-top: none;
    border-left: 2px solid rgba(184, 134, 11, 0.2);
    justify-content: center;
  }
  .opulent-casino-vault {
    padding: 80px 50px;
  }
}
@media (max-width: 1280px) {
  .premium-casino-ticket {
    max-width: 450px;
    margin: 0 auto;
  }
  .opulent-casino-vault {
    padding: 40px 15px;
  }
}
.royal-faq-suite {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(160deg, #2b0e3a 0%, #0f0519 100%);
  color: #f0e6d6;
  font-family: Libre Baskerville, serif;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #d4a017;
  box-shadow: inset 0 0 25px #d4a0174d;
}
.royal-faq-suite:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at bottom left,
    rgba(212, 160, 23, 0.2) 0%,
    transparent 60%
  );
  opacity: 0.7;
  animation: suiteGlow 10s ease-in-out infinite;
}
.royal-faq-suite:after {
  content: "";
  position: absolute;
  top: 15%;
  left: 20%;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 10%,
    transparent 70%
  );
  animation: suiteSparkle 6s infinite ease-in-out;
  opacity: 0;
}
.faq-suite-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
  gap: 40px;
}
.faq-suite-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}
.faq-suite-item {
  background: linear-gradient(145deg, #3a1c4e 0%, #1a0b2e 100%);
  box-shadow: 0 10px 30px #00000080, inset 0 0 12px #d4a01733;
  align-self: center;
  width: 100%;
  max-width: 900px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  border: 2px solid rgba(212, 160, 23, 0.3);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    box-shadow 0.5s ease;
  opacity: 0;
  animation: itemReveal 0.8s ease forwards;
}
.faq-suite-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px #0009, inset 0 0 15px #d4a0174d;
}
.faq-suite-item:nth-child(1) {
  animation-delay: 0.15s;
}
.faq-suite-item:nth-child(2) {
  animation-delay: 0.3s;
}
.faq-suite-item:nth-child(3) {
  animation-delay: 0.45s;
}
.faq-suite-item:nth-child(4) {
  animation-delay: 0.6s;
}
.faq-suite-item:nth-child(5) {
  animation-delay: 0.75s;
}
.faq-suite-item:nth-child(6) {
  animation-delay: 0.9s;
}
@keyframes itemReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-question-button-js {
  color: #f0e6d6;
  display: flex;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.faq-suite-question {
  width: 100%;
  border-radius: 15px 15px 0 0;
  padding: 25px;
  font-weight: 700;
  font-size: 20px;
  text-align: left;
  background: linear-gradient(
    90deg,
    rgba(212, 160, 23, 0.2),
    rgba(58, 28, 78, 0.2)
  );
  transition: background 0.4s ease, transform 0.4s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.faq-question-button-js:hover .faq-suite-question {
  background: linear-gradient(
    90deg,
    rgba(212, 160, 23, 0.3),
    rgba(58, 28, 78, 0.3)
  );
  transform: scale(1.02);
}
.faq-suite-answer {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    opacity 0.6s ease, padding 0.6s ease;
  padding: 0 25px;
  font-family: Source Sans Pro, sans-serif;
}
.faq-suite-answer.open {
  max-height: 600px;
  opacity: 1;
  color: #e6d4b8;
  font-size: 18px;
  background: linear-gradient(90deg, #2b0e3a, #0f0519);
  padding: 25px;
  border-radius: 0 0 15px 15px;
  box-shadow: inset 0 0 10px #d4a01733;
}
.faq-suite-title {
  font-family: Libre Baskerville, serif;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 160, 23, 0.3);
  color: gold;
  text-align: left;
  font-size: 46px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.faq-suite-title:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4a017, transparent);
  animation: goldShine 4s infinite ease-in-out;
}
@keyframes suiteGlow {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
  to {
    opacity: 0.7;
    transform: scale(1);
  }
}
@keyframes suiteSparkle {
  0% {
    opacity: 0;
    transform: translate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(50px, 50px) scale(1.2);
  }
  to {
    opacity: 0;
    transform: translate(100px, 100px) scale(0.5);
  }
}
@keyframes goldShine {
  0% {
    transform: translate(-100%);
  }
  50% {
    transform: translate(100%);
  }
  to {
    transform: translate(-100%);
  }
}
@media (max-width: 1280px) {
  .royal-faq-suite {
    padding: 50px 0;
  }
  .faq-suite-content {
    padding: 20px;
    gap: 30px;
  }
  .faq-suite-item {
    border-radius: 12px;
  }
  .faq-suite-question {
    padding: 20px;
    font-size: 18px;
  }
  .faq-suite-answer {
    font-size: 16px;
    padding: 0 20px;
  }
  .faq-suite-answer.open {
    padding: 20px;
  }
  .faq-suite-title {
    font-size: 20px;
  }
}
@media (min-width: 1281px) {
  .faq-suite-content {
    padding: 50px;
    gap: 50px;
  }
  .faq-suite-question {
    padding: 30px;
    font-size: 22px;
  }
  .faq-suite-answer {
    font-size: 20px;
    padding: 0 30px;
  }
  .faq-suite-answer.open {
    padding: 30px;
  }
  .faq-suite-title {
    font-size: 52px;
  }
}
.rating-section {
  background: linear-gradient(180deg, #001a2e 0%, #000c1a 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px #00000080;
}
.rating-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0.6;
  pointer-events: none;
  animation: gentlePulse 8s ease-in-out infinite;
}
.rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  max-width: 1400px;
  margin: 0 auto;
}
.rating-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 16px #0006, 0 0 20px #fff3;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translate(50px);
  animation: imageSlideIn 1.2s ease-out 0.8s forwards;
}
.rating-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px #00000080, 0 0 30px #ffffff4d;
}
.rating-text-content {
  max-width: 550px;
  opacity: 0;
  transform: translate(-50px);
  animation: textSlideIn 1.2s ease-out 0.5s forwards;
}
.rating-text-content h2 {
  font-family: Playfair Display, serif;
  font-size: 40px;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  line-height: 1.2;
  position: relative;
}
.rating-text-content h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shine 3s infinite ease-in-out;
}
.rating-text-content p {
  font-family: Inter, sans-serif;
  color: #e0e0e0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes imageSlideIn {
  0% {
    opacity: 0;
    transform: translate(50px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes gentlePulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
  to {
    opacity: 0.6;
    transform: scale(1);
  }
}
@media (max-width: 1280px) {
  .rating-wrapper {
    flex-direction: column;
    padding: 0 15px;
    gap: 20px;
  }
  .rating-text-content h2 {
    font-size: 32px;
    text-align: left;
  }
  .rating-text-content p {
    font-size: 16px;
    text-align: left;
  }
  .rating-image {
    max-width: 100%;
  }
}
@media (min-width: 1281px) {
  .rating-wrapper {
    flex-direction: row;
    gap: 50px;
  }
  .rating-text-content {
    max-width: 600px;
  }
  .rating-text-content h2 {
    font-size: 48px;
  }
  .rating-text-content p {
    font-size: 18px;
  }
}
.why-us-section {
  width: 100%;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #001a2e 0%, #000c1a 100%);
}
.why-us-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  gap: 30px;
}
.why-us-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.why-us-items:hover > :not(:hover) {
  filter: blur(2px);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.why-us-entry {
  background: rgba(0, 28, 46, 0.85) !important;
  box-shadow: 0 8px 32px #0003;
  align-self: center;
  width: 90%;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  animation: fadeInEntry 0.6s ease forwards;
  padding: 20px;
}
.why-us-entry:nth-child(1) {
  animation-delay: 0.1s;
}
.why-us-entry:nth-child(2) {
  animation-delay: 0.2s;
}
.why-us-entry:nth-child(3) {
  animation-delay: 0.3s;
}
.why-us-entry:nth-child(4) {
  animation-delay: 0.4s;
}
.why-us-entry:nth-child(5) {
  animation-delay: 0.5s;
}
.why-us-entry:nth-child(6) {
  animation-delay: 0.6s;
}
.why-us-entry:nth-child(7) {
  animation-delay: 0.7s;
}
.why-us-entry:nth-child(8) {
  animation-delay: 0.8s;
}
.why-us-entry:nth-child(9) {
  animation-delay: 0.9s;
}
@keyframes fadeInEntry {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.why-us-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px #0000004d, inset 0 0 15px #ffffff0d;
}
.why-us-entry h3 {
  color: #fff;
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  align-items: center;
  gap: 15px;
}
.why-us-entry p {
  width: 100%;
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.entry-number {
  background: linear-gradient(135deg, #001a2e, #000c1a);
  padding: 8px 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 10px #ffffff26;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
}
.why-us-entry:hover .entry-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px #ffffff40;
}
.why-us-heading {
  font-family: Playfair Display, serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: left;
  font-size: 42px;
  position: relative;
  overflow: hidden;
}
.why-us-heading:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shine 3s infinite ease-in-out;
}
@keyframes shine {
  0% {
    transform: translate(-100%);
  }
  50% {
    transform: translate(100%);
  }
  to {
    transform: translate(-100%);
  }
}
@media (max-width: 1280px) {
  .why-us-container {
    padding: 15px;
    gap: 20px;
  }
  .why-us-entry {
    width: 100%;
    border-radius: 10px;
    padding: 15px;
  }
  .why-us-entry h3 {
    font-size: 16px;
    gap: 10px;
  }
  .why-us-entry p {
    font-size: 14px;
  }
  .entry-number {
    font-size: 18px;
    padding: 6px 12px;
    min-width: 35px;
    height: 35px;
  }
  .why-us-heading {
    font-size: 32px;
  }
}
@media (min-width: 1281px) {
  .why-us-container {
    padding: 40px;
    gap: 40px;
  }
  .why-us-entry {
    width: 80%;
    max-width: 900px;
    padding: 25px;
  }
  .why-us-entry h3 {
    font-size: 20px;
    gap: 20px;
  }
  .why-us-entry p {
    font-size: 18px;
  }
  .entry-number {
    font-size: 22px;
    padding: 10px 18px;
    min-width: 45px;
    height: 45px;
  }
  .why-us-heading {
    font-size: 48px;
  }
}
.contact {
  padding: 40px 20px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  width: 100%;
}
.form-container {
  max-width: 600px;
  width: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px #0000001a;
  margin: 100px auto;
  box-shadow: 0 0 5px #ffffff4d, 0 0 10px #fff3, 0 0 20px #ffffff1a,
    inset 0 0 15px #ffffff26;
}
.form-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
label {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}
input[type="text"],
input[type="email"],
textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
  transition: border-color 0.3s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px #007bff4d;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
input[type="checkbox"] {
  margin-right: 8px;
}
label div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #555;
}
label div a {
  color: #007bff;
  text-decoration: none;
}
label div a:hover {
  text-decoration: underline;
}
.text-error1,
.email-error,
.textarea-error,
.checkbox-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
}
.btn-2 {
  background: #003c38 !important;
  box-shadow: 0 0 5px #ffffff4d, 0 0 10px #fff3, 0 0 20px #ffffff1a,
    inset 0 0 15px #ffffff26;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-2:hover {
  background: #000e3f !important;
}
.btn-2 span {
  display: inline-block;
}
@media (max-width: 480px) {
  .form-container {
    padding: 20px;
  }
  .form-title {
    font-size: 1.5rem;
  }
  .btn-2 {
    padding: 10px;
  }
}
.velvet-cookie-lounge {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 1000;
  width: 100%;
  background: linear-gradient(
    145deg,
    rgba(30, 15, 50, 0.95) 0%,
    rgba(15, 5, 25, 0.95) 100%
  );
  border-top: 3px solid #b8860b;
  box-shadow: 0 -10px 30px #0009, inset 0 0 20px #b8860b4d;
  animation: loungeSlideIn 1s ease-out forwards;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.velvet-cookie-lounge:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(184, 134, 11, 0.2) 0%,
    transparent 70%
  );
  opacity: 0.7;
  animation: loungeGlow 10s ease-in-out infinite;
}
.velvet-cookie-lounge:after {
  content: "";
  position: absolute;
  top: 20%;
  left: 15%;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 10%,
    transparent 70%
  );
  animation: loungeSparkle 4s infinite ease-in-out;
  opacity: 0;
}
.cookie-lounge-content {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.lounge-text {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  color: #f0e6d6;
  font-family: Montserrat, sans-serif;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.lounge-text a {
  color: gold;
  text-decoration: none;
  position: relative;
  transition: color 0.4s ease;
}
.lounge-text a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  transition: transform 0.4s ease;
  transform: scaleX(0);
}
.lounge-text a:hover:after {
  transform: scaleX(1);
}
.lounge-text a:hover {
  color: #fff8e1;
}
.lounge-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.lounge-btn {
  text-align: center;
  display: inline-block;
  padding: 16px 50px;
  border: 2px solid #b8860b;
  cursor: pointer;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  font-family: Cormorant Garamond, serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 8px;
}
.cookies-accept-js {
  background: linear-gradient(90deg, #ffd700, #f0e6d6);
  color: #1e0f32;
}
.cookies-accept-js:hover {
  background: linear-gradient(90deg, #f0e6d6, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px #b8860b80;
}
.cookies-decline-js {
  background: linear-gradient(90deg, #ff6f61, #ff8c7a);
  color: #1e0f32;
}
.cookies-decline-js:hover {
  background: linear-gradient(90deg, #ff8c7a, #ff6f61);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px #ff6f6180;
}
.lounge-btn:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lounge-btn:hover:before {
  opacity: 1;
}
@keyframes loungeSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(-50%);
  }
}
@keyframes loungeGlow {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
  to {
    opacity: 0.7;
    transform: scale(1);
  }
}
@keyframes loungeSparkle {
  0% {
    opacity: 0;
    transform: translate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(40px, 40px) scale(1.2);
  }
  to {
    opacity: 0;
    transform: translate(80px, 80px) scale(0.5);
  }
}
@media (max-width: 1280px) {
  .cookie-lounge-content {
    padding: 25px 15px;
    gap: 20px;
  }
  .lounge-text {
    font-size: 14px;
    text-align: center;
  }
  .lounge-actions {
    gap: 15px;
  }
  .lounge-btn {
    padding: 14px 40px;
    font-size: 15px;
  }
}
@media (min-width: 1281px) {
  .cookie-lounge-content {
    padding: 50px 120px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .lounge-text {
    font-size: 16px;
    line-height: 1.5;
    max-width: 700px;
    text-align: left;
  }
  .lounge-actions {
    flex-direction: row;
    justify-content: flex-end;
    gap: 30px;
  }
  .lounge-btn {
    padding: 18px 60px;
    font-size: 17px;
  }
}
:root {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #121212;
  background: #000000 !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
.container {
  max-width: 375px;
  min-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.page-section {
  background-color: #fff;
  padding-top: 100px;
}
body {
  overflow-x: hidden !important;
}
#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
