@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  transition: padding-top 0.3s ease-in-out;
  margin: 0;
  padding: 0;
  padding-top: 0;
}

* {
  box-sizing: border-box;
}

/* Prevent horizontal scroll */
body, html {
  overflow-x: hidden !important;
  position: relative;
  margin: 0;
  padding: 0;
}

/* Remove bottom spacing on mobile */
@media (max-width: 767px) {
  body {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  html {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  #root {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  footer > * {
    margin-bottom: 0 !important;
  }
  
  footer > div:last-child {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* Prevent horizontal scroll on mobile */
* {
  max-width: 100%;
}

.container {
  max-width: 100%;
  overflow-x: hidden;
}

.countdown-digit {
  font-variant-numeric: tabular-nums;
  font-family: 'Orbitron', sans-serif;
  display: inline-block;
  min-width: 2ch;
  text-align: center;
}

.banner-clip {
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
}

.gradient-purple {
  background: linear-gradient(135deg, #6B46C1 0%, #9333EA 100%);
}

.gradient-box {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.9) 0%, rgba(147, 51, 234, 0.9) 100%);
}

.team-logo {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.team-logo:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.countdown-box {
  transition: transform 0.3s ease;
}

.countdown-box:hover {
  transform: translateY(-4px);
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.active-dot {
  width: 8px;
  height: 8px;
  background: white;
}

#contentSlider {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 50;
}

nav {
  overflow: visible !important;
}

/* Root element styling */
#root {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Remove bottom spacing on mobile */
@media (max-width: 767px) {
  body {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  html {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  #root {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  footer > * {
    margin-bottom: 0 !important;
  }
  
  footer > div:last-child {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  footer > div > div:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #9333EA;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #7e22ce;
}

/* Date Picker Select Styling */
#birthDay:focus,
#birthMonth:focus,
#birthYear:focus {
  outline: none;
  border-color: #9333EA;
}

