@charset "UTF-8";


@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Variable.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
}
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

:root {
  --color-primary: #5D51D8;
  --color-secondary: #96cf8b;
  --color-text: #323232;
  --color-white: #ffffff;
  --color-background: #e9e9e9;
  --font-heading: "Fredoka", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-h: "Montserrat-Black", sans-serif;
  --Dark-grey: #444;
}

body {
  margin: 0;
  background-color: var(--color-background);
  font-family: var(--font-body);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text);
  margin: 0;
}

.section-subtitle {

  font-size: 17px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-text);
}

.btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.1;
  padding: 12px 42px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 768px) {
  .btn {
    padding: 12px 20px;
  }
}



@media (max-width: 768px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 16px;
  }
}
/* CSS from section:hero */
.site-header {
  background-color: var(--color-secondary);
  padding: 8px 0;
  position: relative;
}
@media (max-width: 768px) {
  .site-header {
    padding: 0;
  }
}
.site-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .site-header .container {
    justify-content: space-between;
  }
}
.site-header .logo-link {
  display: flex;
  align-items: center;
}
.site-header .burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  padding: 0;
}
@media (max-width: 768px) {
  .site-header .burger-menu {
    display: flex;
  }
}
.site-header .burger-menu .burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #d85158;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.site-header .mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 20px;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.site-header .mobile-nav.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-header .mobile-nav .mobile-nav-link {
  color: var(--color-text);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.site-header .mobile-nav .mobile-nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.logo {
  width: 100px;
  height: auto;
}

.hero-section {
  padding: 50px 0;
  border-radius: 30px 30px;
  background-image: url("../images/heroo.png");
  background-size: cover;
  background-position: center;
  margin: 24px 100px;
}
@media (max-width: 768px) {
  .hero-section {
    margin: 24px;
    padding: 50px 0 45px 0;
  }
}

.hero-content {
  margin: 0 auto;
  text-align: center;
  max-width: 713px;
  width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 16px;
}

.hero-subtitle {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0 0 16px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 17px;
    
  }
}
#recent-wins .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.italia733-wins-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.italia733-win-card {
  background: linear-gradient(90deg, #FEAB41 0%, #F6A967 43.27%, #EF8D39 100%) ;
  border-radius: 24px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
}

.italia733-win-card-date {
  font-family: var(--font-heading);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}

