/* =========================================================
   GOOGLE FONTS
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans&display=swap');

/* =========================================
   RESET & BASE
========================================= */
:root{

  --font-body:17px;
  --font-small:14px;

  --title-h1:56px;
  --title-h2:40px;
  --title-h3:32px;
  --title-h4:24px;

  --line:1.8;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body{

background:
url("../img/casino-pattern.svg"),
linear-gradient(
180deg,
#0a0a0a 0%,
#050505 100%
);

background-repeat: repeat;
background-size: 240px 240px;

}

p{
    font-size:var(--font-body);
    line-height:var(--line);
}

a {
  text-decoration: none;
  color: #fff;
  transition: .3s;
}

a:hover {
  color: #d4af37;
}

::selection {
  background: #d4af37;
  color: #000;
}

::-moz-selection {
  background: #d4af37;
  color: #000;
}

img {
  max-width: 100%;
  display: block;
}

video {
  max-width: 100%;
  display: block;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, .page-title, .slide-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}
.page-title,
.games-category-title,
.promo-title,
.vip-card h3{

    font-size:var(--title-h3);

}
/* =========================================
   CONTAINER
========================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* =========================================
   INPUTS & TEXTAREA
========================================= */
input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #111;
  border: 1px solid #222;
  color: #fff;
  transition: all .3s ease;
}

input:focus,
textarea:focus {
  border-color: #d4af37;
  outline: none;
  border-radius: 5px;
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.3),
    0 0 12px rgba(212,175,55,0.15);
  background: #0b0b0b;
}

input::placeholder,
textarea::placeholder {
  color: #666;
  transition: .3s;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: #888;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-gold {
  background: #d4af37;
  color: #000;
}

.btn-gold:hover {
  background: #b9962e;
  border-radius: 3px;
}

.btn-outline-gold {
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 10px 25px;
  display: inline-block;
  transition: .3s;
}

.btn-outline-gold:hover {
  background: #d4af37;
  color: #000;
}

/* =========================================
   SECTION BASE
========================================= */
.section {
  padding: 100px 20px;
}

.section.dark {
  background: #0b0b0b;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: #fff;
  font-size: 36px;
}

.section-title span {
  color: #d4af37;
}

.page-section {
  padding-top: 140px;
  padding-bottom: 80px;
}

/* =========================================
   CARD
========================================= */
.card {
  background: #111;
  border: 1px solid #222;
  padding: 25px;
  transition: .3s;
}

.card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

/* =========================================
   GRID
========================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CINEMATIC SLIDER
========================================================= */
.cinematic-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

@media (max-width: 768px) {
  .cinematic-slider {
    height: 100svh;
  }
}

/* =========================================================
   SLIDES CONTAINER
========================================================= */
.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* =========================================================
   SLIDE
========================================================= */
.cinematic-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
}

.cinematic-slide.active {
  visibility: visible;
  z-index: 2;
}

/* =========================================================
   OUTER / INNER
========================================================= */
.slide-outer,
.slide-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-inner {
  position: relative;
}

/* =========================================================
   BACKGROUND
========================================================= */
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  will-change: transform;
}

@media (max-width: 768px) {
  .slide-bg {
    background-position: center center;
    z-index: 1;
  }
}

/* =========================================================
   DARK OVERLAY
========================================================= */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.65) 100%
  );
  z-index: 2;
}

/* =========================================================
   SLIDE CONTENT
========================================================= */
.slide-content {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: min(90%, 1100px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  z-index: 9999 !important;
  padding: 20px !important;
}

@media (max-width: 768px) {
  .slide-content {
    padding: 20px;
  }
}

/* =========================================================
   SLIDE TITLE
========================================================= */
.slide-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 8vw, 150px) !important;
  line-height: .9 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  margin-bottom: 20px !important;
  text-shadow: 0 5px 25px rgba(0,0,0,.45);
  position: relative !important;
  z-index: 10000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@media (max-width: 768px) {
  .slide-title {
    font-size: clamp(44px, 16vw, 82px) !important;
    line-height: .95 !important;
    letter-spacing: .05em !important;
    margin-bottom: 16px !important;
  }
}

