* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #004d47;
  background: linear-gradient(135deg, #b9c4c9 0%, #52958b 100%);
  min-height: 100vh;
}

.header {
  background: rgba(0, 77, 71, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 77, 71, 0.3);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 2rem;
  font-weight: bold;
  color: #b9c4c9;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.header__nav {
  display: flex;
  gap: 2rem;
}

.header__link {
  color: #b9c4c9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.header__link:hover {
  color: #52958b;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #52958b;
  transition: width 0.3s ease;
}

.header__link:hover::after {
  width: 100%;
}

.hero {
  margin-top: 80px;
  padding: 1rem 0 5rem;
  background: linear-gradient(135deg, #004d47 0%, #128277 50%, #52958b 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(185, 196, 201, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(82, 149, 139, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(18, 130, 119, 0.05) 0%,
      transparent 50%
    );
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,120 C150,90 300,60 450,80 C600,100 750,70 900,85 C1050,100 1100,110 1200,100 L1200,120 Z" fill="%23b9c4c9"/></svg>');
  background-size: cover;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 500px;
}

.hero__logo {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #b9c4c9 0%, #52958b 50%, #b9c4c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  position: relative;
  animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.2) saturate(1.3);
  }
}

.hero__subtitle {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #52958b 0%, #b9c4c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__countdown {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  border-radius: 32px;
  padding: 3rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero__countdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(185, 196, 201, 0.1) 0%,
    rgba(82, 149, 139, 0.05) 50%,
    rgba(18, 130, 119, 0.1) 100%
  );
  border-radius: 32px;
  z-index: -1;
}

.countdown__title {
  color: #b9c4c9;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.countdown__timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.countdown__unit {
  background: rgba(0, 77, 71, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  min-width: 100px;
  text-align: center;
  border: 1px solid rgba(82, 149, 139, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown__unit:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.countdown__number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #52958b 0%, #b9c4c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.countdown__label {
  font-size: 0.9rem;
  color: rgba(185, 196, 201, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  font-weight: 300;
}

.game-selection {
  padding: 4rem 0;
  background: #b9c4c9;
}

.game-selection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.selection-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 77, 71, 0.1);
  border: 1px solid rgba(18, 130, 119, 0.1);
}

.selection-card__title {
  font-size: 1.5rem;
  color: #004d47;
  margin-bottom: 1rem;
  font-weight: 600;
}

.selection-card__select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #52958b;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  color: #004d47;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.selection-card__select:focus {
  outline: none;
  border-color: #128277;
  box-shadow: 0 0 0 3px rgba(18, 130, 119, 0.1);
}

.selection-card__total {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.total__label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.total__amount {
  font-size: 2rem;
  font-weight: bold;
  color: #004d47;
}

.selection-card__button {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.selection-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 130, 119, 0.3);
}

.content-section {
  padding: 3rem 0;
  background: white;
}

.content-section:nth-child(even) {
  background: #f8f9fa;
}

.content-section__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-section__title {
  font-size: 2.5rem;
  color: #004d47;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.content-section__text {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.table-section {
  padding: 4rem 0;
  background: #004d47;
}

.table-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.odds-table {
  width: 100%;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.odds-table__header {
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  color: white;
}

.odds-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e9ecef;
}

.odds-table__cell {
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.odds-table__header .odds-table__cell {
  font-size: 1.2rem;
  font-weight: 700;
}

.odds-table__body .odds-table__row:hover {
  background: #f8f9fa;
}

.results-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #52958b 0%, #128277 50%, #004d47 100%);
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(185, 196, 201, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(circle at 70% 60%, rgba(0, 77, 71, 0.1) 0%, transparent 60%);
  animation: resultsGlow 6s ease-in-out infinite alternate;
}

@keyframes resultsGlow {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.results-section__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.results-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
  backdrop-filter: blur(40px);
  border-radius: 40px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateX(2deg);
  transition: transform 0.5s ease;
}

.results-card:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}

