body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.site-header {
  background-color: #222831;
  padding: 1rem 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-header .logo img {
  height: 40px;
}
.site-header .logo span {
  color: #eeeeee;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.site-header .auth-buttons {
  display: flex;
  gap: 1rem;
}
.site-header .auth-buttons .auth-btn {
  background-color: #00adb5;
  color: #ffffff;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.site-header .auth-buttons .auth-btn:hover {
  background-color: #008891;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.modal.active {
  display: flex;
}
.modal .modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  width: 90%;
  max-width: 400px;
}
.modal .modal-content label {
  display: block;
  margin: 0.75rem 0 0.25rem;
  font-weight: 600;
}
.modal .modal-content input[type=text],
.modal .modal-content input[type=email],
.modal .modal-content input[type=password] {
  width: 95%;
  padding: 0.6rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.modal .modal-content .checkbox {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.modal .modal-content .checkbox input {
  margin-right: 0.4rem;
}
.modal .modal-content .submit-btn {
  width: 100%;
  margin-top: 1.25rem;
  background: #000;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.modal .modal-content .submit-btn:hover {
  background: #333;
}
.modal .modal-content .close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

#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: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 400px;
  width: 90%;
}
#agePopup .popup-content p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #222831;
}
#agePopup .popup-content button {
  margin: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#agePopup .popup-content button#confirm-age {
  background-color: #00adb5;
  color: #fff;
}
#agePopup .popup-content button#confirm-age:hover {
  background-color: #008891;
}
#agePopup .popup-content button#deny-age {
  background-color: #eeeeee;
  color: #222831;
  border: 2px solid #222831;
}
#agePopup .popup-content button#deny-age:hover {
  background-color: #dddddd;
}

.hero-section {
  background-color: #f4f4f4;
  padding: 4rem 0;
}
.hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-section .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-section .hero-text {
  flex: 1 1 50%;
  color: #222831;
}
.hero-section .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.hero-section .hero-text .join-btn {
  background-color: #00adb5;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.hero-section .hero-text .join-btn:hover {
  background-color: #008891;
}
.hero-section .hero-image {
  flex: 1 1 45%;
  text-align: right;
}
.hero-section .hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #0d3257;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  font-size: 0.95rem;
}
.cookie-banner p {
  margin: 0;
}
.cookie-banner p a {
  color: #fecd2f;
  text-decoration: underline;
}
.cookie-banner p a:hover {
  color: #ffe066;
}
.cookie-banner button {
  background-color: #fecd2f;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.cookie-banner button:hover {
  background-color: #e6b800;
}

.sports-section {
  background-color: #eef2f5;
  padding: 5rem 2rem;
  text-align: center;
}
.sports-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1f2d3d;
  font-weight: 700;
}
.sports-section .sports-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.sports-section .sports-grid .sport-card {
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  width: 200px;
}
.sports-section .sports-grid .sport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.sports-section .sports-grid .sport-card img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sports-section .sports-grid .sport-card span {
  display: block;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #222;
  background-color: #f9f9f9;
}
.sports-section .join-btn {
  background-color: #00adb5;
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.sports-section .join-btn:hover {
  background-color: #008891;
}

.about-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
}
.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-section .about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.about-section .about-text {
  flex: 1 1 50%;
}
.about-section .about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222831;
  margin-bottom: 1.5rem;
}
.about-section .about-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.about-section .about-image {
  flex: 1 1 45%;
  text-align: right;
}
.about-section .about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.reviews-section {
  background-color: #f4f4f4;
  padding: 5rem 2rem;
  text-align: center;
}
.reviews-section h2 {
  font-size: 2.3rem;
  color: #1f2d3d;
  margin-bottom: 3rem;
  font-weight: 700;
}
.reviews-section .reviews-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.reviews-section .review-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 300px;
  flex: 1 1 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews-section .review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.reviews-section .review-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}
.reviews-section .review-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #555;
}

.responsible-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}
.responsible-section h2 {
  font-size: 2.2rem;
  color: #1f2d3d;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.responsible-section p {
  font-size: 1.05rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.responsible-section p strong {
  color: #00adb5;
}
.responsible-section .responsible-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.responsible-section .responsible-logos img {
  height: 100px;
  width: auto;
  transition: filter 0.3s;
  border-radius: 50%;
}
.responsible-section .responsible-logos img:hover {
  filter: grayscale(0%);
}

.site-footer {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  font-size: 0.95rem;
  color: #222831;
  border-top: 1px solid #ddd;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}
.site-footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-nav ul li {
  margin-bottom: 0.75rem;
}
.site-footer .footer-nav ul li a {
  color: #222831;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.site-footer .footer-nav ul li a:hover {
  color: #00adb5;
}
.site-footer .footer-text {
  max-width: 700px;
  line-height: 1.6;
}
.site-footer .footer-text p {
  margin-bottom: 1rem;
  color: #444;
}
.site-footer .footer-text p a {
  color: #00adb5;
  text-decoration: underline;
}
.site-footer .footer-text p a:hover {
  color: #008891;
}

.privacy-policy {
  background-color: #ffffff;
  padding: 5rem 2rem;
  font-family: "Segoe UI", sans-serif;
  color: #222831;
}
.privacy-policy .container {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-policy h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00adb5;
  text-align: center;
}
.privacy-policy h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #008891;
}
.privacy-policy p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.privacy-policy ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.privacy-policy ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: #444;
}
.privacy-policy a {
  color: #00adb5;
  text-decoration: underline;
}
.privacy-policy a:hover {
  color: #008891;
}

.rules-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
  font-family: "Segoe UI", sans-serif;
  color: #222831;
}
.rules-section .container {
  max-width: 800px;
  margin: 0 auto;
}
.rules-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00adb5;
  text-align: center;
}
.rules-section h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #008891;
}
.rules-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.rules-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.rules-section ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: #444;
}
.rules-section a {
  color: #00adb5;
  text-decoration: underline;
}
.rules-section a:hover {
  color: #008891;
}/*# sourceMappingURL=style.css.map */