/* =========================================================
   SLIDE SUBTITLE
========================================================= */
.slide-sub {
  width: min(900px, 90vw) !important;
  font-size: clamp(18px, 2vw, 28px) !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,.9) !important;
  text-shadow: 0 3px 12px rgba(0,0,0,.45);
  position: relative !important;
  z-index: 10000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  will-change: transform;
}

@media (max-width: 768px) {
  .slide-sub {
    font-size: 16px !important;
    line-height: 1.5 !important;
    width: 95% !important;
  }
}

/* =========================================================
   HERO BUTTON
========================================================= */
.hero-btn {
  margin-top: 35px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff !important;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .12em;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: .35s ease;
  position: relative !important;
  z-index: 10000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  will-change: transform, opacity;
}

.hero-btn:hover {
  background: #fff;
  color: #000 !important;
}

@media (max-width: 768px) {
  .hero-btn {
    margin-top: 24px !important;
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* =========================================================
   SLIDE TEXT ANIMATIONS
========================================================= */
.slide-content > * {
  opacity: 0;
  transform: translateY(60px);
  transition: all .8s ease;
}

.slide.active .slide-content > * {
  opacity: 1;
  transform: translateY(0);
}

.slide.active .slide-title {
  transition-delay: .3s;
}

.slide.active .slide-sub {
  transition-delay: .7s;
}

.slide-title span,
.slide-sub span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: all .6s ease;
  will-change: transform, opacity;
}

.slide.active .slide-title span,
.slide.active .slide-sub span {
  opacity: 1;
  transform: translateY(0);
}

.slide.active .slide-title span:nth-child(1) { transition-delay: .3s; }
.slide.active .slide-title span:nth-child(2) { transition-delay: .6s; }
.slide.active .slide-sub span:nth-child(1)   { transition-delay: .9s; }
.slide.active .slide-sub span:nth-child(2)   { transition-delay: 1.2s; }

/* BACKGROUND ZOOM */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
  z-index: 0;
}

.slide.active::before {
  transform: scale(1.12);
}

/* overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.8)
  );
  z-index: 1;
}

.slide-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* =========================================================
   INDICATORS
========================================================= */
.slider-ui {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  z-index: 50;
}

@media (max-width: 768px) {
  .slider-ui {
    bottom: 120px;
  }
}

.indicators {
  display: flex;
  gap: 12px;
}

.dot {
  width: 56px;
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: .3s ease;
}

.dot:hover {
  background: rgba(255,255,255,.25);
}

.dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #8a6a12 0%,
    #d4af37 40%,
    #fff3b0 50%,
    #d4af37 60%,
    #8a6a12 100%
  );
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow:
    0 0 10px rgba(212,175,55,.8),
    0 0 20px rgba(212,175,55,.4);
}

.dot.active::after {
  animation: dotProgress var(--duration) linear forwards;
}

@keyframes dotProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}



/* =========================================================
   SHINE TITLE
========================================================= */
.shine-title {
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 10px;
  color: #fff;
  text-shadow:
    0 0 10px rgba(255,255,255,.4),
    0 0 25px rgba(255,215,0,.5),
    0 0 50px rgba(255,215,0,.35);
  animation:
    jewelGlow 3s ease-in-out infinite alternate,
    jewelFloat 4s ease-in-out infinite;
  overflow: hidden;
}

.shine-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.95),
    transparent
  );
  transform: skewX(-20deg);
  animation: jewelShine 3.2s infinite;
}

