@charset "UTF-8";
/* ========== Typography and Colors ========== */
/* ========== Global Settings ========== */
h1,
h2,
h3 {
  font-weight: 600;
  color: #004a7c;
  margin-bottom: 1rem;
}

/* ========== Reset ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* ========== Header ========== */
.header {
  background-color: #004a7c;
  padding: 1rem 2rem;
  color: #333;
}
.header .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header .logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}
.header .navigation a {
  margin-left: 2rem;
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s;
}
.header .navigation a:hover {
  color: #66b3ff;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background-image: url("/assets/img/hero.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
.hero .hero-content {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 8px;
}
.hero .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.hero .hero-content p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #ddd;
}
.hero .hero-content button {
  background-color: #66b3ff;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.hero .hero-content button:hover {
  background-color: #004a7c;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 500px;
  position: relative;
}
.modal .modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal .modal-content form input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.modal .modal-content form button {
  width: 100%;
  padding: 0.5rem;
  background-color: #004a7c;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.modal .modal-content form button:hover {
  background-color: #66b3ff;
}
.modal .modal-content h2 {
  color: #000;
  margin-bottom: 20px;
}
.modal .modal-content #signup-message {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* ========== Media Queries ========== */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }
  .navigation a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }
}
/* ========== Lottery Description Section ========== */
.lottery-description {
  background-color: #f8f9fa;
  padding: 3rem 2rem;
}
.lottery-description .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.lottery-description h2 {
  font-size: 2rem;
  color: #004a7c;
  margin-bottom: 1.5rem;
  text-align: center;
}
.lottery-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #333;
}
.lottery-description p strong {
  color: #004a7c;
}
.lottery-description p em {
  font-style: italic;
  color: #007bff;
}
.lottery-description .disclaimer {
  font-size: 0.95rem;
  color: #ff4d4d;
  margin-top: 1.5rem;
  text-align: center;
}

.responsible-gambling {
  background-color: #f1f1f1;
  padding: 3rem 2rem;
}
.responsible-gambling .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.responsible-gambling .container h2 {
  font-size: 2rem;
  color: #d9534f;
  margin-bottom: 1.5rem;
}
.responsible-gambling .container .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.responsible-gambling .container .logos img {
  height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
.responsible-gambling .container .logos a {
  transition: transform 0.3s;
}
.responsible-gambling .container .logos a:hover {
  transform: scale(1.05);
}
.responsible-gambling .container .content {
  text-align: left;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.responsible-gambling .container .content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.responsible-gambling .container .content p a {
  color: #007bff;
  text-decoration: underline;
}
.responsible-gambling .container .content p a:hover {
  color: #0056b3;
}
.responsible-gambling .container .content .disclaimer {
  color: #d9534f;
  font-size: 1rem;
}

/* ========== Footer ========== */
.footer {
  background-color: #004a7c;
  color: #ffffff;
  padding: 2rem 1rem;
  text-align: center;
}
.footer .container {
  max-width: 800px;
  margin: 0 auto;
}
.footer p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer p.license-info {
  font-size: 1rem;
}
.footer p.trademark-info {
  color: #d3d3d3;
}
.footer p.copyright {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #999999;
}
.footer p strong {
  color: #ffffff;
}

/* ========== Age Confirmation Pop-up ========== */
#agePopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  /* по умолчанию видим */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#agePopup .popup-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

#agePopup button {
  margin: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* ========== Verification Popup ========== */
.verification-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.verification-popup .popup-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.verification-popup .popup-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
}
.verification-popup .popup-content button {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.verification-popup .popup-content button:hover {
  background-color: #0056b3;
}/*# sourceMappingURL=style.css.map */