@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #05070b;
    color: white;
}

/* topbar */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

.logo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-image: url('./images/BloxGet Icon - Background, white.png');
    background-size: cover;
    background-position: center;
}

.title {
    margin-left: 14px;
    font-size: 20px;
    font-weight: 700;
}

.menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.menu a:hover {
    opacity: 0.7;
}

/* hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 30px 80px;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 96px;
    font-weight: 900;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 50px;
    line-height: 1.7;
}

/* info card */

.card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 35px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.card p {
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0.9;
}

.highlight-link {
    color: #b388ff;
    font-weight: 600;
    text-decoration: none;
}

.highlight-link:hover {
    text-decoration: underline;
}

/* footer */

.footer {
    background: #0d1117;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    opacity: 0.7;
}

.footer p {
    opacity: 0.7;
    font-size: 0.95rem;
}