@keyframes jewelGlow {
  0%   { text-shadow: 0 0 10px rgba(255,255,255,.4), 0 0 25px rgba(255,215,0,.4), 0 0 50px rgba(255,215,0,.25); }
  100% { text-shadow: 0 0 20px rgba(255,255,255,.9), 0 0 45px rgba(255,215,0,.8), 0 0 90px rgba(255,215,0,.6); }
}

@keyframes jewelFloat {
  0%   { transform: translateY(-6px); }
  100% { transform: translateY(6px); }
}

@keyframes jewelShine {
  0%   { left: -150%; }
  100% { left: 180%; }
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  transition: .3s;
}

.header.scrolled {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  max-height: 40px;
}

@media (max-width: 768px) {
  .header {
    padding: 18px 20px;
  }
}

/* ================= SOCIAL ================= */
.social {
  display: flex;
  gap: 8px;
}

.social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  transition: .3s;
}

.social a:hover {
  color: #d4af37;
}

/* ================= LANG DROPDOWN ================= */
.lang-dropdown {
  position: relative;
  z-index: 10000;
}

.selected-lang {
  cursor: pointer;
}

.selected-lang img {
  width: 22px;
  height: 16px;
  display: block;
}

.selected-lang:hover {
  opacity: 0.8;
}

.lang-menu {
  position: absolute;
  top: 25px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.lang-dropdown.active .lang-menu {
  opacity: 1;
  pointer-events: auto;
}

.lang-menu a img {
  width: 22px;
  height: 16px;
  object-fit: cover;
}

/* ================= MENU ================= */
.menu {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all .35s ease;
  z-index: 10000;
}

.menu.active {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

.menu ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.menu li {
  list-style: none;
}

.menu a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
}

.menu a:hover {
  color: #d4af37;
}

.menu a::after {
  display: none !important;
}

@media (max-width: 768px) {
  .menu {
    top: 80px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
    width: 85%;
    padding: 25px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    opacity: 0;
  }

  .menu.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  .menu ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* ================= HAMBURGER ================= */
.hamburger {
  width: 26px;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: .3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* =========================================
   FLOATING MENU PRO
========================================= */
/* =========================================
   PREMIUM FLOATING MENU
========================================= */

.floating-menu{

    position:fixed;

    top:50%;
    right:20px;

    transform:translateY(-50%);

    z-index:9999;

    display:flex;
    flex-direction:column;

    gap:12px;

}

.float-item{

    position:relative;

    width:58px;
    height:58px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    backdrop-filter:blur(14px);

    border:
    1px solid rgba(212,175,55,.18);

    box-shadow:
    0 10px 25px rgba(0,0,0,.35),
    inset 0 0 15px rgba(212,175,55,.05);

    color:#fff;

    transition:.35s ease;

    overflow:hidden;

}

.float-item::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:80%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transition:.6s;

}

.float-item:hover::before{

    left:180%;

}

.float-item i{

    font-size:20px;

    position:relative;
    z-index:2;

    transition:.35s;

}

.float-item:hover{

    transform:translateX(-6px);

    border-color:#d4af37;

    box-shadow:
    0 0 20px rgba(212,175,55,.25),
    0 15px 30px rgba(0,0,0,.45);

}

.float-item:hover i{

    color:#d4af37;

    transform:scale(1.15);

}

.float-item span{

    position:absolute;

    right:75px;

    top:50%;

    transform:
    translateY(-50%)
    translateX(15px);

    white-space:nowrap;

    padding:10px 16px;

    border-radius:14px;

    background:
    rgba(0,0,0,.75);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(212,175,55,.2);

    color:#fff;

    font-size:13px;

    letter-spacing:1px;

    opacity:0;

    pointer-events:none;

    transition:.3s;

}

.float-item:hover span{

    opacity:1;

    transform:
    translateY(-50%)
    translateX(0);

}

/* ======================
   MOBILE VERSION
====================== */

@media(max-width:768px){

    .floating-menu{

        top:auto;

        bottom:15px;

        left:50%;

        right:auto;

        transform:translateX(-50%);

        flex-direction:row;

        gap:10px;

        padding:10px 14px;

        border-radius:25px;

        background:
        rgba(0,0,0,.65);

        backdrop-filter:blur(14px);

        border:
        1px solid rgba(212,175,55,.15);

    }

    .float-item{

        width:50px;
        height:50px;

        border-radius:14px;

    }

    .float-item:hover{

        transform:none;

    }

    .float-item span{

        display:none;

    }

}

/* =========================================
   FOOTER
========================================= */
.footer {

  color: #bbb;
  padding: 80px 20px 40px;

background:

linear-gradient(
180deg,
#060606,
#000
);

border-top:
1px solid rgba(212,175,55,.15);

}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer-col {
text-align: center;
}

.footer-col img {
  justify-content: center;
  display: inline;
  text-align: center;
}

.footer-col p {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #aaa;
}

.footer-col h4 {
  color: #d4af37;
  margin-bottom: 20px;
}

.footer-col input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
}

.footer-col input:focus {
  border-color: #d4af37;
  outline: none;
}

.footer-col button {
  width: 100%;
  padding: 10px;
  background: #d4af37;
  border: none;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.footer-col button:hover {
  border-radius: 3px;
  background: #b9962e;
}

.footer-social {
  margin-top: 15px;

}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  transition: .3s;
}

.footer-social a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 13px;
}

