.next-match-section {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.next-match-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 40%, rgba(254, 231, 168, 0.03) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.next-match-section .section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.next-match-section .section-title h2 {
  color: #FEE7A8;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 15px rgba(254, 231, 168, 0.3);
}
.next-match-section .section-title h2::before, .next-match-section .section-title h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #FEE7A8, transparent);
  top: 50%;
}
.next-match-section .section-title h2::before {
  left: -60px;
}
.next-match-section .section-title h2::after {
  right: -60px;
  transform: rotate(180deg);
}
.next-match-section .section-title .title-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FEE7A8, transparent);
  margin: 0 auto;
}
.next-match-section .match-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.next-match-section .match-image {
  margin-bottom: 40px;
  position: relative;
}
.next-match-section .match-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.next-match-section .match-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(254, 231, 168, 0.1);
}
.next-match-section .match-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(254, 231, 168, 0.2);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
.next-match-section .match-image:hover::before {
  opacity: 1;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
}
.next-match-section .match-details {
  margin-bottom: 40px;
  width: 100%;
}
.next-match-section .match-details .match-card {
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(254, 231, 168, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.next-match-section .match-details .match-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(254, 231, 168, 0) 0%, rgba(254, 231, 168, 0.05) 25%, rgba(254, 231, 168, 0.1) 50%, rgba(254, 231, 168, 0.05) 75%, rgba(254, 231, 168, 0) 100%);
  top: -50%;
  left: -50%;
  transform: rotate(45deg);
  transition: all 0.8s ease;
  z-index: 0;
}
.next-match-section .match-details .match-card:hover::before {
  animation: shine 1.5s infinite linear;
}
.next-match-section .match-details .match-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.next-match-section .match-details .match-card .match-date {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.next-match-section .match-details .match-card .match-price {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}
.next-match-section .match-details .match-card .match-price span {
  color: #FEE7A8;
  font-weight: 700;
  position: relative;
}
.next-match-section .match-details .match-card .match-price span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(to right, #FEE7A8, transparent);
}
.next-match-section .match-cta .telegram-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, rgba(255, 0, 0, 0.8), #ff0000);
  color: #ffffff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.next-match-section .match-cta .telegram-cta-btn .btn-text, .next-match-section .match-cta .telegram-cta-btn i {
  position: relative;
  z-index: 2;
}
.next-match-section .match-cta .telegram-cta-btn i {
  font-size: 1.2rem;
}
.next-match-section .match-cta .telegram-cta-btn .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(45deg, #ff0000, rgba(255, 51, 51, 0.8));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.next-match-section .match-cta .telegram-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.3);
}
.next-match-section .match-cta .telegram-cta-btn:hover .btn-glow {
  opacity: 1;
}
.next-match-section .match-cta .telegram-cta-btn:active {
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .next-match-section {
    padding: 80px 0 60px;
  }
  .next-match-section .section-title {
    margin-bottom: 40px;
  }
  .next-match-section .section-title h2 {
    font-size: 2rem;
  }
  .next-match-section .section-title h2::before, .next-match-section .section-title h2::after {
    width: 30px;
  }
  .next-match-section .section-title h2::before {
    left: -40px;
  }
  .next-match-section .section-title h2::after {
    right: -40px;
  }
}
@media (max-width: 768px) {
  .next-match-section .section-title h2 {
    font-size: 1.8rem;
  }
  .next-match-section .section-title h2::before, .next-match-section .section-title h2::after {
    display: none;
  }
  .next-match-section .match-details .match-card {
    padding: 25px 15px;
  }
  .next-match-section .match-details .match-card h3 {
    font-size: 1.5rem;
  }
  .next-match-section .match-details .match-card .match-date, .next-match-section .match-details .match-card .match-price {
    font-size: 1rem;
  }
  .next-match-section .match-cta .telegram-cta-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 100%;
  }
  .next-match-section .match-cta .telegram-cta-btn i {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .next-match-section {
    padding: 60px 0 40px;
  }
  .next-match-section .section-title {
    margin-bottom: 30px;
  }
  .next-match-section .section-title h2 {
    font-size: 1.6rem;
  }
  .next-match-section .section-title .title-line {
    width: 60px;
  }
  .next-match-section .match-image {
    margin-bottom: 30px;
  }
  .next-match-section .match-details {
    margin-bottom: 30px;
  }
  .next-match-section .match-details .match-card h3 {
    font-size: 1.3rem;
  }
}
@keyframes shine {
  0% {
    top: -50%;
    left: -50%;
  }
  100% {
    top: 150%;
    left: 150%;
  }
}
.why-us-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.why-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(254, 231, 168, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(254, 231, 168, 0.02) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}
.why-us-section .why-us-block {
  margin-bottom: 100px;
}
.why-us-section .why-us-block:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .why-us-section .why-us-block {
    margin-bottom: 70px;
  }
}
.why-us-section .section-heading {
  margin-bottom: 30px;
  position: relative;
}
.why-us-section .section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media (max-width: 991px) {
  .why-us-section .section-heading h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .why-us-section .section-heading h2 {
    font-size: 1.8rem;
  }
}
.why-us-section .section-heading .heading-line {
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, #FEE7A8, transparent);
  margin-bottom: 20px;
  position: relative;
}
.why-us-section .section-heading .heading-line::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, #FEE7A8, transparent);
  opacity: 0.5;
}
.why-us-section .why-us-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.why-us-section .why-us-text p:last-child {
  margin-bottom: 0;
}
.why-us-section .why-us-text .highlight {
  color: #FEE7A8;
  font-weight: 600;
  position: relative;
}
.why-us-section .why-us-text .highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(to right, #FEE7A8, transparent);
}
.why-us-section .why-us-text .quote {
  border-left: 3px solid #FEE7A8;
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
}
.why-us-section .why-us-text .quote p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #FEE7A8;
  margin-bottom: 0;
}
.why-us-section .why-us-image .image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.why-us-section .why-us-image .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right bottom, rgba(5, 5, 5, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}
.why-us-section .why-us-image .image-wrapper img {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1);
  width: 100%;
}
.why-us-section .why-us-image .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(254, 231, 168, 0.1), transparent);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.why-us-section .why-us-image .image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(254, 231, 168, 0.1);
}
.why-us-section .why-us-image .image-wrapper:hover img {
  transform: scale(1.03);
}
.why-us-section .why-us-image .image-wrapper:hover::after {
  opacity: 1;
}
@media (max-width: 991px) {
  .why-us-section {
    padding: 70px 0;
  }
  .why-us-section .why-us-content {
    margin-bottom: 40px;
  }
  .reverse-block .why-us-section .why-us-content {
    margin-bottom: 0;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .why-us-section {
    padding: 50px 0;
  }
  .why-us-section .why-us-block {
    margin-bottom: 60px;
  }
  .why-us-section .why-us-content {
    text-align: center;
  }
  .why-us-section .why-us-content .section-heading .heading-line {
    margin: 0 auto 20px;
    background: linear-gradient(to right, transparent, #FEE7A8, transparent);
  }
  .why-us-section .why-us-content .section-heading .heading-line::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, #FEE7A8, transparent);
  }
  .why-us-section .why-us-content .quote {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .why-us-section {
    padding: 40px 0;
  }
  .why-us-section .why-us-text p {
    font-size: 1rem;
  }
  .why-us-section .why-us-text .quote {
    margin: 20px 0;
  }
  .why-us-section .why-us-text .quote p {
    font-size: 1rem;
  }
  .why-us-section .why-us-image .image-wrapper {
    margin: 0 -15px;
    border-radius: 10px;
  }
}

@media (min-width: 992px) {
  .reverse-block .why-us-content .heading-line {
    margin-left: auto;
    margin-right: 0;
    background: linear-gradient(to left, #FEE7A8, transparent);
  }
  .reverse-block .why-us-content .heading-line::after {
    left: auto;
    right: 0;
    background: linear-gradient(to left, #FEE7A8, transparent);
  }
}

.main-footer {
  background-color: rgba(5, 5, 5, 0.95);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(254, 231, 168, 0.03), transparent);
  pointer-events: none;
}
.main-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FEE7A8, transparent);
  opacity: 0.3;
}
.main-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.main-footer .footer-logo {
  margin-bottom: 40px;
}
.main-footer .footer-logo img {
  height: 80px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(254, 231, 168, 0.3));
}
.main-footer .footer-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(254, 231, 168, 0.5));
}
.main-footer .footer-nav {
  margin-bottom: 30px;
}
.main-footer .footer-nav .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer .footer-nav .nav-links li {
  margin: 0 15px 10px;
}
@media (max-width: 576px) {
  .main-footer .footer-nav .nav-links li {
    margin: 0 10px 8px;
  }
}
.main-footer .footer-nav .nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}
.main-footer .footer-nav .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #FEE7A8, transparent);
  transition: width 0.3s ease;
}
.main-footer .footer-nav .nav-links a:hover {
  color: #FEE7A8;
}
.main-footer .footer-nav .nav-links a:hover::after {
  width: 100%;
}
.main-footer .social-media {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.main-footer .social-media .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid rgba(254, 231, 168, 0.2);
  margin: 0 10px;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.main-footer .social-media .social-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(254, 231, 168, 0.8) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.main-footer .social-media .social-icon i {
  position: relative;
  z-index: 1;
}
.main-footer .social-media .social-icon:hover {
  transform: translateY(-5px);
  color: #050505;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(254, 231, 168, 0.3);
}
.main-footer .social-media .social-icon:hover::after {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 1;
}
.main-footer .social-heading {
  margin-bottom: 20px;
}
.main-footer .social-heading h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FEE7A8;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.main-footer .social-heading h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FEE7A8, transparent);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .main-footer .main-footer .social-heading {
    margin-bottom: 15px;
  }
  .main-footer .main-footer .social-heading h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .main-footer .main-footer .social-heading {
    margin-bottom: 15px;
  }
  .main-footer .main-footer .social-heading h3 {
    font-size: 1.1rem;
  }
}
.main-footer .copyright {
  margin-top: 20px;
}
.main-footer .copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 768px) {
  .main-footer {
    padding: 60px 0 30px;
  }
  .main-footer .footer-logo {
    margin-bottom: 30px;
  }
  .main-footer .footer-logo img {
    height: 70px;
  }
  .main-footer .footer-nav {
    margin-bottom: 25px;
  }
  .main-footer .footer-nav .nav-links li {
    margin: 0 12px 10px;
  }
  .main-footer .footer-nav .nav-links a {
    font-size: 0.95rem;
  }
  .main-footer .social-media {
    margin-bottom: 30px;
  }
  .main-footer .social-media .social-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin: 0 8px;
  }
}
@media (max-width: 576px) {
  .main-footer {
    padding: 50px 0 25px;
  }
  .main-footer .footer-logo {
    margin-bottom: 25px;
  }
  .main-footer .footer-logo img {
    height: 60px;
  }
  .main-footer .footer-nav .nav-links {
    flex-direction: column;
  }
  .main-footer .footer-nav .nav-links li {
    margin: 5px 0;
  }
  .main-footer .social-media {
    margin-bottom: 25px;
  }
  .main-footer .copyright p {
    font-size: 0.8rem;
  }
}

