body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #020108 0%, #0b1a2b 50%, #0d4850 100%);
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    animation: fadeInUp 1.5s ease-out forwards;
}

.titles {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

h1 {
    font-size: 5rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 6px;
    text-transform: uppercase;
}

h2 {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.links {
    display: flex;
    gap: 50px;
}

.icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-link:hover {
    transform: scale(1.2);
}

.icon-link svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 12px;
}

.icon-link span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
}

.icon-link span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease, left 0.3s ease;
}

.icon-link:hover span::after {
    width: 100%;
    left: 0;
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 1.5rem; }
    .links { gap: 30px; }
    .icon-link svg { width: 30px; height: 30px; }
}
