/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=====   FONTS  =====*/
@font-face {
  font-family: 'Koba';
  src: url('../fonts/koba-italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}



@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}



@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}



@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}



@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}




/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --first-color: #59005c;
  --first-color-alt: #371f50;
  --title-color: #393939;
  --text-color: #e6e6e6;
  --text-color-light: #A6A6A6;
  --text-color2: #f2db56;
  --text-color3: #d5a423;
  --body-color: #e1b22c;
  --container-color: #FFFFFF;

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 1rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --h4-font-size: 4rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: bold;

  /*========== Margenes ==========*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}



html {
  scroll-behavior: smooth;
}

/*========== CUSTOM SCROLLBAR ==========*/
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(135deg, rgba(89, 0, 92, 0.1), rgba(55, 31, 80, 0.1));
  border-radius: 6px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 6px;
  box-shadow: 
    0 2px 6px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  box-shadow: 
    0 4px 12px rgba(255, 215, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, #d5a423, #e1b22c);
  box-shadow: 
    0 2px 8px rgba(213, 164, 35, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-corner {
  background: linear-gradient(135deg, rgba(89, 0, 92, 0.1), rgba(55, 31, 80, 0.1));
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ffd700 rgba(89, 0, 92, 0.15);
}

/* Dark theme scrollbar adjustments */
body.dark-theme ::-webkit-scrollbar-track {
  background: linear-gradient(135deg, rgba(29, 37, 33, 0.8), rgba(39, 48, 44, 0.8));
}

body.dark-theme ::-webkit-scrollbar-corner {
  background: linear-gradient(135deg, rgba(29, 37, 33, 0.8), rgba(39, 48, 44, 0.8));
}

body.dark-theme * {
  scrollbar-color: #ffd700 rgba(29, 37, 33, 0.8);
}


/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: #F1F3F2;
  --text-color: #C7D1CC;
  --body-color: #1D2521;
  --container-color: #27302C;
}



/*========== FOOTER ==========*/
.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

/*========== MEDIA QUERIES ==========*/
@media screen and (min-width: 576px) {

  .home__container,
  .about__container,
  .app__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__data,
  .about__initial,
  .app__data,
  .app__initial,
  .contact__container,
  .contact__initial {
    text-align: initial;
  }

  .about__img,
  .app__img {
    max-width: 380px;
    width: 100%;
    order: -1;
  }

  .contact__container {
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }

  .contact__button {
    justify-self: center;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .section {
    padding-top: 4rem;
  }


  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__list {
    display: flex;
  }

  .nav__item {
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }

  .nav__toggle {
    display: none;
  }

  .change-theme {
    position: initial;
    margin-left: var(--mb-2);
  }

  .home__container {
    height: 100vh;
    justify-items: center;
  }

  .services__container,
  .menu__container {
    margin-top: var(--mb-6);
  }

  .menu__container {
    grid-template-columns: repeat(4, 260px);
    column-gap: 2rem;
  }

  .menu__content {
    padding: 1.5rem;
  }

  .menu__img {
    width: 130px;
  }

  .app__store {
    margin: 0 var(--mb-1) 0 0;
  }

  .promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 110vh;
  }
}

@media screen and (min-width: 960px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }

  .bonuses {
    margin-bottom: 10%;
  }

  .home__img {
    width: 250px;
  }

  .about__container,
  .app__container {
    column-gap: 7rem;
  }

  .menu__container__Gambling {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }

  .menu__container__inTouch {
    margin-top: -15rem;
    padding: 6rem;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 0;

  }

  .menu__container__casinos {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;

  }
}

@media screen and (min-height: 721px) {
  .home__container {
    height: 880px;
  }
}



.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out,-webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden
}

.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: ""
}

.modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100%;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: 0.5
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer > * {
    margin: 0.25rem
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width:500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg,.modal-xl {
        max-width:800px
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width:1140px
    }
}


/* Lottery Carousel Styles */
.lottery-carousel {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 10px;
}



.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}



.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: #2f5a7a;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease;
}



