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

body {
    height: 100vh;
    background: radial-gradient(circle at top, #0d1b2a, #000000);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    color: white;
    overflow: hidden;
}

/* Soft spotlight background effect */
.overlay {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 70%);
    top: -50%;
    left: -50%;
    animation: rotate 25s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

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

.logo {
    width: 200px;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
}

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

/* Glow effect */
.glow {
    filter: drop-shadow(0 0 12px #0a4d9c) drop-shadow(0 0 25px #67a2d8);
}

/* Title with gradient metallic effect */
.title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, #67a2d8, #0a4d9c);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

/* Orange accent subtitle */
.subtitle {
    font-size: 1.4rem;
    margin-top: 5px;
    color: #f79f3f;
    text-shadow: 0 0 8px rgba(247,159,63,0.6);
}

/* Description text */
.desc {
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.85;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Fade-in animation */
.fade-in {
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}