/* =========================================
   CONTACT PAGE
========================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  background: #111;
  padding: 30px;
  border: 1px solid #222;
  border-radius: 14px 14px 14px 14px;
}

.contact-info h3 {
  margin-bottom: 15px;
  color: #d4af37;
}

.contact-info p {
  color: #aaa;
  margin-bottom: 20px;
}

.contact-info a {
  color: #ddd;
}

.contact-info a:hover {
  color: #d4af37;
}

.contact-item {
  margin-bottom: 15px;
  color: #ddd;
}

.contact-item i {
  color: #d4af37;
  margin-right: 10px;
}

.contact-form-box {
  background: #111;
  padding: 30px;
  border: 1px solid #222;
  border-radius: 14px 14px 14px 14px;
}

.contact-form-box input,
.contact-form-box textarea {
  background: #0b0b0b;
}

.map-box {
  margin-top: 60px;
  border: 1px solid #222;
  overflow: hidden;
}

/* =========================================
   ABOUT PAGE
========================================= */
#page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 20px 100px;
  
}

.page-title {
  text-align: center;
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.page-title span {
  color: #d4af37;
}

.page-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 40px;
  font-size: 16px;
}

.about-section {
  margin-bottom: 70px;
  padding: 20px;
  border: 1px solid #d4af37;
  border-radius: 14px 14px 14px 14px;
  background:
    linear-gradient(
        145deg,
        rgba(92, 78, 33, 0.05),
        #0a0a0a
    );
}

.about-section h3 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 22px;
  letter-spacing: 1px;
}

.about-section p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 15px;
  max-width: 100%;
  text-align: justify;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 28px;
  }

  .about-section p {
    max-width: 100%;
  }
}

/* =========================================
   WHY BOXES
========================================= */
.why-boxes {
  margin-top: 30px;
}

.why-box {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 30px 25px;
  margin: 10px;
  text-align: center;
  transition: .3s;
  height: 100%;
}

.why-box i {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 15px;
}

.why-box h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}

.why-box p {
  color: #aaa;
  font-size: 14px;
}

.why-box:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

/* =========================================
   GAMES PAGE
========================================= */
.games-page {
  padding-top: 160px;
  padding-bottom: 100px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.games-grid.slots {
  grid-template-columns: repeat(4, 1fr);
}

.games-category {
  margin-top: 40px;
  margin-bottom: 80px;

}

.games-category-title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
}

