html, body {
	height: 100%;
	-webkit-font-smoothing: antialiased;	
	background: #0b0c2a;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	width: 100%;
}

body {
	display: flex;
    flex-direction: column;
    font-family: 'Mulish', sans-serif;
    min-height: 100vh;
    max-width: 100vw;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.header {
    background: rgba(9, 9, 32, 0.98);
    backdrop-filter: blur(10px);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(102, 126, 234, 0.1);
    will-change: transform;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 70px;
    height: 48px;
    transition: all 0.3s ease;
    animation: logoEntrance 1s ease-out;
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: rotate(360deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.6)) drop-shadow(0 0 12px rgba(118, 75, 162, 0.4));
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-item a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
}

.nav-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.nav-item.active a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .header-container {
        flex-wrap: wrap;
        padding: 12px 15px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        order: 3;
        opacity: 0;
    }

    .nav.active {
        max-height: 500px;
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        padding: 15px 0;
        gap: 0;
    }

    .nav-item {
        animation: slideInFromTop 0.3s ease-out backwards;
    }

    .nav.active .nav-item:nth-child(1) { animation-delay: 0.05s; }
    .nav.active .nav-item:nth-child(2) { animation-delay: 0.1s; }
    .nav.active .nav-item:nth-child(3) { animation-delay: 0.15s; }
    .nav.active .nav-item:nth-child(4) { animation-delay: 0.2s; }
    .nav.active .nav-item:nth-child(5) { animation-delay: 0.25s; }
    .nav.active .nav-item:nth-child(6) { animation-delay: 0.3s; }

    @keyframes slideInFromTop {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-item {
        margin-bottom: 5px;
    }

    .nav-item a {
        padding: 12px 15px;
        font-size: 15px;
    }

    .logo img {
      width: 32px;
      height: 22px;
      transition: transform 0.3s ease;
    }
}

/* Gradient Line Divider */
.gradient-divider {
  position: relative;
  height: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gradient-divider:hover::before {
  box-shadow: 
    0 0 10px rgba(102, 126, 234, 1),
    0 0 20px rgba(102, 126, 234, 0.8),
    0 0 30px rgba(102, 126, 234, 0.6),
    0 0 40px rgba(102, 126, 234, 0.4);
  height: 3px;
}

.gradient-divider::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(102, 126, 234, 0.3) 0%, 
    rgba(102, 126, 234, 0.7) 15%, 
    rgba(102, 126, 234, 1) 50%, 
    rgba(102, 126, 234, 0.7) 85%, 
    rgba(102, 126, 234, 0.3) 100%);
  box-shadow: 
    0 0 5px rgba(102, 126, 234, 0.9),
    0 0 10px rgba(102, 126, 234, 0.7),
    0 0 15px rgba(102, 126, 234, 0.5),
    0 0 20px rgba(102, 126, 234, 0.3);
  border-radius: 1px;
  animation: neonPulse 3.5s ease-in-out infinite alternate;
  will-change: box-shadow;
}

@keyframes neonPulse {
  0% {
    box-shadow: 
      0 0 5px rgba(102, 126, 234, 0.8),
      0 0 10px rgba(102, 126, 234, 0.6),
      0 0 15px rgba(102, 126, 234, 0.4),
      0 0 20px rgba(102, 126, 234, 0.2);
  }
  100% {
    box-shadow: 
      0 0 7px rgba(102, 126, 234, 0.9),
      0 0 14px rgba(102, 126, 234, 0.7),
      0 0 20px rgba(102, 126, 234, 0.5),
      0 0 25px rgba(102, 126, 234, 0.3);
  }
}

.gradient-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.8), 
    transparent);
  filter: blur(1px);
  animation: shimmer 7s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* Main */
