:root {
  --cream: #FCF8F0;
  --light-blue: #ADD6F7;
  --blue: #1C4C96;
  --dark-blue: #062863;
  --navy: #000035;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--dark-blue);
  color: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(28, 76, 150, 0.3) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 60%, rgba(173, 214, 247, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.container {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.logo {
  margin-bottom: 3rem;
}

.logo svg {
  width: 280px;
  height: auto;
}

.message {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light-blue);
  animation: fadeIn 2s ease-in-out;
}

.divider {
  width: 60px;
  height: 1px;
  background-color: var(--light-blue);
  margin: 2rem auto;
  opacity: 0.5;
}

.tagline {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(252, 248, 240, 0.5);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .logo svg {
    width: 200px;
  }

  .message {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }
}