/* GAME CARD */
.game-card {
  position: relative;
  height: 350px;
  overflow: hidden;
  border: 1px solid #222;
  cursor: pointer;
  transition: .4s;
  border-radius: 14px 14px 14px 14px;
}

.game-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .7s ease;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  transition: .4s;
}

.game-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.6),
    transparent
  );
  transform: translateY(20px);
  transition: .4s;
}

.game-content h4 {
  color: #fff;
  margin-bottom: 5px;
}

.game-tag {
  display: inline-block;
  font-size: 11px;
  color: #d4af37;
  margin-bottom: 10px;
}

.game-content p {
  font-size: 15px;
  color: #ddd;
  opacity: 0;
  transform: translateY(10px);
  transition: .4s;
  max-height: 60px;
  overflow: auto;
}

.game-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.game-card:hover .game-bg {
  transform: scale(1.15);
}

.game-card:hover .game-overlay {
  background: rgba(0,0,0,0.3);
}

.game-card:hover .game-content {
  transform: translateY(0);
}

.game-card:hover .game-content p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .games-grid,
  .games-grid.slots {
    grid-template-columns: 1fr;
  }
}
@media(max-width:768px){

    .game-card{

        height:260px;

    }

}
/* =========================================
   LIVE PAGE
========================================= */


.live-section{
    padding:80px 0;
}

.live-layout{

    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;

    gap:28px;

    padding:22px;

    border:1px solid #222;

    border-radius:16px;

    background:linear-gradient(
        145deg,
        rgba(92,78,33,.05),
        #0a0a0a
    );

}


/*==================================================
PLAYER
==================================================*/

.live-player{

    display:flex;

    flex-direction:column;

    min-width:0;

}

.video-box{

    position:relative;

    aspect-ratio:16/9;

    background:#000;

    border-radius:18px;

    overflow:hidden;

}

.video-box video{

    width:100%;

    height:100%;

    object-fit:cover;

}

.video-info{

    margin-top:22px;

}

.video-info h2{

    color:#fff;

    font-size:30px;

    margin-bottom:8px;

}

.video-info p{

    color:#888;

}


/*==================================================
LIVE BADGE
==================================================*/

.live-badge{

    position:absolute;

    left:18px;

    top:18px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:8px 16px;

    border-radius:30px;

    background:rgba(0,0,0,.55);

    color:#fff;

    font-size:13px;

    font-weight:700;

}

.live-badge span{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#ff3030;

    animation:pulse 1.2s infinite;

}

@keyframes pulse{

0%{transform:scale(.8);}
50%{transform:scale(1.4);}
100%{transform:scale(.8);}

}


/*==================================================
PLAYLIST
==================================================*/

.playlist{

    background:#141414;

    border-radius:18px;

    overflow:hidden;

    display:flex;

    flex-direction:column;

}

.playlist-title{

    padding:20px;

    background:#1b1b1b;

    color:#fff;

    font-size:18px;

    font-weight:bold;

}


/*==================================================
LIST
==================================================*/

.playlist-list{

    overflow-y:auto;

}

.playlist-list::-webkit-scrollbar{

    width:7px;

}

.playlist-list::-webkit-scrollbar-thumb{

    background:#555;

    border-radius:20px;

}


/*==================================================
ITEM
==================================================*/

.playlist-item{

    display:flex;

    gap:14px;

    padding:14px;

    cursor:pointer;

    transition:.3s;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.playlist-item:hover{

    background:#1e1e1e;

}

.playlist-item.active{

    background:#242424;

    box-shadow:inset 4px 0 #d4af37;

}


/*==================================================
THUMB
==================================================*/

.thumb{

    width:150px;

    flex-shrink:0;

    aspect-ratio:16/9;

    overflow:hidden;

    border-radius:12px;

    background:#222;

    position:relative;

}

.thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/*==================================================
PLAY ICON
==================================================*/

.play-icon{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

}

.play-icon i{

    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, .9);

}