.results-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(18, 130, 119, 0.1) 45deg,
    rgba(82, 149, 139, 0.2) 90deg,
    rgba(185, 196, 201, 0.1) 135deg,
    transparent 180deg,
    transparent 360deg
  );
  animation: cardRotate 8s linear infinite;
  z-index: -1;
}

@keyframes cardRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.results-card::after {
  content: "🔥";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgba(255, 100, 0, 0.3));
  animation: fireFloat 3s ease-in-out infinite;
}

@keyframes fireFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px) rotate(-5deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(5deg);
  }
}

.results-card__title {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #004d47 0%, #128277 50%, #52958b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 2rem 0 1.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 4px 16px rgba(0, 77, 71, 0.2);
}

.results-card__date {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.8;
}

.results-card__numbers {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  perspective: 1000px;
}

.results-card__number {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #128277 0%, #004d47 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 8px 32px rgba(18, 130, 119, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: numberFloat 3s ease-in-out infinite;
  animation-delay: calc(var(--index) * 0.1s);
}

.results-card__number:nth-child(1) {
  --index: 0;
}
.results-card__number:nth-child(2) {
  --index: 1;
}
.results-card__number:nth-child(3) {
  --index: 2;
}
.results-card__number:nth-child(4) {
  --index: 3;
}
.results-card__number:nth-child(5) {
  --index: 4;
}
.results-card__number:nth-child(6) {
  --index: 5;
}

@keyframes numberFloat {
  0%,
  100% {
    transform: translateY(0px) rotateY(0deg);
  }
  50% {
    transform: translateY(-8px) rotateY(10deg);
  }
}

.results-card__number:hover {
  transform: translateY(-5px) scale(1.1) rotateY(15deg);
  box-shadow: 0 16px 48px rgba(18, 130, 119, 0.6),
    inset 0 3px 6px rgba(255, 255, 255, 0.3),
    inset 0 -3px 6px rgba(0, 0, 0, 0.3);
}

.results-card__number::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 20%;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(4px);
}