.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(5, 5, 5, 0.7);
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(254, 231, 168, 0.05) 0%, transparent 60%), radial-gradient(circle at 70% 50%, rgba(254, 231, 168, 0.03) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.cta-section .moving-text-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 80px;
  padding: 20px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(254, 231, 168, 0.05) 20%, rgba(254, 231, 168, 0.05) 80%, transparent 100%);
}
.cta-section .moving-text-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cta-section .moving-text {
  display: flex;
  position: relative;
  white-space: nowrap;
  animation: moveText 30s linear infinite;
}
.cta-section .moving-text span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0 2rem;
  background: linear-gradient(90deg, #FEE7A8, #fffcf4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(254, 231, 168, 0.3);
}
@media (max-width: 991px) {
  .cta-section .moving-text span {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .cta-section .moving-text span {
    font-size: 2rem;
    padding: 0 1rem;
  }
}
.cta-section .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cta-section .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .cta-section .cta-content h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .cta-section .cta-content h2 {
    font-size: 1.8rem;
  }
}
.cta-section .cta-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .cta-section .cta-content p {
    font-size: 1rem;
  }
}
.cta-section .cta-buttons {
  margin-bottom: 50px;
}
.cta-section .cta-buttons .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #219187, #26A69A);
  color: #ffffff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.cta-section .cta-buttons .primary-btn .btn-text, .cta-section .cta-buttons .primary-btn i {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.cta-section .cta-buttons .primary-btn i {
  font-size: 1rem;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.cta-section .cta-buttons .primary-btn .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(45deg, #26A69A, #30d0c1);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cta-section .cta-buttons .primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(38, 166, 154, 0.3);
}
.cta-section .cta-buttons .primary-btn:hover .btn-glow {
  opacity: 1;
}
.cta-section .cta-buttons .primary-btn:hover i {
  transform: translateX(5px);
}
.cta-section .cta-buttons .primary-btn:active {
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .cta-section .cta-buttons .primary-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
  }
}
.cta-section .cta-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.cta-section .cta-stats .stat-item {
  text-align: center;
  padding: 0 40px;
  position: relative;
  margin-bottom: 20px;
}
.cta-section .cta-stats .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 40px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(254, 231, 168, 0.3), transparent);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .cta-section .cta-stats .stat-item:not(:last-child)::after {
    display: none;
  }
}
.cta-section .cta-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FEE7A8;
  margin-bottom: 5px;
  background: linear-gradient(to right, #FEE7A8, #fff5da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .cta-section .cta-stats .stat-item .stat-number {
    font-size: 2rem;
  }
}
.cta-section .cta-stats .stat-item .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .cta-section .cta-stats .stat-item {
    padding: 0 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 576px) {
  .cta-section .cta-stats .stat-item {
    flex-basis: 100%;
    padding: 0;
    margin-bottom: 25px;
  }
}

