* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c4a52;
  background-color: #f4ebdb;
  overflow-x: hidden;
}

.header {
  background: linear-gradient(135deg, #2c4a52 0%, #537072 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(44, 74, 82, 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: #f4ebdb;
  text-decoration: none;
  letter-spacing: -1px;
}

.header__nav {
  display: flex;
  gap: 2rem;
}

.header__link {
  color: #f4ebdb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.header__link:hover {
  color: #8e9b97;
  background-color: rgba(244, 235, 219, 0.1);
}

.hero {
  background: linear-gradient(135deg, #2c4a52 0%, #537072 50%, #8e9b97 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(244, 235, 219, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(244, 235, 219, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(142, 155, 151, 0.1) 0%,
      transparent 50%
    );
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #f4ebdb;
  clip-path: polygon(
    0 50%,
    15% 80%,
    35% 40%,
    50% 70%,
    65% 30%,
    80% 60%,
    100% 20%,
    100% 100%,
    0 100%
  );
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__logo {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(45deg, #f4ebdb, #ffffff, #f4ebdb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(244, 235, 219, 0.5);
  letter-spacing: -2px;
  position: relative;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(244, 235, 219, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(244, 235, 219, 0.7));
  }
}

.hero__timer {
  background: linear-gradient(
    135deg,
    rgba(244, 235, 219, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__timer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: timerShine 4s linear infinite;
}

@keyframes timerShine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero__timer-title {
  font-size: 1.4rem;
  color: #2c4a52;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.hero__countdown {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero__time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #2c4a52, #537072);
  padding: 1.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(44, 74, 82, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-width: 90px;
}

.hero__time-unit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: unitShine 3s ease-in-out infinite;
}

@keyframes unitShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.hero__time-value {
  font-size: 3rem;
  font-weight: 900;
  color: #f4ebdb;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero__time-label {
  font-size: 0.8rem;
  color: #8e9b97;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.nav-menu {
  background: #f4ebdb;
  padding: 2rem 0;
  border-bottom: 1px solid #8e9b97;
  overflow: hidden;
}

.nav-menu__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow: hidden;
}

.nav-menu__items {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-menu__items::-webkit-scrollbar {
  display: none;
}

@media (min-width: 769px) {
  .nav-menu__items::-webkit-scrollbar {
    height: 4px;
  }

  .nav-menu__items::-webkit-scrollbar-track {
    background: #8e9b97;
    border-radius: 2px;
  }

  .nav-menu__items::-webkit-scrollbar-thumb {
    background: #537072;
    border-radius: 2px;
  }
}

.nav-menu__item {
  flex-shrink: 0;
  background: #8e9b97;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nav-menu__item--active {
  background: linear-gradient(135deg, #2c4a52, #537072);
}

.nav-menu__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 74, 82, 0.2);
}

.nav-menu__link {
  display: block;
  padding: 1rem 1.5rem;
  color: #f4ebdb;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.nav-menu__link span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.2rem;
}

.game-selection {
  background: #f4ebdb;
  padding: 3rem 0;
}

.game-selection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.game-selection__section {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(44, 74, 82, 0.1);
}

.game-selection__title {
  font-size: 1.3rem;
  color: #2c4a52;
  margin-bottom: 1rem;
  font-weight: 600;
}

.game-selection__select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #8e9b97;
  border-radius: 10px;
  font-size: 1rem;
  color: #2c4a52;
  background: #f4ebdb;
  cursor: pointer;
  margin-bottom: 1rem;
}

.game-selection__total {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c4a52;
  margin: 1rem 0;
}

.game-selection__button {
  background: linear-gradient(135deg, #2c4a52, #537072);
  color: #f4ebdb;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.game-selection__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 74, 82, 0.3);
}

.content-section {
  background: white;
  padding: 3rem 0;
}

.content-section:nth-child(even) {
  background: #f4ebdb;
}

.content-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-section__title {
  font-size: 2rem;
  color: #2c4a52;
  margin-bottom: 1rem;
  font-weight: 700;
}

.content-section__text {
  font-size: 1.1rem;
  color: #537072;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.odds-table {
  background: linear-gradient(135deg, #ffffff, #f4ebdb);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 74, 82, 0.15),
    0 0 0 1px rgba(44, 74, 82, 0.1);
  margin: 3rem auto;
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.odds-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 49%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 51%
  );
  pointer-events: none;
}

.odds-table__header {
  background: linear-gradient(135deg, #2c4a52 0%, #537072 50%, #2c4a52 100%);
  color: #f4ebdb;
  padding: 2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.odds-table__header::before {
  content: "🎯";
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  font-size: 2rem;
  opacity: 0.3;
}

.odds-table__header::after {
  content: "🎯";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  font-size: 2rem;
  opacity: 0.3;
}

.odds-table__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.odds-table__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 100%;
}

.odds-table__row {
  transition: all 0.3s ease;
  position: relative;
}

.odds-table__row:hover {
  background: linear-gradient(
    90deg,
    rgba(44, 74, 82, 0.05),
    rgba(83, 112, 114, 0.05),
    rgba(44, 74, 82, 0.05)
  );
  transform: scale(1.02);
  z-index: 1;
}

.odds-table__cell {
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  position: relative;
  border-bottom: 1px solid rgba(142, 155, 151, 0.2);
  white-space: nowrap;
}

.odds-table__cell--header {
  background: linear-gradient(135deg, #8e9b97, #537072);
  color: #f4ebdb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  border-bottom: 3px solid #2c4a52;
}

.odds-table__row:nth-child(even)
  .odds-table__cell:not(.odds-table__cell--header) {
  background: linear-gradient(
    90deg,
    rgba(244, 235, 219, 0.3),
    rgba(244, 235, 219, 0.5),
    rgba(244, 235, 219, 0.3)
  );
}

.odds-table__row:first-child .odds-table__cell:first-child::before {
  content: "👑";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.results-card {
  background: linear-gradient(135deg, #2c4a52 0%, #537072 50%, #8e9b97 100%);
  border-radius: 25px;
  padding: 3rem;
  color: #f4ebdb;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(44, 74, 82, 0.3),
    0 10px 40px rgba(44, 74, 82, 0.2), inset 0 1px 0 rgba(244, 235, 219, 0.1);
  margin: 3rem auto;
  border: 1px solid rgba(244, 235, 219, 0.2);
  transition: all 0.5s ease;
  max-width: 1200px;
}

.results-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 100px rgba(44, 74, 82, 0.4),
    0 20px 60px rgba(44, 74, 82, 0.3), inset 0 1px 0 rgba(244, 235, 219, 0.2);
}

.results-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(244, 235, 219, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(244, 235, 219, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.results-card::after {
  content: "🔥";
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(244, 235, 219, 0.3));
  animation: fireGlow 3s ease-in-out infinite alternate;
}

@keyframes fireGlow {
  0% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

.results-card__title {
  font-size: 1.8rem;
  margin: 3rem 0 1rem;
  font-weight: 700;
  color: #f4ebdb;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(44, 74, 82, 0.5);
}

.results-card__date {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #8e9b97;
  font-weight: 500;
  position: relative;
  z-index: 1;
  background: rgba(244, 235, 219, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid rgba(244, 235, 219, 0.2);
}

.results-card__numbers {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.results-card__number {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #f4ebdb, rgba(244, 235, 219, 0.9));
  color: #2c4a52;
  border: 2px solid rgba(244, 235, 219, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(44, 74, 82, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.results-card__number::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8e9b97, #537072, #8e9b97);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.results-card__number:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(44, 74, 82, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.results-card__number:hover::before {
  opacity: 1;
}

.results-card__button {
  background: linear-gradient(135deg, #f4ebdb, rgba(244, 235, 219, 0.9));
  color: #2c4a52;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(244, 235, 219, 0.8);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(44, 74, 82, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
}

.results-card__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(142, 155, 151, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.results-card__button:hover {
  background: linear-gradient(135deg, #ffffff, #f4ebdb);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(44, 74, 82, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: #8e9b97;
}

.results-card__button:hover::before {
  left: 100%;
}

.footer {
  background: #2c4a52;
  color: #f4ebdb;
  padding: 3rem 0 1rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer__logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #f4ebdb;
}

.footer__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #8e9b97;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer__images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer__image {
  width: 100px;
  height: 60px;
  border-radius: 5px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__link {
  color: #8e9b97;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #f4ebdb;
}

@media (max-width: 768px) {
  .header__container {
    padding: 0 1rem;
    gap: 1rem;
  }

  .header__nav {
    gap: 0.1rem;
  }

  .header__link {
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
  }

  .hero__container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero__logo {
    font-size: 2.5rem;
  }

  .hero__countdown {
    gap: 0.5rem;
  }

  .hero__time-value {
    font-size: 1.8rem;
  }

  .hero__time-unit {
    min-width: 70px;
    padding: 1rem 0.8rem;
  }

  .nav-menu {
    padding: 1.5rem 0;
    overflow: hidden;
  }

  .nav-menu__container {
    padding: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .nav-menu__items {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1rem 0.5rem 1rem;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 0;
  }

  .nav-menu__items::-webkit-scrollbar {
    display: none;
  }

  .nav-menu__item {
    flex-shrink: 0;
    min-width: auto;
    max-width: none;
  }

  .nav-menu__link {
    padding: 1rem 1.5rem;
    white-space: nowrap;
    display: block;
    border-radius: 10px;
  }

  .odds-table {
    margin: 2rem 0;
    border-radius: 15px;
    width: 100%;
    overflow: visible;
  }

  .odds-table__header {
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
  }

  .odds-table__header::before,
  .odds-table__header::after {
    display: none;
  }

  .odds-table__wrapper {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    border-radius: 0 0 15px 15px;
    background: inherit;
  }

  .odds-table__wrapper::-webkit-scrollbar {
    height: 8px;
  }

  .odds-table__wrapper::-webkit-scrollbar-track {
    background: rgba(142, 155, 151, 0.3);
    border-radius: 4px;
  }

  .odds-table__wrapper::-webkit-scrollbar-thumb {
    background: #537072;
    border-radius: 4px;
  }

  .odds-table__table {
    min-width: 600px;
    width: auto;
  }

  .odds-table__cell {
    padding: 1rem 0.8rem;
    font-size: 0.9rem;
    min-width: 80px;
  }

  .odds-table__cell--header {
    font-size: 1rem;
    padding: 1.2rem 0.8rem;
    position: sticky;
    top: 0;
    z-index: 10;
    font-weight: 700;
  }

  .odds-table__row:hover {
    transform: none;
    background: none;
  }

  .odds-table__row:first-child .odds-table__cell:first-child::before {
    font-size: 1.2rem;
    left: 0.3rem;
  }

  .odds-table__row:nth-child(odd)
    .odds-table__cell:not(.odds-table__cell--header) {
    background: rgba(244, 235, 219, 0.2);
  }

  .game-selection__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-section__title {
    font-size: 1.5rem;
  }

  .results-card {
    margin: 2rem 0;
    border-radius: 15px;
    padding: 2rem 1rem;
  }

  .results-card__numbers {
    gap: 0.5rem;
  }

  .results-card__number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .footer__images {
    gap: 1rem;
  }

  .footer__image {
    width: 80px;
    height: 50px;
  }
}
.syndicate-selection {
  background: #f4ebdb;
  padding: 3rem 0;
}

.syndicate-selection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.syndicate-selection__title {
  font-size: 2rem;
  color: #2c4a52;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.syndicate-selection__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.syndicate-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(44, 74, 82, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.syndicate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #537072, #8e9b97);
}

.syndicate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 74, 82, 0.2);
}

.syndicate-card.selected {
  border-color: #537072;
  background: linear-gradient(
    135deg,
    rgba(83, 112, 114, 0.05),
    rgba(244, 235, 219, 0.3)
  );
}

.syndicate-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.syndicate-card__badge {
  background: linear-gradient(135deg, #537072, #8e9b97);
  color: #f4ebdb;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.syndicate-card__emoji {
  font-size: 2rem;
}

.syndicate-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c4a52;
  margin-bottom: 0.5rem;
}

.syndicate-card__games {
  color: #537072;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.syndicate-card__details {
  margin-bottom: 1.5rem;
}

.syndicate-card__detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.syndicate-card__label {
  color: #537072;
}

.syndicate-card__value {
  font-weight: 600;
  color: #2c4a52;
}

.syndicate-card__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c4a52;
  text-align: center;
  margin-bottom: 1rem;
}

.syndicate-card__checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 1rem;
}

.syndicate-card__checkbox input {
  width: 20px;
  height: 20px;
  accent-color: #537072;
}

.game-selection {
  background: white;
  padding: 3rem 0;
}

.game-selection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.game-selection__section {
  background: #f4ebdb;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(44, 74, 82, 0.1);
}

.game-selection__title {
  font-size: 1.3rem;
  color: #2c4a52;
  margin-bottom: 1rem;
  font-weight: 600;
}

.game-selection__select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #8e9b97;
  border-radius: 10px;
  font-size: 1rem;
  color: #2c4a52;
  background: white;
  cursor: pointer;
  margin-bottom: 1rem;
}

.game-selection__checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid #8e9b97;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-selection__checkbox:hover {
  border-color: #537072;
}

.game-selection__checkbox input {
  width: 20px;
  height: 20px;
  accent-color: #537072;
}

.game-selection__checkbox-label {
  font-weight: 500;
  color: #2c4a52;
}

.game-selection__checkbox-desc {
  font-size: 0.9rem;
  color: #537072;
}

.game-selection__total {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c4a52;
  margin: 1rem 0;
  text-align: center;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid #537072;
}

.game-selection__button {
  background: linear-gradient(135deg, #2c4a52, #537072);
  color: #f4ebdb;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}

.game-selection__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 74, 82, 0.3);
}

.game-selection__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.content-section {
  background: white;
  padding: 3rem 0;
}

.content-section:nth-child(even) {
  background: #f4ebdb;
}

.content-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-section__title {
  font-size: 2rem;
  color: #2c4a52;
  margin-bottom: 1rem;
  font-weight: 700;
}

.content-section__text {
  font-size: 1.1rem;
  color: #537072;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .syndicate-selection__cards {
    grid-template-columns: 1fr;
  }

  .game-selection__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.party-selection {
  background: #f4ebdb;
  padding: 3rem 0;
}

.party-selection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.party-selection__title {
  font-size: 2rem;
  color: #2c4a52;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.party-selection__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.party-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(44, 74, 82, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.party-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #537072, #8e9b97);
}

.party-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(44, 74, 82, 0.2);
}

.party-card.selected {
  border-color: #537072;
  background: linear-gradient(
    135deg,
    rgba(83, 112, 114, 0.05),
    rgba(244, 235, 219, 0.3)
  );
  transform: translateY(-5px);
}

.party-card__emoji {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #f4ebdb, rgba(244, 235, 219, 0.5));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 15px rgba(44, 74, 82, 0.1);
}

.party-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c4a52;
  margin-bottom: 0.5rem;
  text-align: center;
}

.party-card__subtitle {
  color: #537072;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.party-card__details {
  margin-bottom: 1.5rem;
}

.party-card__detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(142, 155, 151, 0.2);
}

.party-card__detail:last-child {
  border-bottom: none;
}

.party-card__label {
  color: #537072;
  font-weight: 500;
}

.party-card__value {
  font-weight: 700;
  color: #2c4a52;
}

.party-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2c4a52;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f4ebdb, rgba(244, 235, 219, 0.8));
  padding: 1rem;
  border-radius: 10px;
}

.party-card__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #2c4a52, #537072);
  color: #f4ebdb;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.party-card__checkbox:hover {
  background: linear-gradient(135deg, #537072, #8e9b97);
}

.party-card__checkbox input {
  width: 22px;
  height: 22px;
  accent-color: #f4ebdb;
}

.game-selection {
  background: white;
  padding: 3rem 0;
}

.game-selection__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.game-selection__total {
  font-size: 2rem;
  font-weight: 800;
  color: #2c4a52;
  margin: 2rem 0;
  background: linear-gradient(135deg, #f4ebdb, rgba(244, 235, 219, 0.8));
  padding: 2rem;
  border-radius: 15px;
  border: 3px solid #537072;
}

.game-selection__button {
  background: linear-gradient(135deg, #2c4a52, #537072);
  color: #f4ebdb;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-selection__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(44, 74, 82, 0.3);
}

.game-selection__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.content-section {
  background: white;
  padding: 3rem 0;
}

.content-section:nth-child(even) {
  background: #f4ebdb;
}

.content-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-section__title {
  font-size: 2rem;
  color: #2c4a52;
  margin-bottom: 1rem;
  font-weight: 700;
}

.content-section__text {
  font-size: 1.1rem;
  color: #537072;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .party-selection__cards {
    grid-template-columns: 1fr;
  }

  .party-card__emoji {
    font-size: 3rem;
    width: 60px;
    height: 60px;
  }
}
.results-section {
  background: #f4ebdb;
  padding: 3rem 0;
}

.results-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.results-section__title {
  font-size: 2.5rem;
  color: #2c4a52;
  margin-bottom: 2rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.prize-table {
  background: linear-gradient(135deg, #ffffff, #f4ebdb);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(44, 74, 82, 0.15),
    0 0 0 1px rgba(44, 74, 82, 0.1);
  margin: 2rem 0;
  position: relative;
}

.prize-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 49%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 51%
  );
  pointer-events: none;
}

.prize-table__header {
  background: linear-gradient(135deg, #2c4a52 0%, #537072 50%, #2c4a52 100%);
  color: #f4ebdb;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.prize-table__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.prize-table__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 100%;
}

.prize-table__row {
  transition: all 0.3s ease;
  position: relative;
}

.prize-table__row:hover {
  background: linear-gradient(
    90deg,
    rgba(44, 74, 82, 0.05),
    rgba(83, 112, 114, 0.05),
    rgba(44, 74, 82, 0.05)
  );
}

.prize-table__cell {
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  position: relative;
  border-bottom: 1px solid rgba(142, 155, 151, 0.2);
  white-space: nowrap;
}

.prize-table__cell--header {
  background: linear-gradient(135deg, #8e9b97, #537072);
  color: #f4ebdb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  border-bottom: 3px solid #2c4a52;
  padding: 1.2rem 1rem;
}

.prize-table__cell--div {
  background: linear-gradient(135deg, #537072, #2c4a52);
  color: #f4ebdb;
  font-weight: 700;
  font-size: 1.1rem;
}

.prize-table__cell--dividend {
  color: #2c4a52;
  font-weight: 700;
  font-size: 1.1rem;
}

.prize-table__cell--winners {
  color: #537072;
  font-weight: 600;
}

.prize-table__row:nth-child(even)
  .prize-table__cell:not(.prize-table__cell--header):not(
    .prize-table__cell--div
  ) {
  background: linear-gradient(
    90deg,
    rgba(244, 235, 219, 0.3),
    rgba(244, 235, 219, 0.5),
    rgba(244, 235, 219, 0.3)
  );
}

.draw-results {
  margin: 3rem 0;
}

.draw-result {
  background: linear-gradient(135deg, #ffffff, #f4ebdb);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(44, 74, 82, 0.1);
  border: 1px solid rgba(142, 155, 151, 0.2);
}

.draw-result__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.draw-result__date {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c4a52;
}

.draw-result__number {
  background: linear-gradient(135deg, #8e9b97, #537072);
  color: #f4ebdb;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.draw-result__dividends {
  background: linear-gradient(135deg, #2c4a52, #537072);
  color: #f4ebdb;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.draw-result__dividends:hover {
  background: linear-gradient(135deg, #537072, #8e9b97);
}

.draw-result__numbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.draw-result__main-numbers,
.draw-result__supplementary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.draw-result__label {
  font-weight: 600;
  color: #537072;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.draw-result__number-ball {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: #f4ebdb;
  background: linear-gradient(135deg, #2c4a52, #537072);
  box-shadow: 0 4px 15px rgba(44, 74, 82, 0.3);
  transition: all 0.3s ease;
}

.draw-result__number-ball:hover {
  transform: scale(1.1);
}

.draw-result__number-ball--supplementary {
  background: linear-gradient(135deg, #8e9b97, #537072);
  border: 3px solid #f4ebdb;
}

.content-section {
  background: white;
  padding: 3rem 0;
}

.content-section:nth-child(even) {
  background: #f4ebdb;
}

.content-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-section__title {
  font-size: 2rem;
  color: #2c4a52;
  margin-bottom: 1rem;
  font-weight: 700;
}

.content-section__text {
  font-size: 1.1rem;
  color: #537072;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .prize-table__wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .prize-table__table {
    min-width: 600px;
  }

  .prize-table__cell {
    padding: 0.8rem 0.5rem;
    font-size: 0.9rem;
  }

  .draw-result__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .draw-result__numbers {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .draw-result__number-ball {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
.statistics-section {
  background: #f4ebdb;
  padding: 3rem 0;
}

.statistics-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.statistics-section__title {
  font-size: 2.5rem;
  color: #2c4a52;
  margin-bottom: 2rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.number-analysis {
  background: linear-gradient(135deg, #ffffff, #f4ebdb);
  border-radius: 25px;
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: 0 25px 80px rgba(44, 74, 82, 0.15),
    0 0 0 1px rgba(44, 74, 82, 0.1);
  position: relative;
  overflow: hidden;
}

.number-analysis::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 49%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 51%
  );
  pointer-events: none;
}

.number-analysis__header {
  text-align: center;
  margin-bottom: 2rem;
}

.number-analysis__title {
  font-size: 1.8rem;
  color: #2c4a52;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.number-analysis__subtitle {
  color: #537072;
  font-size: 1rem;
  font-weight: 500;
}

.number-analysis__legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #2c4a52;
}

.legend-item__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-item__dot--first {
  background: #2c4a52;
}

.legend-item__dot--last {
  background: #537072;
}

.number-bars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.number-bar {
  position: relative;
  background: rgba(244, 235, 219, 0.5);
  border-radius: 15px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.number-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(44, 74, 82, 0.2);
}

.number-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.number-bar__number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2c4a52, #537072);
  color: #f4ebdb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
}

.number-bar__frequency {
  font-weight: 700;
  color: #2c4a52;
  font-size: 1.1rem;
}

.number-bar__visual {
  display: flex;
  gap: 2px;
  height: 8px;
  background: rgba(142, 155, 151, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.number-bar__segment {
  flex: 1;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.number-bar__segment--first {
  background: linear-gradient(135deg, #2c4a52, #537072);
}

.number-bar__segment--last {
  background: linear-gradient(135deg, #537072, #8e9b97);
}

.number-bar__segment--empty {
  background: transparent;
}

.number-bar__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #537072;
}

.content-section {
  background: white;
  padding: 3rem 0;
}

.content-section:nth-child(even) {
  background: #f4ebdb;
}

.content-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-section__title {
  font-size: 2rem;
  color: #2c4a52;
  margin-bottom: 1rem;
  font-weight: 700;
}

.content-section__text {
  font-size: 1.1rem;
  color: #537072;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .number-bars {
    grid-template-columns: 1fr;
  }

  .number-analysis__legend {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .number-bar__visual {
    height: 12px;
  }
}
.cart-section {
  background: #f4ebdb;
  padding: 3rem 0;
}

.cart-section__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cart-section__title {
  font-size: 2.5rem;
  color: #2c4a52;
  margin-bottom: 2rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cart-section__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.cart-items {
  background: linear-gradient(135deg, #ffffff, #f4ebdb);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 25px 80px rgba(44, 74, 82, 0.15),
    0 0 0 1px rgba(44, 74, 82, 0.1);
  position: relative;
  overflow: hidden;
}

.cart-items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 49%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 51%
  );
  pointer-events: none;
}

.cart-items__header {
  background: linear-gradient(135deg, #2c4a52, #537072);
  color: #f4ebdb;
  padding: 1.5rem;
  margin: -2rem -2rem 2rem -2rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-item {
  background: rgba(244, 235, 219, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(142, 155, 151, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 74, 82, 0.15);
  border-color: #537072;
}

.cart-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-item__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c4a52;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item__emoji {
  font-size: 1.5rem;
}

.cart-item__remove {
  background: linear-gradient(135deg, #8e9b97, #537072);
  color: #f4ebdb;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__remove:hover {
  background: linear-gradient(135deg, #537072, #2c4a52);
  transform: scale(1.1);
}

.cart-item__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-item__detail {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(142, 155, 151, 0.2);
}

.cart-item__label {
  color: #537072;
  font-weight: 500;
}

.cart-item__value {
  color: #2c4a52;
  font-weight: 600;
}

.cart-item__price {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #2c4a52;
  background: linear-gradient(135deg, #f4ebdb, rgba(244, 235, 219, 0.8));
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.cart-summary {
  background: linear-gradient(135deg, #2c4a52, #537072);
  border-radius: 25px;
  padding: 2rem;
  color: #f4ebdb;
  box-shadow: 0 25px 80px rgba(44, 74, 82, 0.3),
    0 10px 40px rgba(44, 74, 82, 0.2);
  position: sticky;
  top: 2rem;
}

.cart-summary__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-summary__form {
  margin-bottom: 2rem;
}

.cart-summary__group {
  margin-bottom: 1.5rem;
}

.cart-summary__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f4ebdb;
}

.cart-summary__input {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(244, 235, 219, 0.3);
  border-radius: 10px;
  background: rgba(244, 235, 219, 0.1);
  color: #f4ebdb;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cart-summary__input::placeholder {
  color: rgba(244, 235, 219, 0.6);
}

.cart-summary__input:focus {
  outline: none;
  border-color: #f4ebdb;
  background: rgba(244, 235, 219, 0.2);
  box-shadow: 0 0 0 3px rgba(244, 235, 219, 0.1);
}

.cart-summary__totals {
  margin-bottom: 2rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(244, 235, 219, 0.2);
}

.cart-summary__row:last-child {
  border-bottom: 2px solid #f4ebdb;
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 1rem;
  padding-top: 1rem;
}

.cart-summary__button {
  width: 100%;
  background: linear-gradient(135deg, #f4ebdb, rgba(244, 235, 219, 0.9));
  color: #2c4a52;
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(244, 235, 219, 0.3);
}

.cart-summary__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 235, 219, 0.4);
  background: linear-gradient(135deg, #ffffff, #f4ebdb);
}

.cart-summary__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(135deg, #2c4a52, #537072);
  color: #f4ebdb;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 25px 80px rgba(44, 74, 82, 0.4), 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  z-index: 1000;
  max-width: 400px;
  width: 90%;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.show {
  transform: translate(-50%, -50%) scale(1);
}

.notification__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 1s ease-in-out infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.notification__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notification__message {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(244, 235, 219, 0.9);
}

.notification__button {
  background: linear-gradient(135deg, #f4ebdb, rgba(244, 235, 219, 0.9));
  color: #2c4a52;
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notification__button:hover {
  background: linear-gradient(135deg, #ffffff, #f4ebdb);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 74, 82, 0.8);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.empty-cart {
  text-align: center;
  padding: 3rem;
  color: #537072;
}

.empty-cart__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-cart__text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.empty-cart__button {
  background: linear-gradient(135deg, #2c4a52, #537072);
  color: #f4ebdb;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.empty-cart__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 74, 82, 0.3);
}

@media (max-width: 768px) {
  .cart-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cart-summary {
    position: static;
    order: -1;
  }

  .cart-item__details {
    grid-template-columns: 1fr;
  }

  .notification {
    padding: 2rem;
    margin: 1rem;
  }

  .notification__icon {
    font-size: 3rem;
  }

  .notification__title {
    font-size: 1.5rem;
  }
}
.info-section {
  background: white;
  padding: 4rem 0;
}

.info-section:nth-child(even) {
  background: #f4ebdb;
}

.info-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.info-section__title {
  font-size: 2.5rem;
  color: #2c4a52;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.info-section__text {
  font-size: 1.2rem;
  color: #537072;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.info-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff, #f4ebdb);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(44, 74, 82, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(44, 74, 82, 0.2);
  border-color: #537072;
}

.feature-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card__title {
  font-size: 1.5rem;
  color: #2c4a52;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card__text {
  color: #537072;
  line-height: 1.6;
  font-size: 1rem;
}

.how-to-play {
  background: linear-gradient(135deg, #2c4a52, #537072);
  padding: 4rem 0;
  color: #f4ebdb;
}

.how-to-play__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-to-play__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.how-to-play__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: rgba(244, 235, 219, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(244, 235, 219, 0.2);
}

.step-card:hover {
  transform: translateY(-5px);
  background: rgba(244, 235, 219, 0.15);
  border-color: rgba(244, 235, 219, 0.4);
}

.step-card__number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f4ebdb, rgba(244, 235, 219, 0.9));
  color: #2c4a52;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card__text {
  opacity: 0.9;
  line-height: 1.6;
}

.faq-section {
  background: white;
  padding: 4rem 0;
}

.faq-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-section__title {
  font-size: 2.5rem;
  color: #2c4a52;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: linear-gradient(135deg, #f4ebdb, rgba(244, 235, 219, 0.8));
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #537072;
  transform: translateY(-2px);
}

.faq-item__question {
  font-size: 1.2rem;
  color: #2c4a52;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-item__answer {
  color: #537072;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .powerball-hero__title {
    font-size: 2.5rem;
  }

  .powerball-hero__jackpot-amount {
    font-size: 2.5rem;
  }

  .info-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .how-to-play__steps {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .prize-table__wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .prize-table__table {
    min-width: 600px;
  }

  .prize-table__cell {
    padding: 1rem 0.8rem;
    font-size: 0.9rem;
  }
}
