body {
  background-color: #080e37;
}

.content_7_index_first {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 60px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  position: relative;
}
.content_7_index_first > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.content_7_index_first .inner {
  width: calc(50% - 10px);
}
.content_7_index_first h2 {
  padding: 0 0 32px;
  font-size: 80px;
  line-height: 1.33;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 2px 2px 2px rgba(255, 0, 82, 0.9);
}
.content_7_index_first p {
  max-width: 700px;
  font-size: 28px;
  line-height: 1.5;
  color: #fff;
  text-shadow: 2px 2px 1px #000;
}

.content_7_index_game {
  padding: 120px 0;
}
.content_7_index_game > div {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.content_7_index_game h2 {
  padding: 0 0 40px;
  font-size: 38px;
  line-height: 1.33;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.9);
}

.content_7_games_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px;
}

.content_7_game_item {
  position: relative;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_7_game_item:hover {
  transform: translate(0, -2px);
}
.content_7_game_item:hover .inner {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.content_7_game_item:hover:before {
  bottom: 1px;
}
.content_7_game_item:hover:after {
  bottom: 1px;
}
.content_7_game_item:before {
  content: "";
  display: block;
  width: 95%;
  height: 95%;
  background-color: rgba(255, 255, 255, 0.15);
  position: absolute;
  left: 2.5%;
  bottom: -10px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 0;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_7_game_item:after {
  content: "";
  display: block;
  width: 90%;
  height: 95%;
  background-color: rgba(255, 255, 255, 0.15);
  position: absolute;
  left: 5%;
  bottom: -20px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 0;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_7_game_item .image {
  font-size: 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.content_7_game_item img {
  width: 80%;
}
.content_7_game_item .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  padding: 20px 24px;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0 0 12px 12px;
  z-index: 1;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_7_game_item h3 {
  font-size: 19px;
  line-height: 1.5;
  color: #000;
}
.content_7_game_item .link a {
  display: inline-block;
  padding: 12px 56px 12px 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_7_game_item .link a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 20px;
  background-color: #ff0052;
  position: fixed;
  right: 16px;
  top: calc(50% - 10px);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.content_7_game_item .link a:hover {
  color: #fff;
  background-color: #ff0052;
  box-shadow: -4px -4px 0 0 #fff, 4px 4px 10px 0 rgba(0, 0, 0, 0.2);
}
.content_7_game_item .link a:hover::before {
  background-color: #fff;
}

.content_7_index_about {
  padding: 120px 0;
  background-size: cover;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%) no-repeat fixed 50%;
}
.content_7_index_about.no_animate .image img {
  animation: lab_zoominout 0s linear infinite;
}
.content_7_index_about > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.content_7_index_about .inner {
  width: calc(50% - 50px);
}
.content_7_index_about h2 {
  padding: 0 0 32px;
  font-size: 30px;
  line-height: 1.33;
  color: #000;
  font-weight: 600;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px rgba(255, 0, 82, 0.9);
}
.content_7_index_about p {
  padding: 0 0 32px;
  font-size: 16px;
  line-height: 1.75;
  color: #000;
}
.content_7_index_about .image {
  width: calc(50% - 50px);
}
.content_7_index_about .image img {
  width: 100%;
  max-width: 100500px;
  animation: lab_zoominout 15s linear infinite;
}
.content_7_index_about .link a {
  display: inline-block;
  padding: 8px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: -2px -2px 6px 0 rgba(255, 200, 39, 0.4), 3px 5px 8px 0 rgba(255, 82, 1, 0.2);
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_7_index_about .link a:hover {
  transform: translate(0, -2px);
  box-shadow: -4px -4px 16px 0 rgba(255, 200, 39, 0.4), 3px 5px 18px 0 rgba(255, 82, 1, 0.2);
}

.content_7_age_18 {
  padding: 0 0 24px;
}
.content_7_age_18 span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  border: 10px solid #f00;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
}
.content_7_age_18 em {
  color: #ff0052;
}

.content_7_uni_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 290px;
  padding: 100px 0 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
  position: relative;
}
.content_7_uni_head > div {
  width: 100%;
  max-width: 1320px;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.content_7_uni_head h1 {
  padding: 0 0 10px;
  font-size: 48px;
  line-height: 1.33;
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.content_7_uni_head p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
}
.content_7_uni_head a {
  padding: 0 40px 0 0;
  color: #ff0052;
  text-decoration: none;
  position: relative;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_7_uni_head a:hover {
  color: #fff;
}
.content_7_uni_head a::before {
  content: "/";
  color: #fff;
  position: absolute;
  right: 10px;
  top: -3px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.content_7_contacts_wrapper {
  padding: 110px 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
}
.content_7_contacts_wrapper > div {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.content_7_contacts_wrapper h2 {
  padding: 0 0 32px;
  font-size: 22px;
  line-height: 1.33;
  color: #000;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.9);
}

.content_7_contacts_form .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px;
}

.content_7_input_item {
  margin: 0 0 24px;
}
.content_7_input_item p {
  padding: 0 0 4px;
  font-size: 16px;
  line-height: 1.33;
  color: #fff;
}
.content_7_input_item p::after {
  content: "*";
  margin: 0 0 0 3px;
  color: #EA5455;
}
.content_7_input_item input {
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_7_input_item input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.content_7_input_item input:focus {
  border-color: #fff;
}
.content_7_input_item textarea {
  display: block;
  width: 100%;
  height: 180px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_7_input_item textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.content_7_input_item textarea:focus {
  border-color: #fff;
}

.content_7_form_button {
  text-align: center;
}
.content_7_form_button a, .content_7_form_button button {
  display: inline-block;
  padding: 14px 30px 12px;
  border: none;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #802b50;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 3px 3px 0 0 #802b50;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_7_form_button a:hover, .content_7_form_button button:hover {
  color: #fff;
  background-color: #802b50;
  box-shadow: -3px -3px 0 0 #fff;
}
.content_7_form_button a:disabled, .content_7_form_button button:disabled {
  background-color: rgba(0, 0, 0, 0.3);
  cursor: auto;
}

.content_7_uni_wrapper {
  padding: 60px 0;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}
.content_7_uni_wrapper > div {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content_7_uni_text {
  padding: 24px 40px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.75);
  background: #ffffff;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.06));
}
.content_7_uni_text p {
  padding: 0 0 20px;
}
.content_7_uni_text h3 {
  padding: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.content_7_uni_text strong {
  font-weight: 600;
}
.content_7_uni_text hr {
  height: 1px;
  margin: 0 0 20px;
  border: none;
  border-bottom: 1px dashed #ff0052;
}
.content_7_uni_text ul {
  padding: 0 0 20px;
}
.content_7_uni_text ul li {
  margin: 0 0 12px;
  padding: 0 0 0 20px;
  position: relative;
}
.content_7_uni_text ul li::before {
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  height: 12px;
  width: 6px;
  border-bottom: 3px solid #ff0052;
  border-right: 3px solid #ff0052;
  position: absolute;
  left: 0;
  top: 2px;
}
.content_7_uni_text ol {
  padding: 0 0 20px;
  counter-reset: my-awesome-counter;
}
.content_7_uni_text ol li {
  margin: 0 0 12px;
  padding: 0 0 0 20px;
  position: relative;
  counter-increment: my-awesome-counter;
}
.content_7_uni_text ol li::before {
  content: counter(my-awesome-counter) ".";
  color: #ff0052;
  position: absolute;
  left: 0;
  top: 0;
}
.content_7_uni_text a {
  color: #000;
}

.content_7_game_wrapper {
  padding: 40px 0;
  background-color: #350b2d;
}
.content_7_game_wrapper > div {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

@keyframes lab_zoominout {
  0% {
    transform: scale(1); /* Initial scale */
  }
  50% {
    transform: scale(1.05); /* Zoom in */
  }
  100% {
    transform: scale(1); /* Zoom out */
  }
}
@media (min-width: 240px) and (max-width: 1023px) {
  .content_7_index_first h2 {
    font-size: 48px;
  }
  .content_7_index_first .inner {
    width: 80%;
  }
  .content_7_index_game {
    padding: 60px 0;
  }
  .content_7_index_game h2 {
    padding: 0 0 30px;
    font-size: 32px;
  }
  .content_7_games_grid {
    grid-template-columns: 1fr;
  }
  .content_7_game_item .inner {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .content_7_game_item h3 {
    font-size: 18px;
  }
  .content_7_game_item .link a {
    font-size: 16px;
  }
  .content_7_index_about {
    padding: 60px 0;
  }
  .content_7_index_about > div {
    flex-wrap: wrap;
  }
  .content_7_index_about .image {
    width: 100%;
    padding: 0 0 20px;
  }
  .content_7_index_about .inner {
    width: 100%;
    text-align: center;
  }
  .content_7_index_about h2 {
    padding: 0 0 20px;
    font-size: 32px;
  }
  .content_7_age_18 span {
    margin: 0 auto;
  }
  .content_7_uni_head {
    min-height: 320px;
  }
  .content_7_uni_head h1 {
    font-size: 36px;
  }
  .content_7_contacts_wrapper {
    padding: 60px 0;
  }
  .content_7_contacts_wrapper h2 {
    padding: 0 0 20px;
    font-size: 24px;
  }
  .content_7_contacts_form .two {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Lottery Results</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      margin: 0;
      padding: 20px;
    }
    h1 {
      text-align: center;
      color: #333;
    }
    .results-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: auto;
    }
    .result-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .result-card h2 {
      color: #444;
      margin-bottom: 10px;
    }
    .date {
      color: #888;
      font-size: 0.9em;
      margin-bottom: 15px;
    }
    .numbers {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .number {
      background: #4CAF50;
      color: #fff;
      padding: 10px 15px;
      border-radius: 50%;
      font-size: 1.2em;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  </style>
</head>
<body>
