@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    /* background-color: #12151c; */
    background:#0a0e18;
    color: beige;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    height: 100dvh;
    margin: 0;
    overflow: hidden;
}

.actions {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #F5F5DC;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #5390c9;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

footer a {
    color: #F5F5DC;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

footer a:hover {
    border-bottom: 1px solid #F5F5DC;
}

.navbar {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    background: rgba(10, 14, 24, 0.8); /* Semi-transparent to match background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px); /* Adds a premium frosted glass effect */
}

.nav-links {
    display: flex;
    gap: clamp(1rem, 5vw, 2rem);
}

.nav-links a {
    color: #F5F5DC;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}


body::after {
    content: "";

    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at 50% 52%,
        rgba(63, 143, 216, 0.1),
        transparent 30%
    );

    filter: blur(40px);

    pointer-events: none;
    transform: translateY(-40px); 

    margin: 0;
    padding: 0;
}

.title {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-40px); 
}

.name {
    font-size: clamp(1.5rem, 4vw + 4rem, 6rem);
    font-weight: 400;
    margin-bottom: 0;
}

.slogan {
    margin-top: 0;
    color: #F5F5DC;
    font-weight: 400;
}

.linear-wipe {
    position: relative;
    text-align: center;

    background: linear-gradient(
        to right,
        #3F8FD8 20%,
        #70baff 40%,
        #70baff 60%,
        #3F8FD8 80%
    );


    background-size: 200% auto;

    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-decoration: none;

    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}


h1 { font-size: clamp(2.5rem, 4vw + 1rem, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem); }