.italia733-win-card-desc {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

.italia733-win-card-amount-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.italia733-win-card-amount {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.italia733-win-card-currency {
  font-family: var(--font-h);
  font-size: 17px;
  line-height: 1.1;
  margin: 0;
}

@media (max-width: 1024px) {
  .italia733-wins-grid {
    flex-direction: column;
    align-items: center;
  }
  .italia733-win-card {
    width: 100%;
    max-width: 500px;
    padding: 16px 16px;
  }
}
/* CSS from section:games */
#games .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}

.game-card {
  background: linear-gradient(90deg, #FBA661 0%, #EEBF83 43.27%, #FEAB41 100%) ;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
}

.game-card-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.game-card-text {
  text-align: left;
}

.game-card-text h3 {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: normal;
  line-height: 1.1;
  margin: 0 0 10px;
}

.game-card-text h4 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.1;
  margin: 24px 0 10px;
}

.game-card-text p {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

.game-card .btn {
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  .game-card {
    max-width: 500px;
    margin: 0 auto;
  }
}
.italia733-results .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 70px;
}
.italia733-results__title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #2563EB;
}
.italia733-results__subtitle {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.italia733-result-box {
  background: linear-gradient(90deg, #FEAB41 0%, #E39D43 43.27%, #FEAB41 100%);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}

.italia733-result-text {
  text-align: center;
}
.italia733-result-text h3 {
  font-family: var(--font-h);
  font-weight: normal;
  font-size: 17px;
  line-height: 1.1;
  margin: 0 0 10px;
}
.italia733-result-text p {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

.italia733-result-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.italia733-number-bubble {
  background: linear-gradient(90deg, #ffaf43 0%, #ff5e32 100%);
  border-radius: 24px;
  width: 51px;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-h);
  font-weight: normal;
  font-size: 17px;
  color: var(--color-text);
  box-sizing: border-box;
}

.italia733-plus-icon {
  width: 24px;
  height: 24px;
}

/* CSS from section:footer */
.site-footer {
  background-color: #F2A441;
  padding: 20px 0 60px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--color-text);
}

.footer-age-notice {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
}

.footer-disclaimer {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.footer-disclaimer a {
  font-weight: 900;
  color: var(--color-text);
  text-decoration: underline;
}

.footer-info-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}

.footer-info-col {
  text-align: center;
  flex: 1;
  min-width: 0;
}

.footer-info-col h3 {
  font-family: var(--font-h);
  font-weight: normal;
  font-size: 17px;
  line-height: 1.1;
  margin: 0 0 20px;
}

.footer-info-col p {
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-logos img {
  height: 40px;
  width: auto;
}
@media (max-width: 768px) {
  .footer-logos img {
    height: 30px;
    width: auto;
  }
  .site-footer {
    padding: 20px 0 70px;
  }
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 37px;
  margin-top: 20px;
}

.footer-nav a {
  color: #903E00;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-info-grid {
    flex-direction: row;
  }
  .footer-logos {
    gap: 20px;
    flex-direction: column;
  }
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
}
.italia733-privacy {
  padding: 70px 100px;
  background-color: #f8f8f8;
  color: #111;
}
@media (max-width: 768px) {
  .italia733-privacy {
    padding: 70px 16px;
  }
}
.italia733-privacy .container {
  max-width: 1240px;
  padding: 0 20px;
}
.italia733-privacy h1 {
  font-size: 34px;
  margin-bottom: 60px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  color: #222;
}
.italia733-privacy h2 {
  font-size: 17px;
  margin-top: 30px;
  font-family: var(--font-h);
  font-weight: normal;
  color: #333;
}
.italia733-privacy p {
  font-size: 17px;
  line-height: 1.7;
  margin-top: 10px;
  font-weight: 600;
  color: #444;
  margin-bottom: 24px;
}

/* Login Modal Styles */
.login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.login-modal.active {
  display: flex;
}

.login-container {
  padding: 20px;
  width: 100%;
  max-width: 300px;
  position: relative;
  animation: popupAppear 0.3s ease-out;
  border-radius: 10px;
  border: 1px solid #fff;
  background: #e5ded6;
}

.login-header {
  text-align: center;
  margin-bottom: 20px;
}
.login-header h2 {
  color: var(--Dark-grey, #444);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: "Clash Display", sans-serif;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-group label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}
.input-group input {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.3s ease;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #fff;
  color:#000;
  font-family: "Clash Display", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.input-group input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.login-btn {
  width: 100%;
  padding: 10px;
  border-radius: 30px;
background-color: #5D51D8;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  height: auto;
  font-family: "Clash Display", sans-serif;
  text-transform: none;
}

.login-footer {
  text-align: center;
  margin-top: 20px;
}
.login-footer p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
}
.login-footer .register-link {
    text-decoration: underline;
    color: var(--Dark-grey, #444);
    font-family: "Clash Display", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}


/* Thank You Modal Styles */
.thank-you-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.thank-you-modal.active {
  display: flex;
}

.thank-you-container {
  padding: 20px;
  width: 100%;
  max-width: 300px;
  position: relative;
  animation: popupAppear 0.3s ease-out;
  border-radius: 10px;
  border: 1px solid #fff;
  background: #e5ded6;
}
.thank-you-container h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 20px;
}
.thank-you-container p {
  color: var(--Dark-grey, #444);
  text-align: center;
  font-family: "Clash Display", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 20px;
}

.close-thank-you {
  width: 100%;
  padding: 10px;
  border-radius: 30px;
background-color: #5D51D8;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  height: auto;
  font-family: "Clash Display", sans-serif;
}

/* Registration Modal Styles */
.registration-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.registration-modal.active {
  display: flex;
}

.registration-container {
  padding: 20px;
  width: 100%;
  max-width: 300px;
  position: relative;
  animation: popupAppear 0.3s ease-out;
  border-radius: 10px;
  border: 1px solid #fff;
  background: #e5ded6;
}

.registration-header {
  text-align: center;
  margin-bottom: 30px;
}
.registration-header h2 {
  color: var(--Dark-grey, #444);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-family: "Clash Display", sans-serif;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.registration-btn {
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  background-color: #5D51D8;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  font-family: "Clash Display", sans-serif;
  height: auto;
  text-transform: none;
}


.registration-footer {
  text-align: center;
  margin-top: 10px;
}
.registration-footer p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
}
.registration-footer .login-link {
  text-decoration: underline;
  color: var(--Dark-grey, #444);
  font-family: "Clash Display", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.registration-footer .login-link:hover {
  text-decoration: underline;
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  width: 30px;
  height: 30px;
  display: flex
;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-weight: 500;

}
.hyper-button, button{
  font-family: "Poppins-Bold", sans-serif;
}
header p{
  font-family: "Poppins-Medium", sans-serif;
}
.close-btn,
button {
  opacity: 1;
}
.close-btn:active,
.close-btn:focus,
button:active,
button:focus {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
h2, h3, h4{
  color: #fff;
}