:root {
  --primary-color: #050a30;
  --secondary-color: #233dff;
  --highlight-color: #7d94ff;
  --text-color: #ffffff;
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(135deg, #050a30, #000c66, #0013cc);
  background-size: 400% 400%;
  animation: gradientBackground 15s ease infinite;
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #050a30, #000c66);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loader {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--text-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.container {
  max-width: 100%;
  min-height: 100vh;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 2s;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  position: relative;
}

.status-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 60px;
  right: 10px;
  z-index: 100;
}

.menu-icon span {
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-icon:hover span {
  background-color: var(--highlight-color);
}

.icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.signal, .wifi, .battery {
  display: inline-block;
  background-color: white;
  height: 12px;
  position: relative;
}

.signal {
  width: 12px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M12 3C5.3 3 .8 6.7.4 7l3.8 5.3c.3-.2 7.8-4.8 7.8-4.8s7.3 4.6 7.8 4.8L23.6 7c-.4-.3-4.9-4-11.6-4z'/%3E%3C/svg%3E") no-repeat center center;
}

.wifi {
  width: 16px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M2 9c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9-5c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8zm0 14c3.3 0 6-2.7 6-6s-2.7-6-6-6-6 2.7-6 6 2.7 6 6 6z'/%3E%3C/svg%3E") no-repeat center center;
}

.battery {
  width: 24px;
  background: linear-gradient(to right, white 85%, transparent 85%);
  border-radius: 2px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  padding: 2rem 0;
}

/* Logo Styles */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 0.8s ease-out forwards;
  animation-delay: 2.5s;
}

.logo-hexagon {
  width: 120px;
  height: 120px;
  background: linear-gradient(to bottom, white, #7d94ff);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-hexagon:hover {
  transform: scale(1.05) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(125, 148, 255, 0.7));
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.brand-name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 3px;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 3s;
}

/* Event Info Styles */
.event-info {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 0.8s ease-out forwards;
  animation-delay: 3.2s;
  position: relative;
  z-index: 2;
}

.event-info::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -20px;
  right: -20px;
  bottom: -10px;
  background: rgba(5, 10, 48, 0.6);
  border-radius: 15px;
  filter: blur(10px);
  z-index: -1;
  box-shadow: 0 0 30px rgba(35, 61, 255, 0.3);
}

.animated-text {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff, #7d94ff);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientText 5s linear infinite;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
  opacity: 0;
  letter-spacing: 1px;
  padding: 0.5rem 0;
}

.animated-text strong {
  font-weight: 900;
  letter-spacing: 2px;
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.date-time {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 1rem;
}

.date-time p {
  margin: 0.5rem 0;
}

/* Event Details Styles */
.event-details {
  max-width: 80%;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 0.8s ease-out forwards;
  animation-delay: 3.5s;
}

.event-details p {
  margin: 0.3rem 0;
}

/* Card Slider Styles */
.card-slider {
  width: 100%;
  overflow-x: auto;
  display: flex;
  gap: 1rem;
  padding: 1rem 0.5rem;
  scroll-snap-type: x mandatory;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 0.8s ease-out forwards;
  animation-delay: 3.8s;
}

.card-slider::-webkit-scrollbar {
  height: 4px;
}

.card-slider::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.card {
  min-width: 270px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 30px rgba(125, 148, 255, 0.3);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #ffffff, #7d94ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Button Styles */
.cta-container {
  margin-top: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 4s;
}

.cta-button {
  padding: 0.8rem 3rem;
  font-size: 1.2rem;
  background: linear-gradient(45deg, var(--secondary-color), var(--highlight-color));
  border: none;
  border-radius: 30px;
  color: var(--text-color);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 7px 20px rgba(125, 148, 255, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 375px) {
  .logo-hexagon {
    width: 100px;
    height: 100px;
  }
  
  .logo-text {
    font-size: 2rem;
  }
  
  .brand-name {
    font-size: 1.6rem;
  }
  
  .animated-text {
    font-size: 2rem;
    font-weight: 800;
  }
  
  .date-time {
    font-size: 1.3rem;
  }
  
  .event-details {
    font-size: 1rem;
  }
  
  .card {
    min-width: 240px;
  }
} 