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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a1f4b, #2b3595);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  padding: 20px;
  width: 100%;
  max-width: 600px;
}

.farewell-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

h1 {
  color: white;
  margin: 20px 0;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.message {
  color: #e0e0e0;
  font-size: 1.2rem;
  margin: 15px 0;
}

.ship-logo {
  margin: 0 auto;
  animation: float 3s ease-in-out infinite;
}

.text-logo {
  fill: white;
  font-size: 16px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.waves {
  animation: wave 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  .message {
    font-size: 1rem;
  }
  
  .ship-logo svg {
    width: 100px;
    height: 100px;
  }
}