.content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Desktop/Mobile visibility */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* Desktop Images */
.desktop-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.desktop-image-link {
  flex: 1;
  max-width: 400px;
  min-width: 280px;
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.desktop-image-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, 
    rgba(102, 126, 234, 0.4) 0%,
    rgba(118, 75, 162, 0.3) 50%,
    rgba(102, 126, 234, 0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.desktop-image-link:hover::after {
  opacity: 1;
}

.desktop-image-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.desktop-image-link:hover {
  transform: translateY(-8px);
}

.desktop-image-link:hover img {
  box-shadow: 
    0 15px 50px rgba(102, 126, 234, 0.4),
    0 8px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(102, 126, 234, 0.3);
  filter: brightness(1.05);
}

.image-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Mobile Slider - Modern Design */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 60px 0;
}

.slider-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 500px;
  height: 60%;
  background: radial-gradient(ellipse at center, 
    rgba(102, 126, 234, 0.15) 0%,
    rgba(102, 126, 234, 0.08) 30%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.slider-wrapper {
  display: flex;
  position: relative;
  width: 65%;
  max-width: 450px;
  aspect-ratio: 16 / 9;
  perspective: 1200px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: visible;
}

.slide {
  min-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(0) scale(0.75) translateZ(-50px);
  z-index: 1;
  pointer-events: none;
  filter: blur(2px);
}

.slide.active {
  opacity: 1;
  position: relative;
  transform: translateX(0) scale(1) translateZ(0);
  z-index: 3;
  pointer-events: auto;
  filter: blur(0);
}

.slide.active img {
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3), 
              0 0 0 1px rgba(255, 255, 255, 0.1);
}

.slide.prev {
  opacity: 0.3;
  transform: translateX(-70%) scale(0.8) translateZ(-30px);
  z-index: 2;
  pointer-events: none;
  filter: blur(1px);
}

.slide.next {
  opacity: 0.3;
  transform: translateX(70%) scale(0.8) translateZ(-30px);
  z-index: 2;
  pointer-events: none;
  filter: blur(1px);
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  -webkit-user-drag: none;
  border: none;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  will-change: transform, opacity;
  position: relative;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, 
    rgba(102, 126, 234, 0.4) 0%,
    rgba(118, 75, 162, 0.3) 50%,
    rgba(102, 126, 234, 0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active::after {
  opacity: 1;
}

.slide.active img {
  box-shadow: 
    0 15px 50px rgba(102, 126, 234, 0.5),
    0 8px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(102, 126, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.slide.prev img,
.slide.next img {
  box-shadow: 
    0 5px 20px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.slider-container {
  cursor: pointer;
  transition: transform 0.1s ease-out;
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  user-select: none;
}

.slider-container:active {
  cursor: grabbing;
}

.slide.active {
  cursor: pointer;
}

@media (pointer: coarse) {
  .slider-container {
    cursor: default;
  }
}

.slider-container:active .slide.active {
  transform: translateX(0) scale(0.98);
  transition: transform 0.1s ease-out;
}

.slider-wrapper {
  transition: filter 0.2s ease;
}

.slider-container:active .slider-wrapper {
  filter: brightness(0.95);
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  background: rgba(9, 9, 32, 0.6);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.dot.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  width: 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (min-width: 901px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .content {
    padding: 15px 0;
  }

  .slider-container {
    padding: 20px 0 60px 0;
  }
}

/* Store Links */
.store-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.store-link {
  transition: all 0.3s ease;
  display: block;
}

.store-link img {
  height: 50px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.store-link:hover {
  transform: translateY(-3px);
}

.store-link:hover img {
  filter: brightness(1.1) drop-shadow(0 5px 15px rgba(102, 126, 234, 0.4));
}

@media (max-width: 768px) {
  .store-links {
    gap: 15px;
    margin-top: 30px;
  }

  .store-link img {
    height: 40px;
  }
}

/* Pre-registration */
.pre-registration-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.pre-registration-button {
  display: inline-block;
  transition: all 0.3s ease;
}

.pre-registration-button img {
  height: 120px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(102, 126, 234, 0.3));
}

.pre-registration-button:hover {
  transform: translateY(-5px) scale(1.05);
}

.pre-registration-button:hover img {
  filter: brightness(1.15) drop-shadow(0 8px 20px rgba(102, 126, 234, 0.5));
}

@media (max-width: 768px) {
  .pre-registration-container {
    padding: 30px 20px;
  }
  
  .pre-registration-button img {
    height: 100px;
  }
}

 
/* Footer */
.footer {
    background: linear-gradient(180deg, #090920 0%, #050510 100%);
    color: #fff;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    position: relative;
    padding: 0 20px;
}

.footer-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(102, 126, 234, 0.3) 20%,
        rgba(102, 126, 234, 0.5) 50%,
        rgba(102, 126, 234, 0.3) 80%,
        transparent 100%
    );
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #667eea;
    letter-spacing: 0.5px;
    text-shadow: 
        0 0 10px rgba(102, 126, 234, 0.3),
        0 0 20px rgba(102, 126, 234, 0.2),
        0 0 30px rgba(102, 126, 234, 0.1);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #c8c8e0;
    font-weight: 400;
}

.footer-section a {
    color: #c8c8e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-section i {
    margin-right: 8px;
    color: #667eea;
    animation: iconPulse 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.footer-section i:hover {
    animation: none;
    transform: scale(1.2);
    filter: drop-shadow(0 0 4px rgba(102, 126, 234, 0.8));
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #c8c8e0;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        padding: 0 20px;
    }

    .footer-section:not(:last-child)::after {
        display: none;
    }

    .footer-section p {
        line-height: 2;
        margin-bottom: 12px;
    }

    .footer-section h4 {
        margin-bottom: 18px;
    }
}