:root {
    --bg: #0b0b0b;
    --card-bg: #111;
    --border: #e6e6e6;
    --text: #eaeaea;
    --muted: #a0a0a0;
    --radius: 22px;
    --gap: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px) brightness(0.6);
    z-index: -1;
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: var(--gap);
}

.card {
    background: linear-gradient(180deg, #121212, #0e0e0e);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: scale(1.025);
}

.header-card {
    text-align: center;
}

.header-card h1 {
    font-size: 1.8rem;
}

.footer-card {
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
}

.content {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: var(--gap);
}

.left-card ul,
.right-card ul {
    list-style: none;
    margin-top: 12px;
}

.left-card li,
.right-card li {
    margin-bottom: 8px;
}

.left-card a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.9;
}

.left-card a:hover {
    opacity: 1;
    text-decoration: underline;
}

.right-card {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: none;
}

.right-card::-webkit-scrollbar {
    display: none;
}

.main-card {
    text-align: center;
}

.profile-pic {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 1.5px solid var(--border);
}

.main-card p {
    color: var(--muted);
    line-height: 1.6;
}

.right-card h3 {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--muted);
}

@media (max-width: 900px) {
    .content {
        grid-template-columns: 1fr;
    }
}