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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #0d1a2b 0%, #1a233a 50%, #2d1f3d 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Twinkling stars */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.container {
  z-index: 1;
  padding: 20px;
}

h1 {
  font-size: 2.5rem;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Aurora gradient for NightRail */
.night-rail {
  background: linear-gradient(90deg, #34d399, #a78bfa, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* EU part */
.dot {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-right: 0;
}

.eu-wrapper {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
}

.eu-text {
  position: absolute;
  color: #003399;
  font-weight: 700;
  font-size: 1.4rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.eu-ring {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
}

.eu-star {
  position: absolute;
  color: #FFCC00;
  font-size: 0.5rem;
  text-align: center;
  width: 10px;
  height: 10px;
  line-height: 10px;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

p {
  font-size: 1.1rem;
  color: #b8c6db;
  line-height: 1.5;
  margin-top: 25px;
  max-width: 500px;
}

footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #64748b;
}