:root {
    --background-color: #fbfbf9;
    --text-primary: #2c3e50;
    --heading-color: rgb(30, 43, 98);
    --container-bg: white;
    --shadow-light: rgba(0, 0, 0, 0.07);
    --text-secondary: #666;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: var(--background-color);
    color: var(--text-primary);
    padding: 36px 20px;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    background: var(--container-bg);
    border-radius: 12px;
    box-shadow: 0 6px 18px var(--shadow-light);
    padding: 32px;
    position: relative;

    &::before {
        content: '';
        position: absolute;
        top: -240px;
        right: -240px;
        width: 100%;
        height: 100%;
        background-image: url('assets/Vector.svg');
        background-repeat: no-repeat;
        background-position: left top;
        background-size: auto 80%;
        opacity: 0.18;
        transform: rotate(-90deg);
        transform-origin: center;
        pointer-events: none;
        z-index: 0;
    }
}
header { text-align: center; margin-bottom: 24px; }
header h1 { font-size: 2rem; color: var(--heading-color); margin-bottom: 6px; position: relative; z-index: 1; }
.highlight-glpi {
    display: inline-block;
    padding: 0 10px 6px;
    background-image: url('assets/Header_blue_marker.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 60%;
}
.muted { font-weight: 600; color: var(--text-secondary); font-size: 0.95em; }
.subtitle { color: var(--text-secondary); position: relative; z-index: 1; }
.subtitle strong {
    background-image: url('assets/Header_yellow_marker.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 90% 60%;
    padding: 2px 8px -6px;
    display: inline-block;
}

.links-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.98));
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}
.link-row .link-title { font-weight: 600; color: var(--heading-color); }
.link-row .link-url a { color: #006fbf; text-decoration: none; word-break: break-all; }
.link-row .link-url a:hover { text-decoration: underline; }

.footer-note { color: var(--text-secondary); font-size: 0.9em; margin-top: 20px; text-align: center; }

@media (max-width: 600px) {
    .container { padding: 20px; }
    header h1 { font-size: 1.4rem; }
}

@media (max-width: 640px) {
    .link-row { flex-direction: column; align-items: stretch; text-align: left; }
    .link-row .link-url { margin-top: 8px; }
}

/* Site footer */
.site-footer {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.95em;
    color: var(--text-secondary);
}
.site-footer a { color: #006fbf; text-decoration: none; font-weight: 600; }
.site-footer a:hover { text-decoration: underline; }

