@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes neonPulse {
  0% {
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.7), inset 0 0 20px rgba(0, 247, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(45deg, #1a1a2e, #16213e);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
body.loaded .loader-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-out;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loader-wrapper .loader {
  width: 100px;
  height: 100px;
  border: 5px solid transparent;
  border-top-color: #00f7ff;
  border-bottom-color: #0051ff;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  border: 2px solid #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
}
.loader-wrapper .loader::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 5px solid transparent;
  border-top-color: #0051ff;
  border-bottom-color: #00f7ff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite reverse;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 247, 255, 0.2);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 247, 255, 0.2);
}
.header .header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header .header-content {
    padding: 0 1rem;
  }
}
.header .header-content .logo {
  height: 50px;
}
.header .header-content .logo img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 247, 255, 0.5));
}
.header .header-content .nav-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .header .header-content .nav-links {
    display: none;
  }
}
.header .header-content .nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.2);
}
.header .header-content .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00f7ff;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px #00f7ff;
}
.header .header-content .nav-links a:hover::after {
  width: 100%;
}

.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-section .hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-section .hero-slider .slide.active {
  opacity: 1;
}
.hero-section .hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-slider .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}
.hero-section .hero-slider .slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}
.hero-section .hero-slider .slider-controls .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
}
.hero-section .hero-slider .slider-controls .dot.active {
  background: #00f7ff;
  box-shadow: 0 0 15px #00f7ff;
}
.hero-section .hero-slider .slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .hero-section .hero-slider .slider-arrows {
    padding: 0 1rem;
  }
}
.hero-section .hero-slider .slider-arrows button {
  background: rgba(0, 247, 255, 0.2);
  border: 2px solid #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .hero-section .hero-slider .slider-arrows button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
.hero-section .hero-slider .slider-arrows button:hover {
  background: rgba(0, 247, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
}
.hero-section .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  text-align: center;
  z-index: 2;
}
.hero-section .hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.2);
  animation: fadeIn 1s ease-out;
}
@media (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section .hero-content h1 {
    font-size: 3.5rem;
  }
}
.hero-section .hero-content p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-out 0.3s forwards;
  opacity: 0;
}
@media (max-width: 767px) {
  .hero-section .hero-content p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section .hero-content p {
    font-size: 1.3rem;
  }
}
.hero-section .hero-content .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  animation: fadeIn 1s ease-out 0.6s forwards;
  opacity: 0;
}
@media (max-width: 767px) {
  .hero-section .hero-content .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
  }
}
.hero-section .hero-content .hero-buttons .btn-custom {
  padding: 1rem 3rem;
  font-size: 1.2rem;
  text-decoration: none;
  color: #ffffff;
  background: rgba(0, 247, 255, 0.2);
  border: 2px solid #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.2);
  backdrop-filter: blur(5px);
}
@media (max-width: 767px) {
  .hero-section .hero-content .hero-buttons .btn-custom {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}
.hero-section .hero-content .hero-buttons .btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00f7ff, #0051ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-section .hero-content .hero-buttons .btn-custom span {
  position: relative;
  z-index: 1;
}
.hero-section .hero-content .hero-buttons .btn-custom:hover {
  transform: translateY(-5px);
  animation: neonPulse 2s infinite;
}
.hero-section .hero-content .hero-buttons .btn-custom:hover::before {
  opacity: 0.2;
}

.countdown-section {
  width: 100%;
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 247, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.countdown-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 247, 255, 0.1), rgba(0, 81, 255, 0.1));
  z-index: -1;
}
.countdown-section .countdown-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.countdown-section .countdown-container h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.2);
}
@media (max-width: 767px) {
  .countdown-section .countdown-container h2 {
    font-size: 2rem;
  }
}
.countdown-section .countdown-container .countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .countdown-section .countdown-container .countdown {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.countdown-section .countdown-container .countdown .time-block {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 247, 255, 0.2);
  border: 2px solid #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
  padding: 2rem;
  border-radius: 15px;
  min-width: 150px;
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: fadeIn 0.5s ease-out forwards;
}
@media (max-width: 767px) {
  .countdown-section .countdown-container .countdown .time-block {
    min-width: 120px;
    padding: 1.5rem;
  }
}
.countdown-section .countdown-container .countdown .time-block .number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #00f7ff;
  margin-bottom: 0.5rem;
  position: relative;
  transform: translateZ(20px);
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.2);
}
@media (max-width: 767px) {
  .countdown-section .countdown-container .countdown .time-block .number {
    font-size: 2.5rem;
  }
}
.countdown-section .countdown-container .countdown .time-block .label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
}
.countdown-section .countdown-container .countdown .time-block:hover {
  transform: translateY(-10px) rotateX(10deg);
  transition: transform 0.3s ease;
}

.footer {
  width: 100%;
  padding: 4rem 0 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 247, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00f7ff, transparent);
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
@media (max-width: 767px) {
  .footer .footer-content {
    padding: 0 1rem;
    grid-template-columns: 1fr;
  }
}
.footer .footer-content .footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.2);
}
.footer .footer-content .footer-section p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-content .footer-section .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer .footer-content .footer-section .social-links a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.2);
}
.footer .footer-content .footer-section .social-links a:hover {
  color: #00f7ff;
  transform: translateY(-3px);
}
.footer .footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 247, 255, 0.2);
  border: 2px solid #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top i {
  color: #ffffff;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.2);
}
.scroll-to-top:hover {
  transform: translateY(-5px);
  animation: neonPulse 2s infinite;
}
@media (max-width: 767px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .scroll-to-top i {
    font-size: 1.2rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media print {
  .header,
  .hero-slider .slider-controls,
  .hero-slider .slider-arrows,
  .scroll-to-top {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .hero-content,
  .countdown-section,
  .footer {
    background: none;
    color: black;
    box-shadow: none;
  }
}

/*# sourceMappingURL=main.css.map */