.carousel-arrow:hover {
  background-color: #f0f0f0;
}



.carousel-cards {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 16px;
  flex: 1;
}



/* .lottery-card {
  min-width: 300px;
  flex: 1;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

 */

.lottery-title {
  font-size: 20px;
  font-weight: bold;
  color: #c6cacd;
  text-align: center;
  margin-bottom: 8px;
}



.jackpot-container {
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 16px;
  text-align: center;
}



.jackpot-value {
  font-size: 24px;
  font-weight: bold;
  color: #2f5a7a;
}



.button-container {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}



/* .play-now-btn:hover {
  background-color: #f0f0f0;
}

 */

.quick-picks-btn {
  flex: 1;
  padding: 8px 0;
  border-radius: 9999px;
  background-color: #d972b8;
  color: white;
  font-weight: 500;
  transition: background-color 0.3s;
}



.quick-picks-btn:hover {
  background-color: #e190c7;
}



.drawing-time, .countdown-time {
  display: flex;
  align-items: center;
}



.icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  margin-right: 4px;
}



.drawing-value, .countdown-value {
  font-weight: 600;
}



.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}



.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}



.indicator.active {
  background-color: #2f5a7a;
}



/* Lottery Modal Styles */
.lottery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f2f9fd;
  color: black;
  z-index: 9999;
  display: none;
  flex-direction: column;
  height: 100%;
}



.lottery-modal.open {
  display: flex;
}



.lottery-games-title {
  background-color: #f2f9fd;
  border-bottom: 1px solid #e6e6e6;
  padding: 12px 0;
  text-align: center;
}



.lottery-games-title h1 {
  font-size: 20px;
  font-weight: bold;
  color: #2f5a7a;
}



.price-container svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  margin-left: 4px;
  transition: transform 0.3s ease;
}



.price-container.active svg {
  transform: rotate(180deg);
}



/* Estilos para el balance */
.balance-display {
  background-color: #e6f3fd;
  padding: 6px 12px;
  border-radius: 16px;
  color: #2f5a7a;
  font-weight: bold;
}



/* Panel de detalles de precio */
.price-details-panel {
  background-color: #f2f9fd;
  padding: 16px;
  display: none;
  border-bottom: 1px solid #e6e6e6;
}



.price-details-panel.visible {
  display: block;
}



.price-details-content {
  background-color: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}



.line-count {
  margin-right: 16px;
  font-weight: 600;
}



.tab-button .check-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  right: -4px;
  top: -4px;
  border-radius: 50%;
  background-color: #00dc7d;
  display: flex;
  align-items: center;
  justify-content: center;
}



.tab-button .check-icon svg {
  width: 10px;
  height: 10px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}



.number-button {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  background-color: white;
  color: #2f5a7a;
  transition: all 0.3s;
  border-radius: 50%;
}



.number-button.selected {
  background-color: #00dc7d;
  color: white;
}



.special-number-button {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  background-color: white;
  color: #2f5a7a;
  transition: all 0.3s;
  border-radius: 50%;
}



.special-number-button.selected {
  background-color: #2f5a7a;
  color: white;
}



.info-buttons {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 20px 0;
  background-color: #f2f9fd;
  margin-top: auto;
}



.info-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  color: #2f5a7a;
}



.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #2f5a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-weight: bold;
}



/* Review Screen Styles */
.review-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f2f9fd;
  color: black;
  z-index: 9999;
  display: none;
  flex-direction: column;
  height: 100%;
  overflow-y: auto; /* Permitir scroll en toda la pantalla */
}



.review-screen.open {
  display: flex;
}



.show-less-container {
  display: flex;
  align-items: center;
}



.entry-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #e6f3fd;
  border-radius: 50%;
  margin: 0 8px;
  font-weight: bold;
}



.show-less-container svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}



.selected-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e6f3fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}



.selected-special {
  background-color: #2f5a7a;
  color: white;
}



.line-actions {
  display: flex;
  gap: 16px;
}