.playlist-item.active .play-icon{

    display:none;

}


/*==================================================
TEXT
==================================================*/

.item-info{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.item-info h4{

    color:#fff;

    font-size:17px;

    margin-bottom:6px;

}

.item-info p{

    color:#888;

    font-size:13px;

}


/*==================================================
MOBILE
==================================================*/

@media (max-width:991px){

.live-layout{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.playlist{
    background:transparent;
}

.playlist-title{
    display:none;
}

.playlist-list{

    display:flex;

    gap:16px;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-snap-type:x mandatory;

    scroll-behavior:smooth;

    padding:4px 20px 16px;

    -webkit-overflow-scrolling:touch;

    cursor:grab;

}

.playlist-list.dragging{

    cursor:grabbing;

    scroll-behavior:auto;

}

.playlist-list::-webkit-scrollbar{
    display:none;
}

.playlist-item{

    flex:0 0 84%;

    scroll-snap-align:center;

    border-radius:14px;

    background:#1b1b1b;

    overflow:hidden;

}

.thumb{

    width:100%;

}

.item-info{

    padding:14px;

}

}
/* =========================================
   PROMOTIONS PAGE
========================================= */
#promotions-page {
  padding: 120px 0;

}

#promotions-page .container {
  max-width: 1100px;
  margin: 0 auto;
}

.promo-block {
  margin-bottom: 80px;
  text-align: justify;
    padding: 20px;
  border: 1px solid #d4af37;
  border-radius: 14px 14px 14px 14px;
  background:
    linear-gradient(
        145deg,
        rgba(92, 78, 33, 0.05),
        #0a0a0a
    );
}

.promo-block-title {
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 30px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promo-card {
  padding: 30px;
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  transition: .3s;
  text-align: center;
}

.promo-card h4 {
  color: #fff;
  margin-bottom: 10px;
}

.promo-card p {
  color: #aaa;
  font-size: 14px;
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.promo-title {
  font-size: 26px;
  margin-bottom: 15px;
  color: #fff;
}

.promo-sub {
  color: #aaa;
  line-height: 1.7;
}

.promo-description {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #aaa;
}

.promo-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.promo-list li {
  margin-bottom: 10px;
  color: #ddd;
}

.junket-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.agent-block {
  text-align: center;
}

.agent-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.agent-box {
  background: #111;
  padding: 25px;
  border-radius: 10px;
  width: 220px;
  border: 1px solid #222;
  transition: .3s;
}

.agent-box i {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 10px;
}

.agent-box h4 {
  color: #fff;
  margin-bottom: 10px;
}

.agent-box p {
  color: #aaa;
  font-size: 13px;
}

.agent-box:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agent-features {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  #promotions-page {
    padding: 80px 0;
  }

  #promotions-page .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .promo-card {
    padding: 20px;
    border-radius: 12px;
  }

  .promo-title {
    font-size: 22px;
  }

  .promo-block {
    margin-bottom: 50px;
  }

  .promo-description {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 600px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   RESTAURANT PAGE
========================================= */
#restaurant-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.restaurant-hero {
  position: relative;
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 50px;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* MENU SYSTEM */
.menu-system {
  margin: 60px 0 100px;
}

.menu-tabs {
  display: flex;
  gap: 10px;
}

.tab {
  padding: 12px 25px;
  background: #111;
  color: #aaa;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  transition: .3s;
}

.tab.active {
  background: #1a1a1a;
  color: #d4af37;
}

.menu-content {
  background: #1a1a1a;
  padding: 50px;
  border-radius: 0 14px 14px 14px;
}

.menu-pane {
  display: none;
}

.menu-pane.active {
  display: block;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-row {
  min-height:320px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border: 1px solid #222;
  border-radius: 16px;
  transition: .35s;
}

.menu-row:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212,175,55,0.05);
}

.menu-row.reverse {
  flex-direction: row-reverse;
}

.menu-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-left img {
  max-width: 300px;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: .4s;
}

.menu-row:hover img {
  transform: scale(1.05);
}

.menu-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-title {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-align: center;
}

.menu-right ul {
  list-style: none;
}

.menu-right li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  font-size: 16px;
  color: #ddd;
}