.results-card__cta {
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  color: white;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(18, 130, 119, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.results-card__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.results-card__cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 48px rgba(18, 130, 119, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.results-card__cta:hover::before {
  left: 100%;
}

.footer {
  background: #004d47;
  padding: 4rem 0 2rem;
  color: #b9c4c9;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer__logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #52958b;
}

.footer__text {
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer__images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer__image {
  width: 120px;
  height: 80px;
  background: rgba(185, 196, 201, 0.1);
  border-radius: 30px;
  border: 2px dashed rgba(185, 196, 201, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(185, 196, 201, 0.5);
  font-size: 0.8rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.footer__link {
  color: #52958b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #b9c4c9;
}

@media (max-width: 768px) {
  .hero__container,
  .game-selection__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__logo {
    font-size: 3rem;
    text-align: center;
  }

  .countdown__timer {
    gap: 0.5rem;
  }

  .countdown__unit {
    min-width: 60px;
    padding: 0.75rem;
  }

  .countdown__number {
    font-size: 1.5rem;
  }

  .odds-table__cell {
    padding: 1rem;
  }

  .results-card__numbers {
    gap: 0.5rem;
  }

  .results-card__number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .footer__images {
    gap: 1rem;
  }

  .footer__image {
    width: 100px;
    height: 60px;
  }
  .countdown__label {
    font-size: 0.6rem;
    letter-spacing: 0px;
  }
}
.results-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.result-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 80px rgba(0, 77, 71, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #004d47 0%, #128277 50%, #52958b 100%);
  border-radius: 32px 32px 0 0;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.result-date {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004d47;
}

.result-draw {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  opacity: 0.8;
}

.dividends-badge {
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(18, 130, 119, 0.3);
}

.main-numbers-section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.numbers-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.number-ball {
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, #dc3545 0%, #c82333 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 8px 32px rgba(220, 53, 69, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: ballFloat 3s ease-in-out infinite;
  animation-delay: calc(var(--index) * 0.1s);
}

.number-ball:nth-child(1) {
  --index: 0;
}
.number-ball:nth-child(2) {
  --index: 1;
}
.number-ball:nth-child(3) {
  --index: 2;
}
.number-ball:nth-child(4) {
  --index: 3;
}
.number-ball:nth-child(5) {
  --index: 4;
}
.number-ball:nth-child(6) {
  --index: 5;
}

@keyframes ballFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(-2deg);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

.number-ball:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 12px 48px rgba(220, 53, 69, 0.6),
    inset 0 3px 6px rgba(255, 255, 255, 0.3),
    inset 0 -3px 6px rgba(0, 0, 0, 0.3);
}

.number-ball::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 25%;
  width: 25%;
  height: 25%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(3px);
}

.dividends-table {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 77, 71, 0.1);
  background: white;
}

.table-header {
  background: linear-gradient(135deg, #004d47 0%, #128277 100%);
  color: white;
}

.table-row {
  display: grid;
  grid-template-columns: 60px 2fr 1fr 1fr;
  align-items: center;
  min-height: 60px;
}

.table-cell {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
}

.table-header .table-cell {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-body .table-row {
  border-bottom: 1px solid rgba(185, 196, 201, 0.2);
  transition: background-color 0.3s ease;
}

.table-body .table-row:hover {
  background: linear-gradient(
    90deg,
    rgba(82, 149, 139, 0.05) 0%,
    rgba(185, 196, 201, 0.05) 100%
  );
}

.table-body .table-row:last-child {
  border-bottom: none;
}

.division-number {
  background: linear-gradient(135deg, #52958b 0%, #128277 100%);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(82, 149, 139, 0.3);
}

.match-description {
  color: #004d47;
  font-weight: 500;
}

.dividend-amount {
  color: #128277;
  font-weight: 700;
  font-size: 1.1rem;
}

.winners-count {
  color: #666;
  font-weight: 600;
}

.result-card--compact {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
}

.result-card--compact .result-header {
  margin-bottom: 1.5rem;
}

.result-card--compact .number-ball {
  width: 60px;
  height: 60px;
  font-size: 1.2rem;
}

.result-card--compact .dividends-badge {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}

@media (max-width: 768px) {
  .result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .numbers-container {
    gap: 0.75rem;
  }

  .number-ball {
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
  }

  .table-row {
    grid-template-columns: 50px 2fr 1fr 1fr;
  }

  .table-cell {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
  }

  .division-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .result-card--compact .number-ball {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .table-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .table-cell {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(185, 196, 201, 0.1);
  }

  .table-cell:last-child {
    border-bottom: none;
  }

  .table-header .table-cell {
    background: rgba(0, 77, 71, 0.1);
    color: #004d47;
  }
}
.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.cart-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 2rem;
}

.cart-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #004d47 0%, #128277 50%, #52958b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.cart-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 300;
}

.ticket-selection {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 80px rgba(0, 77, 71, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ticket-selection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #004d47 0%, #128277 50%, #52958b 100%);
  border-radius: 32px 32px 0 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2rem;
  color: #004d47;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-description {
  color: #666;
  font-size: 1rem;
  opacity: 0.8;
}

.number-selection {
  margin-bottom: 3rem;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.number-button {
  width: 60px;
  height: 60px;
  border: 2px solid #52958b;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #004d47;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.number-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.number-button span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.number-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(82, 149, 139, 0.3);
}

.number-button.selected {
  border-color: #004d47;
}

.number-button.selected::before {
  transform: scale(1);
}

.number-button.selected span {
  color: white;
}

.selected-numbers {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px dashed #52958b;
}

.selected-title {
  font-size: 1.2rem;
  color: #004d47;
  margin-bottom: 1rem;
  font-weight: 600;
}

.selected-list {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 50px;
  align-items: center;
}

.selected-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  animation: selectedPop 0.3s ease;
}

@keyframes selectedPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.selected-placeholder {
  color: #999;
  font-style: italic;
}

.quick-pick-section {
  margin-bottom: 2rem;
}

.quick-pick-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-pick-btn {
  background: linear-gradient(135deg, #52958b 0%, #128277 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(82, 149, 139, 0.3);
  position: relative;
  overflow: hidden;
}

.quick-pick-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.quick-pick-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(82, 149, 139, 0.4);
}

.quick-pick-btn:hover::before {
  left: 100%;
}

.game-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.option-group {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 1.5rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.option-group:hover {
  border-color: #52958b;
}

.option-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #004d47;
  margin-bottom: 1rem;
}

.option-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #52958b;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  color: #004d47;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.option-select:focus {
  outline: none;
  border-color: #128277;
  box-shadow: 0 0 0 3px rgba(18, 130, 119, 0.1);
}

.order-summary {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 80px rgba(0, 77, 71, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.summary-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.summary-title {
  font-size: 1.8rem;
  color: #004d47;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.summary-subtitle {
  color: #666;
  font-size: 0.9rem;
}

.cart-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(82, 149, 139, 0.1);
  transition: all 0.3s ease;
}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(82, 149, 139, 0.1);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.item-title {
  font-weight: 600;
  color: #004d47;
}

.item-remove {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.item-remove:hover {
  background: rgba(220, 53, 69, 0.1);
}

.item-details {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.item-price {
  font-weight: 700;
  color: #128277;
  font-size: 1.1rem;
}

.total-section {
  background: linear-gradient(135deg, #004d47 0%, #128277 100%);
  color: white;
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.total-row:last-child {
  margin-bottom: 0;
  font-size: 1.3rem;
  font-weight: 700;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.customer-info {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  border: 1px solid rgba(82, 149, 139, 0.1);
}

.info-group {
  margin-bottom: 1rem;
}

.info-group:last-child {
  margin-bottom: 0;
}

.info-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #004d47;
  margin-bottom: 0.5rem;
}

.info-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #52958b;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  color: #004d47;
  transition: all 0.3s ease;
}

.info-input:focus {
  outline: none;
  border-color: #128277;
  box-shadow: 0 0 0 3px rgba(18, 130, 119, 0.1);
  transform: translateY(-1px);
}

.info-input::placeholder {
  color: #999;
}

.notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  border-radius: 32px;
  padding: 4rem 3rem;
  box-shadow: 0 32px 128px rgba(0, 77, 71, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(18, 130, 119, 0.2);
  z-index: 10000;
  text-align: center;
  max-width: 500px;
  width: 90%;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}

.notification.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 77, 71, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notification-overlay.show {
  opacity: 1;
  visibility: visible;
}

.notification-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: successBounce 0.8s ease;
}

@keyframes successBounce {
  0% {
    transform: scale(0) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

.notification-title {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #004d47 0%, #128277 50%, #52958b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.notification-message {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.notification-details {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(82, 149, 139, 0.1);
}

.notification-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.notification-detail:last-child {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(82, 149, 139, 0.2);
}

.notification-close {
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(18, 130, 119, 0.3);
}

.notification-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 130, 119, 0.4);
}
.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  color: white;
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(18, 130, 119, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(18, 130, 119, 0.5);
}

.checkout-btn:hover::before {
  left: 100%;
}

.checkout-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 968px) {
  .cart-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .order-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .cart-title {
    font-size: 2.5rem;
  }

  .number-grid {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 0.75rem;
  }

  .number-button {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .game-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quick-pick-buttons {
    flex-direction: column;
  }

  .ticket-selection,
  .order-summary {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .cart-container {
    padding: 0 1rem;
  }

  .number-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .selected-list {
    gap: 0.25rem;
  }

  .selected-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
}
.lottery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.lottery-hero {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 128px rgba(0, 77, 71, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lottery-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(18, 130, 119, 0.05) 90deg,
    rgba(82, 149, 139, 0.1) 180deg,
    rgba(185, 196, 201, 0.05) 270deg,
    transparent 360deg
  );
  animation: heroRotate 15s linear infinite;
  z-index: -1;
}

@keyframes heroRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lottery-title {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #004d47 0%, #128277 50%, #52958b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -3px;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.1);
  }
}

.lottery-subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 300;
}

.jackpot-amount {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 8px 32px rgba(18, 130, 119, 0.3);
  margin-bottom: 1rem;
  animation: jackpotPulse 2s ease-in-out infinite;
}

@keyframes jackpotPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.jackpot-label {
  font-size: 1.2rem;
  color: #128277;
  font-weight: 600;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.play-now-btn {
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 12px 48px rgba(18, 130, 119, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-now-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.play-now-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 64px rgba(18, 130, 119, 0.6);
}

.play-now-btn:hover::before {
  left: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 64px rgba(0, 77, 71, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #004d47 0%, #128277 50%, #52958b 100%);
  border-radius: 24px 24px 0 0;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0, 77, 71, 0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #004d47;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.how-to-play {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 80px rgba(0, 77, 71, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004d47;
  text-align: center;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid rgba(82, 149, 139, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(82, 149, 139, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #128277 0%, #004d47 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 32px rgba(18, 130, 119, 0.3);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #004d47;
  margin-bottom: 1rem;
}

.step-description {
  color: #666;
  line-height: 1.6;
}

.prizes-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 80px rgba(0, 77, 71, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.prizes-table {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 77, 71, 0.1);
  background: white;
}

.table-header {
  background: linear-gradient(135deg, #004d47 0%, #128277 100%);
  color: white;
}

.table-row {
  display: grid;
  grid-template-columns: 80px 2fr 1fr 1fr;
  align-items: center;
  min-height: 60px;
}

.table-cell {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
}

.table-header .table-cell {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-body .table-row {
  border-bottom: 1px solid rgba(185, 196, 201, 0.2);
  transition: background-color 0.3s ease;
}

.table-body .table-row:hover {
  background: linear-gradient(
    90deg,
    rgba(82, 149, 139, 0.05) 0%,
    rgba(185, 196, 201, 0.05) 100%
  );
}

.division-badge {
  background: linear-gradient(135deg, #52958b 0%, #128277 100%);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(82, 149, 139, 0.3);
}

.prize-amount {
  color: #128277;
  font-weight: 700;
  font-size: 1.2rem;
}

.odds-text {
  color: #666;
  font-weight: 500;
}

.winners-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 80px rgba(0, 77, 71, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.winner-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(82, 149, 139, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.winner-card::before {
  content: "🎉";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  opacity: 0.7;
}

.winner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(82, 149, 139, 0.15);
}

.winner-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #128277;
  margin-bottom: 0.5rem;
}

.winner-location {
  color: #666;
  font-weight: 500;
  margin-bottom: 1rem;
}

.winner-date {
  color: #999;
  font-size: 0.9rem;
}

.countdown-section {
  background: linear-gradient(135deg, #004d47 0%, #128277 100%);
  border-radius: 32px;
  padding: 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.countdown-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(185, 196, 201, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(82, 149, 139, 0.1) 0%,
      transparent 50%
    );
  animation: countdownGlow 4s ease-in-out infinite alternate;
}

@keyframes countdownGlow {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.countdown-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  min-width: 120px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.countdown-number {
  font-size: 3rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .lottery-title {
    font-size: 2.5rem;
  }

  .jackpot-amount {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 60px 2fr 1fr 1fr;
  }

  .table-cell {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
  }

  .countdown-timer {
    gap: 1rem;
  }

  .countdown-unit {
    min-width: 80px;
    padding: 1.5rem 1rem;
  }

  .countdown-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .lottery-container {
    padding: 0 1rem;
  }

  .lottery-hero,
  .how-to-play,
  .prizes-section,
  .winners-section,
  .countdown-section {
    padding: 2rem;
  }

  .countdown-timer {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .countdown-unit {
    min-width: 70px;
    padding: 1rem;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .table-cell {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(185, 196, 201, 0.1);
  }
}
