/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(11, 20, 16, 0.7), rgba(11, 20, 16, 0.9)), url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 2rem;
}

/* Games Section */
.games-section {
  padding: 5rem 5%;
  background: var(--bg-color);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

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

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.game-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.game-info {
  padding: 2rem;
  text-align: center;
}

.game-info h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.game-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Features */
.features {
  padding: 5rem 5%;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature h3 {
  color: var(--text-main);
  margin-bottom: 1rem;
}

.feature p {
  color: var(--text-muted);
}

/* Specific Game UI */
.game-container {
  max-width: 1000px;
  margin: 2rem auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.game-balance {
  font-size: 1.5rem;
  color: var(--primary);
  font-family: var(--font-family);
  margin-bottom: 2rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

/* Slots */
.slots-machine {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.slot-reel {
  width: 100px;
  height: 100px;
  background: #080E0B;
  border: 2px solid var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  transition: transform 0.5s;
}

/* Roulette */
.roulette-board {
  max-width: 600px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  background: var(--primary);
  padding: 2px;
  border-radius: 4px;
}

.roulette-number {
  background: #111;
  color: #fff;
  padding: 10px 0;
  cursor: pointer;
  font-weight: bold;
}
.roulette-number.red { background: #8b0000; }
.roulette-number.black { background: #111; }
.roulette-number.green { background: #006400; grid-column: span 12; }

/* Blackjack */
.cards-area {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  min-height: 140px;
}

.playing-card {
  width: 100px;
  height: 140px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.playing-card.red { color: #d00; }

.game-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