@keyframes moveText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 991px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-section .moving-text-container {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 0;
  }
  .cta-section .moving-text-container {
    margin-bottom: 50px;
  }
  .cta-section .cta-buttons {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .cta-section {
    padding: 60px 0;
  }
  .cta-section .moving-text-container {
    margin-bottom: 40px;
    padding: 15px 0;
  }
  .cta-section .cta-buttons {
    margin-bottom: 30px;
  }
}
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.splash-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/png;base64,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");
  opacity: 0.05;
  z-index: -1;
}
.splash-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.5) 0%, rgba(0, 0, 0, 0.95) 100%);
  z-index: -1;
}
.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}
.splash-screen .splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  max-width: 90%;
}
.splash-screen .splash-gif-container {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  max-width: 400px;
}
.splash-screen .splash-gif-container::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid rgba(254, 231, 168, 0.2);
  box-shadow: 0 0 30px rgba(254, 231, 168, 0.1);
  z-index: -1;
  animation: pulse-border 2s infinite;
}
.splash-screen .splash-gif {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 5px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}
.splash-screen .splash-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 5px;
  animation: textGlow 1.5s infinite alternate;
  text-shadow: 0 0 10px rgba(254, 231, 168, 0.7);
}
@media (max-width: 768px) {
  .splash-screen .splash-title {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }
}
@media (max-width: 576px) {
  .splash-screen .splash-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 231, 168, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(254, 231, 168, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(254, 231, 168, 0);
  }
}
@keyframes textGlow {
  from {
    text-shadow: 0 0 10px rgba(254, 231, 168, 0.5), 0 0 20px rgba(254, 231, 168, 0.3), 0 0 30px rgba(254, 231, 168, 0.1);
  }
  to {
    text-shadow: 0 0 15px rgba(254, 231, 168, 0.8), 0 0 25px rgba(254, 231, 168, 0.5), 0 0 35px rgba(254, 231, 168, 0.3);
  }
}
.contact-section {
  padding: 150px 0 100px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(254, 231, 168, 0.03) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}
