.lucky7Container {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
  margin: 0 auto;
  padding: 16px;
}

/* Top Section */
.topSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cardHeader {
  flex: 1;
  text-align: center;
}

.cardLockWrapper {
  position: relative;
}

.number {
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.headerTextLow,
.headerTextHigh {
  background-image: linear-gradient(to right, #0088cc, #2c3e50);
  color: white;
  padding: 10px;
  border-radius: 4px;
  font-weight: bold;
}

.centerCard {
  border: 2px solid #ffd700;
  padding: 0 10px;
  margin: 0 20px;
  border-radius: 4px;
  background-color: white;
}

.card {
  border: none;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.suits {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
}

.spade,
.club {
  color: black;
}

.heart,
.diamond {
  color: red;
}

/* Middle Section */
.middleSection {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}

.oddsContainer {
  display: flex;
  gap: 20px;
  flex: 1;
}

.oddsBox {
  flex: 1;
  text-align: center;
  cursor: pointer;
  position: relative;
  padding: 10px;
  border-radius: 6px;
  background-color: white;
  border: 2px solid #ccc;
}

.oddsValue {
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.oddsLabel {
  background-image: linear-gradient(to right, #0088cc, #2c3e50);
  color: white;
  padding: 10px;
  border-radius: 4px;
}

/* Lock Overlay */
.lockOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3a4a5d;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Card Groups Section */
.cardGroups {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}

.group {
  flex: 1;
  text-align: center;
}

.groupOdds {
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.cardsRow {
  display: flex;
  justify-content: center;
  gap: 5px;
}

/* Small Card Styling */
.smallCard {
  border: 2px solid #ffd700;
  border-radius: 4px;
  background-color: white;
  min-width: 40px;
  text-align: center;
  font-weight: bold;
  padding: 8px;
  cursor: pointer;
  position: relative;
}

.miniSuits {
  font-size: 12px;
  display: flex;
  justify-content: center;
  gap: 2px;
}

/* Bottom Cards Row */
.bottomCards {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cardValue {
  font-size: 16px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .middleSection {}

  .cardGroups {
    flex-wrap: wrap;
  }

  .group {
    flex: 1 1 45%;
  }

  .bottomCards {
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4rem;
  }

  .smallCard {
    min-width: 30px;
    padding: 3px 6px;
  }
}