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

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
    background: radial-gradient(ellipse at 30% 20%, #0f1429 0%, #05080f 50%, #020308 100%);
    color: #e8edff;
    overflow: hidden;
}

#starCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
}

.glass-card {
    width: min(520px, 100%);
    border: 1px solid rgba(145, 165, 255, 0.25);
    border-radius: 24px;
    padding: 48px 40px;
    background: rgba(6, 10, 24, 0.6);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(145, 165, 255, 0.45);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.title-reveal {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 32px;
    color: rgba(240, 244, 255, 0.12);
    opacity: 0.9;
    transition: color 0.5s ease, opacity 0.5s ease, text-shadow 0.5s ease;
}

.glass-card:hover .title-reveal {
    color: #f0f4ff;
    opacity: 1;
    text-shadow: 0 0 40px rgba(180, 200, 255, 0.4);
}

.finder-link {
    display: inline-block;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #5b6fd8, #7c4ad4);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 28px rgba(88, 96, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.finder-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(88, 96, 255, 0.5);
    background: linear-gradient(135deg, #6b7ce8, #8d5ae0);
}