.price {
  color: #d4af37;
  font-weight: 600;
}

@media (max-width: 768px) {
  .menu-row {
    flex-direction: column !important;
    gap: 25px;
    text-align: center;
  }

  .menu-left img {
    max-width: 100%;
    height: 100%;
  }

  .menu-content {
    padding: 25px;
  }

  .menu-title {
    font-size: 28px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 25px;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}

/* =========================================
   VIP PAGE
========================================= */
.vip-card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #222;
  border-radius: 18px;
  padding: 45px;
  margin-bottom: 40px;
  transition: .3s;
  position: relative;
}

.vip-card:hover {
  border-color: #d4af37;
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(212,175,55,0.1);
}

.vip-card h3 {
  color: #d4af37;
  font-size: 24px;
  margin-bottom: 20px;
}

.vip-card p {
  color: #aaa;
  line-height: 1.8;
}

.vip-intro {
  max-width: 700px;
  margin-bottom: 30px;
}

.vip-box {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 25px;
  margin: 10px;
  text-align: center;
  transition: .3s;
  height: 100%;
}

.vip-box i {
  font-size: 26px;
  color: #d4af37;
  margin-bottom: 15px;
}

.vip-box h4 {
  color: #fff;
  margin-bottom: 10px;
}

.vip-box p {
  font-size: 14px;
}

.vip-box:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

/* BENEFITS */
.benefit-box {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 25px;
  margin: 10px;
  text-align: center;
  transition: .3s;
}

.benefit-box i {
  font-size: 22px;
  color: #d4af37;
  margin-bottom: 10px;
}

.benefit-box:hover {
  border-color: #d4af37;
  transform: scale(1.05);
}

/* CTA */
.vip-cta {
  margin-top: 60px;
  padding: 60px 30px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border-radius: 20px;
  border: 1px solid #222;
  text-align: center;
}

.vip-cta h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

.vip-cta p {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 25px;
}

@media (max-width: 768px) {
  .vip-card {
    padding: 25px;
  }

  .vip-box {
    margin-bottom: 20px;
  }

  .benefit-box {
    margin-bottom: 15px;
  }
}

/* VIP ANIMATIONS */
.vip-effect {
  animation: vipFloat 4s ease-in-out infinite;
}

@keyframes vipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.night-effect {
  position: relative;
  overflow: hidden;
}

.night-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.9),
    transparent
  );
  animation: nightShine 4s infinite;
}

@keyframes nightShine {
  to { left: 200%; }
}

.luxury-effect {
  animation: luxuryDepth 6s ease-in-out infinite;
}

@keyframes luxuryDepth {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

/* =========================================
   DISCOUNT PAGE
========================================= */
#discount-page {
  padding: 120px 0 80px;

}

.discount-intro {
  text-align: center;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  padding: 20px;
  border: 1px solid #d4af37;
  border-radius: 14px 14px 14px 14px;
  background:
    linear-gradient(
        145deg,
        rgba(92, 78, 33, 0.05),
        #0a0a0a
    );

}

.discount-table-wrapper {
  overflow-x: auto;
  margin-bottom: 50px;
}

.discount-table {
  width: 100%;
  border-collapse: collapse;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}

.discount-table th {
  background: #1a1a1a;
  color: #d4af37;
  padding: 15px;
  text-align: left;
}

.discount-table td {
  padding: 15px;
  color: #ccc;
  border-top: 1px solid #222;
}

.discount-table tr:hover {
  background: #161616;
}

.discount-table .highlight {
  background: rgba(212,175,55,0.1);
}