.contact-section .contact-info {
  padding-right: 30px;
}
.contact-section .contact-info h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .contact-section .contact-info h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-info h1 {
    font-size: 2.4rem;
  }
}
.contact-section .contact-info .contact-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}
.contact-section .contact-info .founder-profile {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contact-section .contact-info .founder-profile .founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FEE7A8;
  box-shadow: 0 0 20px rgba(254, 231, 168, 0.3);
  position: relative;
}
.contact-section .contact-info .founder-profile .founder-avatar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 50%, rgba(254, 231, 168, 0.2));
  z-index: 1;
}
.contact-section .contact-info .founder-profile .founder-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.contact-section .contact-info .founder-profile .founder-avatar img:hover {
  transform: scale(1.05);
}
.contact-section .contact-info .founder-profile .founder-details {
  margin-left: 20px;
}
.contact-section .contact-info .founder-profile .founder-details h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
}
.contact-section .contact-info .founder-profile .founder-details p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.contact-section .contact-info .contact-details {
  margin-top: 30px;
}
.contact-section .contact-info .contact-details .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact-section .contact-info .contact-details .contact-item i {
  color: #FEE7A8;
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
  margin-right: 15px;
}
.contact-section .contact-info .contact-details .contact-item span, .contact-section .contact-info .contact-details .contact-item a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-section .contact-info .contact-details .contact-item a {
  text-decoration: none;
}
.contact-section .contact-info .contact-details .contact-item a:hover {
  color: #FEE7A8;
}
.contact-section .contact-form-container {
  position: relative;
}
.contact-section .contact-form-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle at center, rgba(254, 231, 168, 0.07) 0%, transparent 70%);
  border-radius: 20px;
  z-index: -1;
  filter: blur(20px);
}
.contact-section .contact-form {
  background-color: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(254, 231, 168, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.contact-section .contact-form .form-group {
  margin-bottom: 25px;
}
.contact-section .contact-form .form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.contact-section .contact-form .form-group .form-control {
  background-color: rgba(5, 5, 5, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 5px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}
.contact-section .contact-form .form-group .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(254, 231, 168, 0.2);
  border-color: rgba(254, 231, 168, 0.3);
  background-color: rgba(5, 5, 5, 0.6);
}
.contact-section .contact-form .form-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-section .contact-form .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-section .contact-form .form-group textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.contact-section .contact-form .form-check {
  margin-bottom: 25px;
}
.contact-section .contact-form .form-check .form-check-input {
  background-color: rgba(5, 5, 5, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}
.contact-section .contact-form .form-check .form-check-input:checked {
  background-color: #FEE7A8;
  border-color: #FEE7A8;
}
.contact-section .contact-form .form-check .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(254, 231, 168, 0.2);
  border-color: rgba(254, 231, 168, 0.3);
}
.contact-section .contact-form .form-check .form-check-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  padding-left: 5px;
}
.contact-section .contact-form .form-check .terms-link {
  color: #FEE7A8;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-section .contact-form .form-check .terms-link:hover {
  color: #fff5da;
  text-decoration: underline;
}
.contact-section .contact-form .submit-btn {
  background: linear-gradient(45deg, #fdd25c, #FEE7A8);
  color: #050505;
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.contact-section .contact-form .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #FEE7A8, #fff5da);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.contact-section .contact-form .submit-btn span {
  position: relative;
  z-index: 2;
}
.contact-section .contact-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(254, 231, 168, 0.4);
}
.contact-section .contact-form .submit-btn:hover::before {
  opacity: 1;
}
.contact-section .contact-form .submit-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .contact-section {
    padding: 120px 0 80px;
  }
  .contact-section .contact-info {
    margin-bottom: 50px;
    padding-right: 0;
    text-align: center;
  }
  .contact-section .contact-info .founder-profile {
    justify-content: center;
  }
  .contact-section .contact-info .contact-details {
    max-width: 400px;
    margin: 0 auto;
  }
  .contact-section .contact-info .contact-details .contact-item {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 100px 0 60px;
  }
  .contact-section .contact-form {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-info .founder-profile {
    flex-direction: column;
  }
  .contact-section .contact-info .founder-profile .founder-avatar {
    margin-bottom: 15px;
  }
  .contact-section .contact-info .founder-profile .founder-details {
    margin-left: 0;
    text-align: center;
  }
  .contact-section .contact-info .contact-details .contact-item {
    flex-direction: column;
    text-align: center;
  }
  .contact-section .contact-info .contact-details .contact-item i {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .contact-section .contact-form .submit-btn {
    width: 100%;
  }
}
.faq-section {
  padding: 150px 0 100px;
  position: relative;
  min-height: 100vh;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(254, 231, 168, 0.03) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}
.faq-section .faq-left {
  margin-bottom: 40px;
}
.faq-section .faq-left h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  max-width: 400px;
}
@media (max-width: 991px) {
  .faq-section .faq-left h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .faq-section .faq-left h1 {
    font-size: 2.2rem;
  }
}
.faq-section .faq-left .subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}
.faq-section .faq-left .contact-cta {
  margin-top: 50px;
  background-color: rgba(5, 5, 5, 0.6);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(254, 231, 168, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.faq-section .faq-left .contact-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(254, 231, 168, 0.15);
}
.faq-section .faq-left .contact-cta h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(to right, #FEE7A8, #fff5da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-section .faq-left .contact-cta .contact-details {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.faq-section .faq-left .contact-cta .contact-details a {
  color: #FEE7A8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.faq-section .faq-left .contact-cta .contact-details a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #FEE7A8;
  transition: width 0.3s ease;
}
.faq-section .faq-left .contact-cta .contact-details a:hover {
  color: #fff5da;
}
.faq-section .faq-left .contact-cta .contact-details a:hover::after {
  width: 100%;
}
.faq-section .faq-left .contact-cta .faq-contact-btn {
  display: inline-block;
  background: linear-gradient(45deg, #fdd25c, #FEE7A8);
  color: #050505;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  font-size: 0.95rem;
}
.faq-section .faq-left .contact-cta .faq-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(254, 231, 168, 0.3);
  background: linear-gradient(45deg, #FEE7A8, #fff5da);
}
.faq-section .faq-left .contact-cta .faq-contact-btn:active {
  transform: translateY(-1px);
}
.faq-section .faq-right .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgba(254, 231, 168, 0.1);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-color: #ffffff;
  --bs-accordion-active-bg: rgba(254, 231, 168, 0.05);
  --bs-accordion-active-color: #FEE7A8;
  --bs-accordion-btn-focus-border-color: rgba(254, 231, 168, 0.2);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(254, 231, 168, 0.1);
}
.faq-section .faq-right .accordion-item {
  background-color: rgba(5, 5, 5, 0.4);
  border: 1px solid rgba(254, 231, 168, 0.1);
  border-radius: 8px !important;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-right .accordion-item:hover {
  background-color: rgba(5, 5, 5, 0.6);
}
.faq-section .faq-right .accordion-item:last-of-type {
  border-radius: 8px !important;
}
.faq-section .faq-right .accordion-button {
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: transparent;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}
.faq-section .faq-right .accordion-button:not(.collapsed) {
  color: #FEE7A8;
  background-color: rgba(5, 5, 5, 0.6);
  box-shadow: none;
}
.faq-section .faq-right .accordion-button:focus {
  border-color: rgba(254, 231, 168, 0.2);
  box-shadow: 0 0 0 0.25rem rgba(254, 231, 168, 0.1);
}
.faq-section .faq-right .accordion-button::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background-image: none;
  font-size: 0.9rem;
  color: rgba(254, 231, 168, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(254, 231, 168, 0.1);
  transition: all 0.3s ease;
}
.faq-section .faq-right .accordion-button:not(.collapsed)::after {
  content: "\f068";
  transform: rotate(0deg);
  background-color: rgba(254, 231, 168, 0.2);
}
.faq-section .faq-right .accordion-body {
  padding: 5px 25px 25px;
  background-color: rgba(5, 5, 5, 0.5);
}
.faq-section .faq-right .accordion-body p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .faq-section {
    padding: 120px 0 80px;
  }
  .faq-section .faq-left {
    text-align: center;
    margin-bottom: 50px;
  }
  .faq-section .faq-left h1, .faq-section .faq-left .subtitle {
    max-width: 100%;
  }
  .faq-section .faq-left .contact-cta {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .faq-section {
    padding: 100px 0 60px;
  }
  .faq-section .faq-right .accordion-button {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .faq-section .faq-right .accordion-body {
    padding: 5px 20px 20px;
  }
  .faq-section .faq-right .accordion-body p {
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .faq-section {
    padding: 80px 0 50px;
  }
  .faq-section .faq-left h1 {
    font-size: 2rem;
  }
  .faq-section .faq-left .subtitle {
    font-size: 1.1rem;
  }
  .faq-section .faq-left .contact-cta {
    padding: 25px 20px;
  }
  .faq-section .faq-left .contact-cta h3 {
    font-size: 1.4rem;
  }
  .faq-section .faq-right .accordion-button {
    font-size: 0.9rem;
    padding: 15px;
  }
  .faq-section .faq-right .accordion-body {
    padding: 5px 15px 15px;
  }
  .faq-section .faq-right .accordion-body p {
    font-size: 0.9rem;
  }
}
.gallery-section {
  padding: 150px 0 100px;
  position: relative;
  min-height: 100vh;
}
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(254, 231, 168, 0.03) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.gallery-section .gallery-hero {
  margin-bottom: 70px;
  padding: 30px 0;
}
.gallery-section .gallery-hero .hero-image-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(254, 231, 168, 0.2);
}
.gallery-section .gallery-hero .hero-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(254, 231, 168, 0.2);
  border-radius: 16px;
  z-index: 3;
  pointer-events: none;
}
.gallery-section .gallery-hero .hero-image-container .hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.7s ease;
}
.gallery-section .gallery-hero .hero-image-container .hero-image:hover {
  transform: scale(1.05);
}
.gallery-section .gallery-hero .hero-content {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.gallery-section .gallery-hero .hero-content .hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #FEE7A8;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 4px;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(to right, #FEE7A8, #fdd25c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1199px) {
  .gallery-section .gallery-hero .hero-content .hero-title {
    font-size: 4.5rem;
  }
}
@media (max-width: 991px) {
  .gallery-section .gallery-hero .hero-content .hero-title {
    font-size: 3.8rem;
  }
}
@media (max-width: 767px) {
  .gallery-section .gallery-hero .hero-content .hero-title {
    font-size: 3.2rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .gallery-section .gallery-hero .hero-content .hero-title {
    font-size: 2.8rem;
  }
}
.gallery-section .gallery-hero .hero-content .hero-subtitle {
  font-size: 1.4rem;
  color: #ffffff;
  opacity: 0.9;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .gallery-section .gallery-hero .hero-content .hero-subtitle {
    font-size: 1.2rem;
    text-align: center;
  }
}
.gallery-section .gallery-header {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-section .gallery-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .gallery-section .gallery-header h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .gallery-section .gallery-header h2 {
    font-size: 2rem;
  }
}
.gallery-section .gallery-header .gallery-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}
.gallery-section .gallery-grid {
  margin-top: 30px;
}
.gallery-section .gallery-grid .gallery-item {
  margin-bottom: 30px;
  padding: 0 15px;
  transition: all 0.3s ease;
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(254, 231, 168, 0.2);
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container:hover .gallery-img {
  transform: scale(1.05);
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container:hover .gallery-overlay {
  opacity: 1;
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border: 1px solid rgba(254, 231, 168, 0.2);
  border-radius: 12px;
  z-index: 2;
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container .gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.7) 40%, rgba(5, 5, 5, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container .gallery-info {
  color: #ffffff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container .gallery-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #FEE7A8;
}
.gallery-section .gallery-grid .gallery-item .gallery-img-container .gallery-info p {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.fancybox__container {
  --fancybox-bg: rgba($darker-bg, 0.95);
}
.fancybox__container .fancybox__slide {
  padding: 20px;
}
.fancybox__container .fancybox__content {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.fancybox__container .fancybox__content img {
  border: 1px solid rgba(254, 231, 168, 0.2) !important;
}
.fancybox__container .fancybox__caption {
  background: rgba(5, 5, 5, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #FEE7A8;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 0 0 8px 8px;
}
.fancybox__container .carousel__button {
  color: #ffffff;
  opacity: 0.8;
}
.fancybox__container .carousel__button:hover {
  color: #FEE7A8;
  opacity: 1;
}
.fancybox__container .carousel__button svg {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}
.fancybox__container .fancybox__toolbar {
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), transparent);
}

@media (max-width: 991px) {
  .gallery-section {
    padding: 120px 0 80px;
  }
}
@media (max-width: 767px) {
  .gallery-section {
    padding: 100px 0 60px;
  }
  .gallery-section .gallery-hero .row {
    flex-direction: column;
  }
  .gallery-section .gallery-hero .hero-image-container {
    height: 400px;
    margin-bottom: 30px;
  }
  .gallery-section .gallery-hero .hero-content {
    padding: 0 15px;
  }
}
@media (max-width: 576px) {
  .gallery-section {
    padding: 80px 0 50px;
  }
  .gallery-section .gallery-hero .hero-image-container {
    height: 350px;
  }
  .gallery-section .gallery-hero .hero-content {
    padding: 0;
  }
  .gallery-section .gallery-header {
    margin-bottom: 30px;
  }
  .gallery-section .gallery-header h2 {
    font-size: 1.8rem;
  }
  .gallery-section .gallery-header .gallery-subtitle {
    font-size: 1.1rem;
  }
  .gallery-section .gallery-grid .gallery-item {
    margin-bottom: 15px;
  }
  .gallery-section .gallery-grid .gallery-item .gallery-img-container .gallery-info h3 {
    font-size: 1.2rem;
  }
  .gallery-section .gallery-grid .gallery-item .gallery-img-container .gallery-info p {
    font-size: 0.9rem;
  }
}
.archive-section {
  padding: 150px 0 100px;
  position: relative;
}
.archive-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(254, 231, 168, 0.03) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.archive-section .archive-header {
  margin-bottom: 50px;
}
.archive-section .archive-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .archive-section .archive-header h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .archive-section .archive-header h1 {
    font-size: 2.4rem;
  }
}
.archive-section .archive-header .search-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .archive-section .archive-header .search-container {
    flex-direction: column;
    align-items: stretch;
  }
}
.archive-section .archive-header .search-container .search-box {
  position: relative;
  flex: 1;
  max-width: 500px;
}
@media (max-width: 768px) {
  .archive-section .archive-header .search-container .search-box {
    max-width: 100%;
  }
}
.archive-section .archive-header .search-container .search-box .search-input {
  width: 100%;
  padding: 15px 20px;
  padding-right: 50px;
  background-color: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(254, 231, 168, 0.2);
  border-radius: 30px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.archive-section .archive-header .search-container .search-box .search-input:focus {
  outline: none;
  border-color: rgba(254, 231, 168, 0.5);
  box-shadow: 0 0 15px rgba(254, 231, 168, 0.2);
}
.archive-section .archive-header .search-container .search-box .search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.archive-section .archive-header .search-container .search-box .search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.archive-section .archive-header .search-container .search-box .search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #FEE7A8;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.archive-section .archive-header .search-container .search-box .search-btn:hover {
  color: #fff5da;
}
.archive-section .archive-header .search-container .telegram-btn {
  background: linear-gradient(45deg, #1d7d74, #26A69A);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.archive-section .archive-header .search-container .telegram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(38, 166, 154, 0.3);
  background: linear-gradient(45deg, #26A69A, #30d0c1);
}
.archive-section .archive-table-container {
  margin-bottom: 60px;
  position: relative;
}
.archive-section .archive-table-container .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(5, 5, 5, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 231, 168, 0.1);
}
.archive-section .archive-table-container .archive-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.archive-section .archive-table-container .archive-table thead tr {
  background-color: rgba(5, 5, 5, 0.8);
}
.archive-section .archive-table-container .archive-table thead tr th {
  padding: 20px;
  text-align: left;
  color: #FEE7A8;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(254, 231, 168, 0.2);
}
.archive-section .archive-table-container .archive-table thead tr th:first-child {
  border-top-left-radius: 10px;
}
.archive-section .archive-table-container .archive-table thead tr th:last-child {
  border-top-right-radius: 10px;
}
.archive-section .archive-table-container .archive-table tbody tr {
  transition: all 0.3s ease;
}
.archive-section .archive-table-container .archive-table tbody tr td {
  padding: 20px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1rem;
}
.archive-section .archive-table-container .archive-table tbody tr td .match-number {
  width: 30px;
  height: 30px;
  background-color: rgba(254, 231, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #FEE7A8;
}
.archive-section .archive-table-container .archive-table tbody tr td .match-teams {
  display: flex;
  align-items: center;
}
.archive-section .archive-table-container .archive-table tbody tr td .match-teams .team {
  font-weight: 500;
}
.archive-section .archive-table-container .archive-table tbody tr td .match-teams .vs {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.6);
}
.archive-section .archive-table-container .archive-table tbody tr td .odds {
  font-weight: 600;
  color: #fff5da;
  background-color: rgba(254, 231, 168, 0.1);
  padding: 6px 12px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
}
.archive-section .archive-table-container .archive-table tbody tr td .result {
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
}
.archive-section .archive-table-container .archive-table tbody tr td .result.win {
  background-color: rgba(39, 174, 96, 0.2);
  color: #2ecc71;
}
.archive-section .archive-table-container .archive-table tbody tr td .result.loss {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}
.archive-section .archive-table-container .archive-table tbody tr.odd-row {
  background-color: rgba(5, 5, 5, 0.4);
}
.archive-section .archive-table-container .archive-table tbody tr.even-row {
  background-color: rgba(5, 5, 5, 0.6);
}
.archive-section .archive-table-container .archive-table tbody tr.highlight-row {
  background-color: rgba(254, 231, 168, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.archive-section .archive-table-container .archive-table tbody tr:last-child td {
  border-bottom: none;
}
.archive-section .archive-table-container .archive-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.archive-section .archive-table-container .archive-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.archive-section .archive-table-container .no-results {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  text-align: center;
  padding: 40px;
  background-color: rgba(5, 5, 5, 0.5);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(254, 231, 168, 0.1);
}
.archive-section .archive-table-container .no-results .no-results-content i {
  font-size: 3rem;
  color: rgba(254, 231, 168, 0.5);
  margin-bottom: 20px;
}
.archive-section .archive-table-container .no-results .no-results-content h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.archive-section .archive-table-container .no-results .no-results-content p {
  color: rgba(255, 255, 255, 0.7);
}
.archive-section .archive-stats {
  margin-bottom: 60px;
}
.archive-section .archive-stats .stat-card {
  background-color: rgba(5, 5, 5, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(254, 231, 168, 0.1);
  padding: 30px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
}
.archive-section .archive-stats .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(254, 231, 168, 0.2);
}
.archive-section .archive-stats .stat-card .stat-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(254, 231, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.archive-section .archive-stats .stat-card .stat-icon i {
  font-size: 1.5rem;
  color: #FEE7A8;
}
.archive-section .archive-stats .stat-card .stat-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #FEE7A8;
  margin-bottom: 5px;
}
.archive-section .archive-stats .stat-card .stat-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.archive-section .archive-cta {
  text-align: center;
  background-color: rgba(5, 5, 5, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(254, 231, 168, 0.1);
  padding: 50px 30px;
  margin-top: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.archive-section .archive-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}
.archive-section .archive-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.archive-section .archive-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #1d7d74, #26A69A);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.archive-section .archive-cta .cta-btn i {
  margin-right: 10px;
  font-size: 1.3rem;
}
.archive-section .archive-cta .cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(38, 166, 154, 0.3);
  background: linear-gradient(45deg, #26A69A, #30d0c1);
}

@media (max-width: 991px) {
  .archive-section {
    padding: 120px 0 80px;
  }
  .archive-section .archive-stats .row > div {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .archive-section {
    padding: 100px 0 60px;
  }
  .archive-section .archive-table-container .archive-table thead tr th {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
  .archive-section .archive-table-container .archive-table tbody tr td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
  .archive-section .archive-table-container .archive-table tbody tr td .match-teams {
    flex-direction: column;
    align-items: flex-start;
  }
  .archive-section .archive-table-container .archive-table tbody tr td .match-teams .vs {
    margin: 5px 0;
  }
  .archive-section .archive-cta {
    padding: 40px 20px;
  }
  .archive-section .archive-cta h2 {
    font-size: 1.8rem;
  }
  .archive-section .archive-cta p {
    font-size: 1rem;
  }
  .archive-section .archive-cta .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .archive-section {
    padding: 80px 0 50px;
  }
  .archive-section .archive-header h1 {
    font-size: 2.2rem;
  }
  .archive-section .archive-table-container .archive-table thead tr th {
    padding: 12px 8px;
    font-size: 0.8rem;
  }
  .archive-section .archive-table-container .archive-table thead tr th:nth-child(2), .archive-section .archive-table-container .archive-table thead tr th:nth-child(4) {
    display: none;
  }
  .archive-section .archive-table-container .archive-table tbody tr td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }
  .archive-section .archive-table-container .archive-table tbody tr td:nth-child(2), .archive-section .archive-table-container .archive-table tbody tr td:nth-child(4) {
    display: none;
  }
  .archive-section .archive-table-container .archive-table tbody tr td .match-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
  .archive-section .archive-table-container .archive-table tbody tr td .result {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
  .archive-section .archive-stats .stat-card {
    padding: 20px;
  }
  .archive-section .archive-stats .stat-card .stat-icon {
    width: 50px;
    height: 50px;
  }
  .archive-section .archive-stats .stat-card .stat-icon i {
    font-size: 1.2rem;
  }
  .archive-section .archive-stats .stat-card .stat-info h3 {
    font-size: 1.6rem;
  }
  .archive-section .archive-stats .stat-card .stat-info p {
    font-size: 0.8rem;
  }
  .archive-section .archive-cta {
    padding: 30px 15px;
  }
  .archive-section .archive-cta h2 {
    font-size: 1.6rem;
  }
  .archive-section .archive-cta p {
    font-size: 0.9rem;
  }
}
.video-section {
  padding: 50px 0 100px;
  position: relative;
}
.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 70%, rgba(254, 231, 168, 0.03) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.video-section .video-item {
  margin-bottom: 30px;
}
.video-section .video-item .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(254, 231, 168, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-section .video-item .video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(254, 231, 168, 0.2);
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
}
.video-section .video-item .video-container:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(254, 231, 168, 0.3);
}
.video-section .video-item .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .video-section {
    padding: 30px 0 80px;
  }
  .video-section .video-item {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .video-section {
    padding: 20px 0 60px;
  }
}
.tos-section {
  padding: 160px 0 100px;
  position: relative;
}
@media (max-width: 991px) {
  .tos-section {
    padding: 140px 0 80px;
  }
}
@media (max-width: 767px) {
  .tos-section {
    padding: 120px 0 60px;
  }
}

.tos-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.tos-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .tos-header h1 {
    font-size: 2.5rem;
  }
}
.tos-header .last-updated {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.tos-header .title-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #FEE7A8, transparent);
  margin: 0 auto;
}

.tos-content {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .tos-content {
    padding: 30px 20px;
  }
}
.tos-content .tos-intro {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tos-content .tos-block {
  margin-bottom: 40px;
}
.tos-content .tos-block:last-child {
  margin-bottom: 0;
}
.tos-content .tos-block h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FEE7A8;
}
@media (max-width: 767px) {
  .tos-content .tos-block h2 {
    font-size: 1.5rem;
  }
}
.tos-content .tos-block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 25px 0 15px;
}
@media (max-width: 767px) {
  .tos-content .tos-block h3 {
    font-size: 1.3rem;
  }
}
.tos-content .tos-block p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.tos-content .tos-block p:last-child {
  margin-bottom: 0;
}
.tos-content .tos-block .definitions-list, .tos-content .tos-block .contact-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}
.tos-content .tos-block .definitions-list li, .tos-content .tos-block .contact-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.tos-content .tos-block .definitions-list li:last-child, .tos-content .tos-block .contact-list li:last-child {
  margin-bottom: 0;
}
.tos-content .tos-block .definitions-list li::before, .tos-content .tos-block .contact-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #FEE7A8;
  border-radius: 50%;
}
.tos-content .tos-block .definitions-list li strong, .tos-content .tos-block .contact-list li strong {
  color: #FEE7A8;
  font-weight: 600;
}
.tos-content .tos-block .contact-list li a {
  color: #FEE7A8;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tos-content .tos-block .contact-list li a:hover {
  color: #fff5da;
  text-decoration: underline;
}

@media print {
  .tos-section {
    padding: 20px 0;
  }
  .tos-header h1 {
    color: #000;
    -webkit-text-fill-color: #000;
  }
  .tos-content {
    background: transparent;
    box-shadow: none;
    border: 1px solid #eee;
    color: #000;
  }
  .tos-content .tos-block h2, .tos-content .tos-block h3 {
    color: #000;
  }
  .tos-content .tos-block p, .tos-content .tos-block li {
    color: #333;
  }
  .tos-content .tos-block .definitions-list li::before, .tos-content .tos-block .contact-list li::before {
    background: #333;
  }
  .tos-content .tos-block .definitions-list li strong, .tos-content .tos-block .contact-list li strong {
    color: #000;
  }
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/png;base64,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");
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
}

.gradient-sphere {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
}

.gradient-sphere-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(254, 231, 168, 0.6) 0%, rgba(254, 231, 168, 0) 70%);
  top: -10%;
  right: -10%;
}

.gradient-sphere-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(254, 231, 168, 0.4) 0%, rgba(254, 231, 168, 0) 70%);
  bottom: -25%;
  left: -15%;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #050505;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #FEE7A8, #fdd25c);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #feeec1, #FEE7A8);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.highlight {
  color: #FEE7A8;
  font-weight: 600;
  position: relative;
}
.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #FEE7A8, transparent);
}

