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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #1a1a1a;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #0066ff;
  color: white;
}

.btn-primary:hover {
  background-color: #0052cc;
}

.btn-outline {
  background-color: transparent;
  color: #0066ff;
  border: 2px solid #0066ff;
}

.btn-outline:hover {
  background-color: #0066ff;
  color: white;
}

.btn-large {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
}

.btn-center {
  display: block;
  margin: 30px auto;
  max-width: 300px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.game-item {
  background-color: #2d2d2d;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.game-item:hover {
  transform: translateY(-5px);
}

.game-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.hero-center {
  text-align: center;
}

.hero-center h1 {
  font-size: 2.5rem;
  margin: 30px 0;
  background: linear-gradient(45deg, #0066ff, #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.casino-preview {
  margin: 30px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.casino-preview img {
  width: 100%;
  height: auto;
}

/* Sections */
section {
  padding: 40px 0;
}

.registration-section {
  background-color: #1a1a1a;
}

.registration-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #0066ff;
}

.registration-section p {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #cccccc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.feature-column h3 {
  color: #0066ff;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.feature-column ul {
  list-style: none;
}

.feature-column li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #cccccc;
}

.feature-column li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: bold;
}

/* Games Section */
.games-section {
  background-color: #0f0f0f;
}

.games-showcase {
  display: grid
;
    /* grid-template-columns: 1fr; */
    gap: 30px; 
    align-content: center;
    justify-content: center;
}

.game-card {
  background-color: #2d2d2d;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-10px);
}

.game-card.featured {
  grid-row: span 2;
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card.featured img {
  height: 300px;
}

.game-info {
  padding: 20px;
}

.game-info h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.game-info p {
  color: #00ff88;
  font-weight: 600;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.provider-item {
  background-color: #2d2d2d;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.provider-item:hover {
  transform: translateY(-5px);
}

.provider-item img {
  width: 100%;
  height: auto;
}

/* Bonuses Section */
.bonuses-section {
  background-color: #1a1a1a;
}

.bonuses-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #0066ff;
}

.bonuses-section p {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #cccccc;
}

.bonus-table {
  overflow-x: auto;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #2d2d2d;
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #404040;
}

th {
  background-color: #0066ff;
  color: white;
  font-weight: 600;
}

td {
  color: #cccccc;
}

tr:hover {
  background-color: #404040;
}

/* RTP Section */
.rtp-section {
  background-color: #0f0f0f;
}

.rtp-section h2 {
  font-size: 2.2rem; 
  margin-bottom: 20px;
  color: #0066ff;
}

.rtp-section p { 
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #cccccc;
}

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

/* Live Games Section */
.live-games-section {
  background-color: #1a1a1a;
}

.live-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.live-game-card {
  background-color: #2d2d2d;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.live-game-card:hover {
  transform: translateY(-10px);
}

.live-game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Tournament Section */
.tournament-section {
  background-color: #0f0f0f;
}

.tournament-section h2 {
  font-size: 2.2rem; 
  margin-bottom: 20px;
  color: #0066ff;
}

.tournament-section p { 
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #cccccc;
}

.tournament-features ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.tournament-features li {
  padding: 15px 0;
  padding-left: 30px;
  position: relative;
  color: #cccccc;
  font-size: 1.1rem;
}

.tournament-features li::before {
  content: "🏆";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Loyalty Section */
.loyalty-section {
  background-color: #1a1a1a;
}

ol{
  padding: 0 30px;
  font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.loyalty-section h2 {
  font-size: 2.2rem; 
  margin-bottom: 20px;
  color: #0066ff;
}

.loyalty-section p { 
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #cccccc;
}

.loyalty-table {
  overflow-x: auto;
}

/* Verification Section */
.verification-section {
  background-color: #0f0f0f;
}

.verification-section h2 {
  font-size: 2.2rem; 
  margin-bottom: 20px;
  color: #0066ff;
}

.verification-section p { 
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #cccccc;
}

.verification-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.step {
  background-color: #2d2d2d;
  padding: 30px;
  border-radius: 15px;
}

.step h3 {
  color: #0066ff;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.step ul {
  list-style: none;
}

.step li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #cccccc;
}

.step li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: bold;
}

/* FAQ Section */
.faq-section {
  background-color: #1a1a1a;
}

.faq-section h2 {
  font-size: 2.2rem; 
  margin-bottom: 20px;
  color: #0066ff;
}

.faq-section p { 
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #cccccc;
}

.faq-features ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.faq-features li {
  padding: 15px 0;
  padding-left: 30px;
  position: relative;
  color: #cccccc;
  font-size: 1.1rem;
}

.faq-features li::before {
  content: "📱";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Payment Section */
.payment-section {
  background-color: #0f0f0f;
  padding: 40px 0;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.payment-item {
  background-color: #2d2d2d;
  padding: 15px;
  border-radius: 10px; 
  transition: transform 0.3s ease;
}

.payment-item:hover {
  transform: translateY(-5px);
}

.payment-item img {
  width: 100%;
  height: auto;
}

/* Payment Systems Section */
.payment-systems-section {
  background-color: #1a1a1a;
}

.payment-systems-section h2 {
  font-size: 2.2rem; 
  margin-bottom: 20px;
  color: #0066ff;
}

.payment-systems-section p { 
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #cccccc;
}

.payment-table {
  overflow-x: auto;
}

/* VIP Section */
.vip-section {
  background-color: #0f0f0f;
}

.vip-section h2 {
  font-size: 2.2rem; 
  margin-bottom: 20px;
  color: #0066ff;
}

.vip-section p { 
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #cccccc;
}

.vip-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.vip-tier {
  background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #0066ff;
}

.vip-tier h3 {
  color: #0066ff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.vip-tier ul {
  list-style: none;
}

.vip-tier li {
  padding: 10px 0;
  color: #cccccc;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  padding: 60px 0 30px;
  border-top: 1px solid #404040;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #0066ff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #0066ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #404040;
  color: #888888;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-bottom a {
  color: #0066ff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-center h1 {
    font-size: 2rem;
  }
  
  .games-showcase {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .verification-steps {
    grid-template-columns: 1fr;
  }
  
  .vip-benefits {
    grid-template-columns: 1fr;
  }
  
  .nav-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .btn-large {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  table {
    font-size: 14px;
  }
  
  th, td {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .hero-center h1 {
    font-size: 1.5rem;
  }
  
  .game-grid {
    grid-template-columns: 1fr;
  }
  
  .payment-methods {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  section h2 {
    font-size: 1.8rem;
  }
  
  .btn-center {
    max-width: 250px;
  }
}

.centered-image { 
            display: block; 
            margin: 0 auto; 
            width: 75%;
            height: auto;
}