:root {
  /* Colors based on screenshot analysis */ 
  --primary-dark: #0a0f2d;
  --primary-navy: #041360;
  --accent-red: #e53e3e;
  --accent-red-dark: #c53030;
  --accent-gold: #d4af37; 
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #a0aec0;
  --border-color: #2d3748;
  --card-bg: #1e2238;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background: var(--primary-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow: hidden;
  height: 100vh;
}

.app-container {
  height: 100vh;
  width: 100vw;
  position: relative;
  background: var(--primary-dark);
}

/* Screen Management */
.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.screen.active {
  opacity: 1;
  visibility: visible;
}

/* Image Section - Top Half */
.image-section {
  height: 50vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Section - Bottom Half */
.content-section {
  height: 50vh;
  width: 100%;
  background: var(--primary-navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem;
  position: relative;
  
}

/* Logo Positioning */
.logo-container {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary-navy);
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
}

.logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Welcome Screen Specific Styles */
.welcome-content {
  text-align: center;
  margin-top: 3rem;
}

.welcome-pretext {
  font-size: var(--font-size-xl);
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 0.2rem;
  opacity: 0.9;
}

.welcome-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 2px;
  text-shadow: 
      2px 2px 0 var(--accent-red),
      -2px -2px 0 var(--accent-red),
      2px -2px 0 var(--accent-red),
      -2px 2px 0 var(--accent-red),
      0 2px 0 var(--accent-red),
      2px 0 0 var(--accent-red),
      0 -2px 0 var(--accent-red),
      -2px 0 0 var(--accent-red),
      2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Info Screens Content */
.info-content {
  text-align: left;
  max-width: 400px;
  margin-top: 0.8rem;
}

.info-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.8rem;
  
  letter-spacing: 1px;
}
.info-text {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: 0.8rem;
  margin-top: 1.4rem;
}

.info-text:last-child {
  margin-bottom: 0;
}

/* Navigation */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-top: auto;
}

.btn-nav {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  
  font-size: var(--font-size-sm);
  letter-spacing: 0.5px;
}

.btn-next {
  background: transparent;
  color: var(--text-white);
}

.btn-next:hover {
  background: transparent;
  transform: translateY(-2px);
}

.btn-skip {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.btn-skip:hover {
  color: var(--text-light);
  border-color: var(--text-muted);
}

/* Progress Indicators */
.progress-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

/* Login Screen Styles */
.login-screen .content-section,
.signup-screen .content-section {
  justify-content: center;
  padding: 2rem 1.5rem;
}

.form-container {
  width: 100%;
  max-width: auto;
  margin-top: 2rem;
  overflow-y: scroll;
}

.brand-logo {
  text-align: center;
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 2rem;
  
  letter-spacing: 2px;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-light);
  font-size: var(--font-size-sm);
}

.form-input {
  width: 100%;
  padding: 1rem;
  background: #020282;
  border: none;
  border-radius: 2px;
  color: var(--text-white);
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: blue;
  box-shadow: 0 0 0 1px rgba(33, 62, 229, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.2rem 0;
}

.checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold);
}

.checkbox-label {
  color: var(--text-light);
  font-size: var(--font-size-sm);
}

.btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
}

/* Update the links container */
.links-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}

/* Style links with normal font weight */
.link {
  color:  var(--text-muted);
  text-decoration: none;
  font-weight: 400; /* Normal weight instead of 600 */
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
}
.link:hover {
  color: var(--text-muted);
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

/* Signup Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 0.5rem;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a0aec0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .welcome-pretext {
      font-size: var(--font-size-2xl);
  }

  .welcome-title {
      font-size: var(--font-size-6xl);
  }

  .info-title {
      font-size: var(--font-size-4xl);
  }

  .info-text {
      font-size: var(--font-size-xl);
  }

  .logo {
      width: 140px;
      height: 140px;
      top: -70px;
  }

  .form-container {
      max-width: 450px;
  }
}

@media (min-width: 1024px) {
  .content-section {
      padding: 3rem 2rem;
  }

  .info-content {
      max-width: 500px;
  }
}

/* Ensure no scrolling */
html, body {
  overflow: hidden;
}

.info-list {
list-style: none;
padding: 0;
margin: 0;

}

.info-list li {
position: relative;
padding-left: 35px;
margin-bottom: 18px;
font-size: 16px;
line-height: 1.6;
color: white;
margin-top: 22px;

}

/* Circle outline */
.info-list li::before {
content: "";
position: absolute;
left: 0;
top: 11px;
width: 18px;
height: 18px;
border: 2px solid white;  /* white circle */
border-radius: 50%;
background: transparent;
}

/* Tick mark as subscript inside circle */
.info-list li::after {
content: "";
position: absolute;
left: 6px;   /* move a little right */
top: 14px;   /* push down toward bottom (subscript effect) */
width: 6px;
height: 10px;
border: solid white;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}

#screen-1 .nav-buttons {
display: none;
}

.screen:not(#screen-1) .nav-buttons {
display: flex;
}

/* Loading dots animation */
.loading-dots {
display: flex;
justify-content: center;
align-items: center;
gap: 12px;
margin-top: 2rem;
height: 30px;
}

.loading-dot {
width: 5px;
height: 5px;
background-color: var(--text-muted);
border-radius: none; /* Slightly rounded for square-ish look */
animation: loading-pulse 1.5s ease-in-out infinite;
}


.loading-dot:nth-child(1) { animation-delay: 0s; }
.loading-dot:nth-child(2) { animation-delay: 3.6s; }
.loading-dot:nth-child(3) { animation-delay: 4.5s; }
.loading-dot:nth-child(4) { animation-delay: 7.2s; }
.loading-dot:nth-child(5) { animation-delay: 9.8s; }

@keyframes loading-pulse {
0% {
background-color: #444; /* Dark gray */
transform: scale(1);
}
30% {
background-color: #888; /* Medium gray */
transform: scale(1.05);
}
50% {
background-color: #fff; /* Full white */
transform: scale(1.1);
box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}
80% {
background-color: #888; /* Medium gray */
transform: scale(1.05);
}
100% {
background-color: #444; /* Dark gray */
transform: scale(1);
}
}

/* Hide loading dots on other screens */
.screen:not(#screen-1) .loading-dots {
display: none;
}

/* Hide loading dots on other screens */
.screen:not(#screen-1) .loading-dots {
display: none;
}


.form-container::-webkit-scrollbar {
display: none;
}

.form-container::-webkit-scrollbar-track {
display: none;
}

.form-container::-webkit-scrollbar-thumb {
display: none;
}

.form-container::-webkit-scrollbar-thumb:hover {
display: none;
}
