/* ========== GOLDEN ACE · LUXURY CASINO ========== */

:root {
  --black: #0a0a0a;
  --black-lighter: #1a1a1a;
  --gold: #D4AF37;
  --gold-light: #f5e7b2;
  --gold-dark: #b49450;
  --marble: #f8f5f0;
  --velvet: #2c1a1a;
  --font-serif: 'Bodoni Moda', serif;
  --font-sans: 'Inter', sans-serif;
  --easing: cubic-bezier(0.65, 0, 0.35, 1);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--black);
  color: white;
  font-family: var(--font-sans);
  overflow-x: hidden;
}
.container{
  max-width: 1200px;
}
section{
  overflow: hidden;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s, visibility 1s;
}

.preloader-emblem {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: emblemPulse 2s infinite;
}

@keyframes emblemPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

.preloader-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 1rem;
  animation: lineSlide 1.5s infinite;
}

@keyframes lineSlide {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.preloader-percent {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: var(--gold);
  letter-spacing: 4px;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: 0.4s;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.navbar-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: var(--font-serif);
}

.navbar-logo span {
  color: var(--gold);
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav-toggle span {
  width: 30px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(212,175,55,0.1), transparent 60%),
              linear-gradient(135deg, var(--black) 0%, #0d0d0d 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
}

.hero-title span {
  color: var(--gold);
  display: block;
  font-size: 6rem;
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.btn-gold {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: 0.3s;
  margin-right: 1rem;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline-gold {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: 0.3s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-card {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  perspective: 1500px;
}

.hero-card-inner {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  padding: 3rem;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: var(--shadow-dark);
  transform: rotateY(15deg) rotateX(5deg);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-card-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.1), transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.card-ace {
  font-size: 8rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-serif);
  line-height: 1;
  text-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.card-suit {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.5;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-supreme {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 0.5rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-serif);
}

.section-header.light .section-title {
  color: white;
}

/* ========== GAMES SECTION ========== */
.games {
  padding: 100px 0;
  background: var(--black);
}

.gamesSwiper {
  padding: 2rem 0 4rem;
}
.swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  border-top: 50%;
  background: #fff;
}
.game-card {
  background: linear-gradient(145deg, #121212, #0a0a0a);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.5);
  box-shadow: var(--shadow-gold);
}

.game-card:hover::before {
  transform: translateX(100%);
}

.game-chip {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.game-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.game-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.game-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-trigger {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}

.game-trigger:hover {
  background: var(--gold);
  color: var(--black);
}

/* ========== EXPERIENCE SECTION ========== */
.experience {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a, #0f0f0f);
}

.experience-badge {
  font-size: 0.8rem;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.experience-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
}

.experience-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.2rem;
}

.feature-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.marble-card {
  position: relative;
  width: 100%;
  height: 500px;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2000&auto=format&fit=crop') center/cover;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.marble-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.marble-card-gold {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.marble-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212,175,55,0.3);
}

.marble-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.marble-value {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-serif);
  margin-bottom: 0.2rem;
}

.marble-unit {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* ========== VIP SECTION ========== */
.vip {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a, #030303);
  position: relative;
}

.vip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.05), transparent 70%);
}

.vip-card {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.vip-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
}

.vip-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1rem;
  color: rgba(212,175,55,0.3);
  font-family: var(--font-serif);
}

.vip-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.vip-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.vip-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.vip-counter {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.counter {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
}

.counter-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 100px 0;
  background: var(--black);
}

.contact-card {
  background: linear-gradient(145deg, #121212, #0a0a0a);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 3rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-supreme {
  font-size: 0.8rem;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.contact-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.form-group {
  position: relative;
  margin-bottom: 0;
}

.form-control {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  outline: none;
  position: relative;
  z-index: 2;
  color: #fff !important;
}

.form-control:focus {
  background: transparent;
  box-shadow: none;
}

.form-label {
  position: absolute;
  left: 0;
  top: 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: 0.3s;
  pointer-events: none;
  z-index: 1;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: -0.8rem;
  font-size: 0.7rem;
  color: var(--gold);
}

.form-control:focus ~ .form-line {
  width: 100%;
}

select.form-control {
  appearance: none;
  background: transparent;
  cursor: pointer;
}

select.form-control option {
  background: var(--black);
  color: white;
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
}

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 0;
  background: #030303;
  border-top: 1px solid rgba(212,175,55,0.1);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.footer-brand span {
  color: var(--gold);
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

/* ========== MODAL ========== */
.modal-luxury {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-luxury.active {
  display: flex;
}

.modal-content-luxury {
  background: linear-gradient(145deg, #121212, #0a0a0a);
  border: 1px solid var(--gold);
  padding: 3rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalEnter 0.5s;
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-emblem {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.modal-title-luxury {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.modal-text-luxury {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.modal-close-luxury {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}

.modal-close-luxury:hover {
  background: var(--gold);
  color: var(--black);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-title span {
    font-size: 5rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s;
    border-left: 1px solid rgba(212,175,55,0.2);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  .hero{
    text-align: center;
    padding-top: 100px;
  }
  .hero-card{
    margin: 20px auto 0 auto;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-title br{
    display: none;
  }
  .hero-title span {
    font-size: 4rem;
  }
  .hero-text{
    max-width: 100%;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .marble-card {
    height: 400px;
    margin-top: 2rem;
  }
  
  .footer-copyright {
    text-align: left;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-title span {
    font-size: 3.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .experience-title {
    font-size: 2.5rem;
  }
  
  .contact-card {
    padding: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-title span {
    font-size: 2.6rem;
  }
  
  .btn-gold, .btn-outline-gold {
    display: block;
    margin: 1rem 0;
    text-align: center;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
}