@charset "UTF-8";
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #212529;
}

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

button {
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
button:hover {
  opacity: 0.9;
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .header-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a2b6d;
  transition: color 0.3s ease;
}
.site-header .header-logo a:hover {
  color: #ff6b00;
}
.site-header .header-buttons {
  display: flex;
  gap: 1rem;
}
.site-header .header-buttons button {
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.site-header .header-buttons .login-btn {
  background-color: transparent;
  border: 1px solid #1a2b6d;
  color: #1a2b6d;
}
.site-header .header-buttons .login-btn:hover {
  background-color: #1a2b6d;
  color: #ffffff;
}
.site-header .header-buttons .signup-btn {
  background-color: #ff6b00;
  color: #ffffff;
  border: 1px solid transparent;
}
.site-header .header-buttons .signup-btn:hover {
  background-color: #cc5600;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal.active {
  display: flex;
}
.modal .modal-content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.modal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #1b1b1b;
  cursor: pointer;
}
.modal .close-btn:hover {
  color: #ff6b00;
}
.modal form {
  display: flex;
  flex-direction: column;
}
.modal form input {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.modal form .primary-btn {
  background-color: #1a2b6d;
  color: #fff;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.modal form .primary-btn:hover {
  background-color: #101b44;
}

.hero {
  background-color: #ffffff;
  padding: 4rem 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero .hero-content {
  flex: 1 1 50%;
  padding-right: 2rem;
}
.hero .hero-content h1 {
  font-size: 2.5rem;
  color: #1a2b6d;
  margin-bottom: 1rem;
}
.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero .hero-content .join-btn {
  background-color: #ff6b00;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hero .hero-content .join-btn:hover {
  background-color: #cc5600;
}
.hero .hero-image {
  flex: 1 1 45%;
  text-align: center;
}
.hero .hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.sports-carousel {
  background-color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
.sports-carousel h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #1a2b6d;
}
.sports-carousel .carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.sports-carousel .carousel .carousel-item {
  width: 220px;
  /* больше ширина */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  background-color: #f0f4f8;
  padding: 1.5rem;
}
.sports-carousel .carousel .carousel-item img {
  width: 100%;
  height: 180px;
  /* больше высота */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.sports-carousel .carousel .carousel-item p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1b1b1b;
  margin: 0;
}
.sports-carousel .carousel .carousel-item:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.about-us {
  background-color: #f8f9fa;
  padding: 4rem 0;
}
.about-us .about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.about-us .about-text {
  flex: 1 1 50%;
}
.about-us .about-text h2 {
  font-size: 2.5rem;
  color: #1a2b6d;
  margin-bottom: 1rem;
}
.about-us .about-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.about-us .about-image {
  flex: 1 1 45%;
  text-align: center;
}
.about-us .about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.testimonials {
  background-color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a2b6d;
}
.testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.testimonials .testimonial-item {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}
.testimonials .testimonial-item p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.testimonials .testimonial-item span {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.responsible-gambling {
  background-color: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}
.responsible-gambling h2 {
  font-size: 2.2rem;
  color: #1a2b6d;
  margin-bottom: 1.5rem;
}
.responsible-gambling p {
  font-size: 1.1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}
.responsible-gambling .help-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.responsible-gambling .help-logos img {
  width: 100px;
  height: auto;
  transition: filter 0.3s ease;
  border-radius: 50%;
}
.responsible-gambling .help-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.responsible-gambling .help-links a {
  color: #007bff;
  font-size: 1rem;
  text-decoration: underline;
}
.responsible-gambling .help-links a:hover {
  color: #0056b3;
}

.site-footer {
  background-color: #2c2c2c;
  color: #e0e0e0;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.site-footer .container {
  max-width: 1000px;
}
.site-footer .footer-links {
  margin-bottom: 1rem;
}
.site-footer .footer-links a {
  color: #3498db;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
}
.site-footer .footer-links a:hover {
  color: #217dbb;
  text-decoration: underline;
}
.site-footer .footer-text p {
  margin: 0.5rem 0;
  color: #e0e0e0;
}
.site-footer .footer-text p a {
  color: #3498db;
}
.site-footer .footer-text p a:hover {
  color: #217dbb;
  text-decoration: underline;
}

.privacy-policy {
  padding: 4rem 0;
  background-color: #ffffff;
  color: #333;
}
.privacy-policy h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #1a2b6d;
  text-align: center;
}
.privacy-policy h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a2b6d;
}
.privacy-policy p,
.privacy-policy ul,
.privacy-policy address {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.privacy-policy ul {
  padding-left: 1.5rem;
}
.privacy-policy ul li {
  list-style: disc;
}
.privacy-policy a {
  color: #3498db;
}
.privacy-policy a:hover {
  color: #217dbb;
  text-decoration: underline;
}
.privacy-policy address {
  font-style: normal;
}

.cookie-policy {
  padding: 4rem 0;
  background-color: #ffffff;
  color: #333;
}
.cookie-policy h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #1a2b6d;
  text-align: center;
}
.cookie-policy h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a2b6d;
}
.cookie-policy p,
.cookie-policy ul,
.cookie-policy address {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.cookie-policy ul {
  padding-left: 1.5rem;
}
.cookie-policy ul li {
  list-style: disc;
}
.cookie-policy a {
  color: #3498db;
}
.cookie-policy a:hover {
  color: #217dbb;
  text-decoration: underline;
}
.cookie-policy address {
  font-style: normal;
}

.rules-regulations {
  padding: 4rem 0;
  background-color: #ffffff;
  color: #333;
}
.rules-regulations h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #1a2b6d;
  text-align: center;
}
.rules-regulations h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a2b6d;
}
.rules-regulations p,
.rules-regulations ul,
.rules-regulations address {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.rules-regulations ul {
  padding-left: 1.5rem;
}
.rules-regulations ul li {
  list-style: disc;
}
.rules-regulations a {
  color: #3498db;
}
.rules-regulations a:hover {
  color: #217dbb;
  text-decoration: underline;
}
.rules-regulations address {
  font-style: normal;
}

.terms-conditions {
  padding: 4rem 0;
  background-color: #ffffff;
  color: #333;
}
.terms-conditions h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #1a2b6d;
  text-align: center;
}
.terms-conditions h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a2b6d;
}
.terms-conditions p,
.terms-conditions ul,
.terms-conditions address {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.terms-conditions a {
  color: #3498db;
}
.terms-conditions a:hover {
  color: #217dbb;
  text-decoration: underline;
}
.terms-conditions address {
  font-style: normal;
}

#agePopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#agePopup .popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
#agePopup .popup-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1a2b6d;
}
#agePopup .popup-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
#agePopup .popup-content button {
  margin: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#agePopup .popup-content button:first-of-type {
  background: #28a745;
  color: #fff;
}
#agePopup .popup-content button:first-of-type:hover {
  background: #218838;
}
#agePopup .popup-content button:last-of-type {
  background: #dc3545;
  color: #fff;
}
#agePopup .popup-content button:last-of-type:hover {
  background: #c82333;
}/*# sourceMappingURL=style.css.map */