.discount-benefits {
  max-width: 700px;
  text-align: center;
  margin: 0 auto 40px;
  padding: 20px;
  border: 1px solid #d4af37;
  border-radius: 14px 14px 14px 14px;
  background:
    linear-gradient(
        145deg,
        rgba(92, 78, 33, 0.05),
        #0a0a0a
    );

}

.discount-benefits h3 {
  color: #d4af37;
  margin-bottom: 20px;
}

.discount-benefits ul {
  list-style: none;
  padding: 0;
  text-align:center;

}

.discount-benefits li {
  color: #ccc;
  margin: 10px 0;
}

.status-cards {
  display: flex;
  gap: 20px;
}

.status-card {
  flex: 1;
  background: #111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: .3s;
}

.status-card h4 {
  color: #fff;
  margin-bottom: 10px;
}

.status-card p {
  color: #aaa;
  font-size: 14px;
}

.status-card.bronze { border: 1px solid #cd7f32; }
.status-card.silver { border: 1px solid #c0c0c0; }
.status-card.gold   { border: 1px solid #d4af37; }

.status-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

@media (max-width: 768px) {
  .status-cards {
    flex-direction: column;
  }
}

/* =========================================
   TOP JACKPOTS
========================================= */
.jackpot-top-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.jackpot-card {
  min-width: 240px;
  padding: 18px 28px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(212,175,55,0.25);
  backdrop-filter: blur(12px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.4),
    inset 0 0 30px rgba(212,175,55,0.05);
  text-align: center;
  transition: 0.4s;
}

.jackpot-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.jackpot-card.grand {
  border-color: #d4af37;
  box-shadow:
    0 0 25px rgba(212,175,55,0.2),
    0 10px 30px rgba(0,0,0,0.45);
}

.jackpot-label {
  font-size: 13px;
  letter-spacing: 4px;
  color: #999;
  margin-bottom: 10px;
}

.jackpot-value {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-shadow:
    0 0 10px rgba(212,175,55,0.5),
    0 0 25px rgba(212,175,55,0.3);
  animation: jackpotPulse 2s infinite;
}

.jackpot-arrow {
  color: #00ff99;
  font-size: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .5s ease;
}

.jackpot-arrow.show {
  opacity: 1;
  transform: translateY(-4px);
}

.currency {
  font-size: 28px;
  color: #d4af37;
}

@keyframes jackpotPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .jackpot-card {
    min-width: 180px;
    padding: 14px 20px;
  }

  .jackpot-value {
    font-size: 30px;
  }
}

/* =========================================
   VIP MESSAGE TOAST
========================================= */
#vip-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
  z-index: 9999;
  border: 1px solid rgba(255,255,255,0.15);
}

#vip-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   HERO PREMIUM EFFECTS
========================================= */
.hero-3d {
  position: relative;
  z-index: 20;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  text-shadow:
    0 0 10px rgba(255,255,255,.5),
    0 0 30px rgba(255,215,0,.35),
    0 0 60px rgba(255,215,0,.2);
}

.hero-sub-3d {
  will-change: transform;
}

/* =========================================
   PARTICLES
========================================= */
.hero-particle,
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255,215,0,1) 0%,
    rgba(255,215,0,.4) 60%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(255,215,0,.9),
    0 0 20px rgba(255,215,0,.5);
  opacity: .8;
  z-index: 3;
  animation:
    particleFloat linear infinite,
    particlePulse ease-in-out infinite;
}

@keyframes particleFloat {
  0%   { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(25px, -40px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes particlePulse {
  0%, 100% { opacity: .4; scale: .8; }
  50%       { opacity: 1;  scale: 1.4; }
}

/* sparkle alias (used on first slide) */
@keyframes sparkle {
  0%   { opacity: 0.5; transform: scale(0.8); }
  50%  { opacity: 1;   transform: scale(1.2); }
  100% { opacity: 0.5; transform: scale(0.8); }
}