.edit-line, .delete-line {
  background: none;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.edit-line svg, .delete-line svg {
  width: 18px;
  height: 18px;
  stroke: #2f5a7a;
  stroke-width: 2;
  fill: none;
}



.delete-line svg {
  color: #ff4b7d;
  stroke: #ff4b7d;
}



.add-line-container {
  padding: 16px;
  background-color: white;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}



.add-line-container p {
  margin-bottom: 16px;
  text-align: center;
}



.add-line-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}



.quick-pick-single-btn, .quick-pick-five-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 9999px;
  background-color: white;
  color: #ff4b7d;
  border: 2px solid #ff4b7d;
  font-weight: 500;
}



.quick-pick-five-btn {
  background-color: #ff4b7d;
  color: white;
}



.quick-pick-single-btn svg, .quick-pick-five-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  margin-right: 8px;
}



.delete-all-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 9999px;
  background-color: white;
  color: #2f5a7a;
  border: 1px solid #2f5a7a;
  font-weight: 500;
}



.delete-all-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  margin-right: 8px;
}



.subscription-container {
  padding: 16px;
  background-color: white;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
}



.subscription-info {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}



.subscription-info svg {
  width: 20px;
  height: 20px;
  stroke: #2f5a7a;
  stroke-width: 2;
  fill: none;
  margin-right: 8px;
}



.subscription-info-btn {
  background: none;
  margin-left: 8px;
}



.subscription-info-btn svg {
  width: 16px;
  height: 16px;
  stroke: #2f5a7a;
  stroke-width: 2;
  fill: none;
}



.subscription-description {
  font-size: 14px;
  margin-bottom: 16px;
}



/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  align-self: flex-end;
}



.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}



.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}



.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}



input:checked + .slider {
  background-color: #2f5a7a;
}



input:focus + .slider {
  box-shadow: 0 0 1px #2f5a7a;
}



input:checked + .slider:before {
  transform: translateX(26px);
}



.slider.round {
  border-radius: 34px;
}



.slider.round:before {
  border-radius: 50%;
}



.promo-code-container {
  padding: 16px;
}



.promo-code-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 8px;
  background-color: white;
  color: #2f5a7a;
  font-weight: 500;
  border: 1px solid #e6e6e6;
}



.promo-code-btn svg {
  width: 20px;
  height: 20px;
  stroke: #2f5a7a;
  stroke-width: 2;
  fill: none;
}



.checkout-container {
  padding: 20px 16px;
  background-color: white;
  border-top: 1px solid #e6e6e6;
  margin-top: auto;
}



/* Checkout Screen Styles */
.checkout-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f2f9fd;
  color: black;
  z-index: 9999;
  display: none;
  flex-direction: column;
  height: 100%;
}



/* Checkout Screen Styles */
.iframe-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f2f9fd;
  color: black;
  z-index: 9999;
  display: none;
  flex-direction: column;
  height: 100%;
}



.iframe-screen.open {
  display: flex;
}



.iframe-content {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}



.checkout-screen.open {
  display: flex;
}



.payment-btn .payment-arrow {
  height: 20px;
  width: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}



/* Estilos para el spinner */
.spinner {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}



.spinner-circle {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}


.checkout-content h2 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
  color: #2f5a7a;
}



.info-icon-small {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #2f5a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #2f5a7a;
  font-weight: bold;
  font-size: 12px;
  margin-left: 8px;
}



.checkout-promo {
  margin-bottom: 24px;
}



.legal-notice {
  padding: 16px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}


  .lottery-card {
    min-width: 200px;
    max-width: 100%;
  }



  .jackpot-value {
    font-size: 20px;
  }



  .button-container {
    flex-direction: column;
  }



  .main-numbers, .special-numbers-grid {
    grid-template-columns: repeat(5, 1fr);
  }



  .info-buttons {
    gap: 32px;
  }


  .main-numbers, .special-numbers-grid {
    grid-template-columns: repeat(5, 1fr);
  }



  .number-button, .special-number-button {
    height: 40px;
    width: 40px;
    font-size: 16px;
  }