.navbar {
  background-color: rgba(5, 5, 5, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.navbar.scrolled {
  padding: 12px 0;
  background-color: rgba(5, 5, 5, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand .logo {
  height: 50px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(254, 231, 168, 0.3));
}
.navbar .navbar-toggler {
  border: none;
  padding: 0;
}
.navbar .navbar-toggler .custom-toggler {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(254, 231, 168, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
}
.navbar .nav-link {
  color: #ffffff;
  margin: 0 15px;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #FEE7A8;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #FEE7A8, transparent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after {
  width: 100%;
}
.navbar .telegram-btn .nav-link {
  position: relative;
  background: linear-gradient(45deg, #1d7d74, #26A69A);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
}
.navbar .telegram-btn .nav-link .btn-text {
  position: relative;
  z-index: 2;
}
.navbar .telegram-btn .nav-link .btn-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #26A69A, #44d4c7);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar .telegram-btn .nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(38, 166, 154, 0.3);
}
.navbar .telegram-btn .nav-link:hover .btn-hover-effect {
  opacity: 1;
}
.navbar .telegram-btn .nav-link::after {
  display: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  flex-direction: column;
}
.hero .moving-text-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 80px;
  padding: 20px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(254, 231, 168, 0.05) 20%, rgba(254, 231, 168, 0.05) 80%, transparent 100%);
}
.hero .moving-text-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero .moving-text {
  display: flex;
  position: relative;
  white-space: nowrap;
  animation: moveText 30s linear infinite;
}
.hero .moving-text span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0 2rem;
  background: linear-gradient(90deg, #FEE7A8, #fffcf4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(254, 231, 168, 0.3);
}
@media (max-width: 991px) {
  .hero .moving-text span {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .hero .moving-text span {
    font-size: 2rem;
    padding: 0 1rem;
  }
}
.hero .subtitle {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
}
.hero .subtitle .line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #FEE7A8, transparent);
  margin-right: 15px;
}
.hero .hero-content {
  position: relative;
  z-index: 1;
}
.hero .hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .hero .hero-content h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
}
.hero .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
}
.hero .premium-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #1d7d74, #26A69A);
  color: #ffffff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero .premium-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #26A69A, #44d4c7);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero .premium-btn .btn-text, .hero .premium-btn i {
  position: relative;
  z-index: 2;
}
.hero .premium-btn i {
  font-size: 1.2rem;
}
.hero .premium-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 30px rgba(38, 166, 154, 0.3);
}
.hero .premium-btn:hover::before {
  opacity: 1;
}
.hero .rating {
  font-size: 1rem;
}
.hero .rating i.fa-star {
  color: #FEE7A8;
}
.hero .player-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  z-index: 1;
}
.hero .player-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(254, 231, 168, 0.05) 0%, transparent 70%);
  z-index: -1;
}
.hero .player-container .shine-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine 8s infinite linear;
  z-index: 2;
  pointer-events: none;
}
.hero .player-container .soccer-player {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 25px rgba(254, 231, 168, 0.1));
  animation: float 6s ease-in-out infinite;
  max-width: 100%;
  height: auto;
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.hero .scroll-indicator:hover {
  opacity: 1;
}
.hero .scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}
.hero .scroll-indicator .mouse .wheel {
  width: 4px;
  height: 8px;
  background-color: #FEE7A8;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouse-wheel 1.5s ease-in-out infinite;
}
.hero .scroll-indicator .scroll-text {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fade 2s infinite alternate;
}

