/* Ana container */
#deo-casino-sports-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Her kutu */
.deo-box {
  flex: 1 1 48%;
  background: #121b15;
  border-radius: 16px;
  padding: 20px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 10px #0f0c29;
}

/* Başlık */
.deo-box h2 {
  font-size: 18px;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Buton alanı */
.deo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Tek buton */
.deo-buttons a {
  flex: 1 1 45%;
  min-height: 44px;
  background: linear-gradient(to right, #29f094, #00c97e);
  color: black;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  line-height: 44px;
  font-size: 14px;
  transition: 0.3s;
  white-space: nowrap;
  box-shadow: 0 0 8px #1affb0;
}

.deo-buttons a:hover {
  background: #1affb0;
  color: #000;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  #deo-casino-sports-section {
    flex-direction: column;
  }
}