/* Base Styles */
body {
  background-color: black;
  color: white;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Header Styles */
.header {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  border-bottom: 2px solid gold;
}

.header h1 {
  margin: 0;
  color: gold;
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.5);
}

.language-selector {
  color: gold;
  font-size: 16px;
}

.language-selector span {
  cursor: pointer;
}

.language-selector .active {
  font-weight: bold;
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('casino-bg.jpg') center/cover;
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h2 {
  color: gold;
  font-size: 32px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Button Styles */
.btn-gold {
  background: linear-gradient(to right, #FFD700, #DAA520);
  color: black;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Section Styles */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  color: gold;
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: gold;
  margin: 15px auto;
}

.info-section {
  padding: 50px 0;
}

.dark-bg {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 50px 20px;
  border-radius: 10px;
  margin: 30px 0;
}

/* QR Code Section */
.qr-section {
  text-align: center;
  margin-bottom: 50px;
}

.qr-container {
  width: 260px;
  height: 260px;
  margin: 0 auto;
  background-color: white;
  padding: 10px;
}

/* Game Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.game-card {
  background-color: rgba(34, 34, 34, 0.8);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.game-card i {
  font-size: 40px;
  color: gold;
  margin-bottom: 15px;
}

.game-card h4 {
  color: gold;
  margin-bottom: 10px;
}

/* Image Grid (existing styles) */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

.image-container {
  background-color: #222;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

.image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.image-container img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.gold-border {
  border: 3px solid gold;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(34, 34, 34, 0.9);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: rgba(34, 34, 34, 0.9);
}

th, td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

th {
    background-color: rgba(255, 215, 0, 0.2);
    color: gold;
    font-weight: bold;
}

tr:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

/* Responsive Tables */
@media (max-width: 768px) {
    .table-container {
        padding: 5px;
    }
    
    th, td {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* Promotions */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.promo-card {
  background-color: rgba(34, 34, 34, 0.8);
  padding: 25px;
  position: relative;
  border-radius: 10px;
  text-align: center;
}

.promo-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: red;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

/* FAQ Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  background-color: rgba(34, 34, 34, 0.8);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  transition: 0.4s;
  position: relative;
}

.accordion-btn:after {
  content: '+';
  font-size: 20px;
  color: gold;
  position: absolute;
  right: 20px;
}

.accordion-btn.active:after {
  content: '-';
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(50, 50, 50, 0.6);
}

.bonus-image-container {
    text-align: center;
    margin: 20px 0;
}

.bonus-image-container img {
    max-width: 100%;
    height: auto;
}
.floating-icon {

  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  border: 2px solid #FFD700;
  display: flex;
  justify-content: center;
  align-items: center;
}


.floating-icon img {
  width: 100%; 
  height: 100%; 
  right: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.floating-icon:hover img {
  transform: scale(1.1); 
}


.floating-icon:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #FFDF00 0%, #FFCC00 100%);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.9);
}

/* Video Section Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-container {
    background-color: rgba(34, 34, 34, 0.8);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.video-container iframe {
    border-radius: 8px;
    margin-bottom: 15px;
}

.video-container h4 {
    color: gold;
    text-align: center;
    font-size: 18px;
}

/* Referral Program Styles */
.referral-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.referral-text {
    flex: 1;
}

.referral-image {
    flex: 1;
    text-align: center;
}

.referral-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.referral-benefits {
    margin: 25px 0;
    padding-left: 20px;
}

.referral-benefits li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
}

.referral-benefits i {
    color: gold;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Official Dealer Styles */
.dealer-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.dealer-badge {
    flex: 0 0 200px;
    text-align: center;
}