@keyframes mouse-wheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes shine {
  0% {
    transform: rotate(30deg) translateY(0);
  }
  100% {
    transform: rotate(30deg) translateY(100%);
  }
}
.cursor-outer,
.cursor-inner {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  transition: transform 0.1s ease-out, width 0.2s ease-out, height 0.2s ease-out, background 0.2s ease-out;
}

.cursor-outer {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(254, 231, 168, 0.5);
}
.cursor-outer.hover {
  width: 60px;
  height: 60px;
  border-color: rgba(254, 231, 168, 0.8);
  mix-blend-mode: difference;
}

.cursor-inner {
  width: 8px;
  height: 8px;
  background: #FEE7A8;
  box-shadow: 0 0 10px rgba(254, 231, 168, 0.5);
}
.cursor-inner.hover {
  width: 12px;
  height: 12px;
  background: #ffffff;
}

body {
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.loaded {
  opacity: 1;
}

@media (max-width: 992px) {
  .navbar {
    padding: 15px 0;
  }
  .navbar.scrolled {
    padding: 10px 0;
  }
  .navbar .navbar-collapse {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 10px;
    margin-top: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .navbar .nav-item {
    margin: 10px 0;
    text-align: center;
  }
  .hero {
    padding: 150px 0 120px;
  }
  .hero .hero-content {
    margin-bottom: 60px;
    text-align: center;
  }
  .hero .hero-content .subtitle {
    justify-content: center;
  }
  .hero .rating {
    justify-content: center;
  }
  .hero .player-container {
    max-width: 80%;
    margin: 0 auto;
  }
  .hero .scroll-indicator {
    bottom: 20px;
  }
  .cursor-outer,
  .cursor-inner {
    display: none;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .premium-btn {
    width: 100%;
    justify-content: center;
  }
  .hero .player-container {
    max-width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */