* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(145deg, #1f2a3f 0%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
    padding: 1.5rem;
}

.card {
    max-width: 820px;
    width: 100%;
    background: rgba(18, 25, 40, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3rem;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    padding: 3rem 3rem 2.5rem;
    transition: all 0.2s ease;
}

/* subtle texture */
.card {
    background-image: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 30%);
}

/* navigation grid — clean two‑column layout */
.nav-grid {
    display: grid;
    gap: 1.25rem 2.5rem;
    margin-bottom: 3rem;
}

.nav-item {
    color: #eaeef5;
    font-size: 1.5rem;
    font-weight: 450;
    letter-spacing: -0.01em;
    padding: 0.5rem 0 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.15s, border-color 0.15s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

/* mimic interactive items (even if not linked) */
.nav-item:hover {
    color: #aad0ff;
    border-bottom-color: #5f8fcf;
    transform: translateX(4px);
    cursor: default;
}

/* follow us section — exactly as described */
.follow-section {
    margin-top: 32px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
    display: flex;
    align-items: center;
    gap: 23px;
    flex-wrap: wrap;
}

.follow-label {
    color: #ced9e8;
    font-size: 26px;
    font-weight: 440;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.02);
    padding: 5px 19px 5px 19px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

/* social icon row */
.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(20, 30, 50, 0.6);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.7rem;
    transition: all 0.2s;
    backdrop-filter: blur(5px);
    text-decoration: none;
}

.social-icon:hover {
    background: #2b3d5c;
    border-color: #90b8ff;
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 10px 18px -8px #0e1a2b;
    cursor: default;
}

/* simple font fallback icons (unicode / letters) */
.icon-fb::after { content: "fb"; font-size: 1.3rem; font-weight: 500; letter-spacing: -0.5px; }
.icon-tw::after { content: "tw"; font-size: 1.3rem; font-weight: 500; }
.icon-ig::after { content: "ig"; font-size: 1.3rem; font-weight: 500; }
.icon-li::after { content: "in"; font-size: 1.3rem; font-weight: 500; }
.icon-yt::after { content: "yt"; font-size: 1.3rem; font-weight: 500; }

/* for readability on small displays */
@media (max-width: 600px) {
    .card {
        padding: 2rem 1.5rem 2rem;
        border-radius: 2rem;
    }
    .nav-grid {
        grid-template-columns: 1fr;  /* single column on narrow screens */
        gap: 0.8rem;
    }
    .nav-item {
        font-size: 1.4rem;
        width: 100%;
    }
    .nav-item:nth-child(8),
    .nav-item:nth-child(9) {
        font-size: 1.35rem;
    }
    .follow-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .social-links {
        justify-content: center;
        width: 100%;
    }
}

/* additional micro-detail: top line (like HOME, ABOUT etc) */
.visually-hidden {
    position: absolute; 
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
}

/* optional small label "MENU" – not in original but keeps harmony */
.menu-note {
    color: #9aaec9;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3a5670;
    padding-left: 1rem;
    opacity: 0.8;
}
/* remove if distracting – it just adds a soft context */