:root {
    /* --bg-color: #f9f9fb;
    --text-main: #0A324E; */
    --bg-color: #0A324E;
    --text-main: #fff;
    --text-muted: #646467;
    --text-alt: #004772;
    --accent: #00A4B3;
    --border: rgba(0,0,0,0.08);
    --glass: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 900px;
    width: 100%;
    padding: 55px 24px;
    overflow: hidden;
}

/* Header Section */
header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin: 0 0 10px 0;
    font-weight: 800;
}

.meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subtitle {
    color: var(--text-muted);
}

/* Image Placeholder */
.image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #e5e7eb;
    border-radius: 16px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-style: italic;
    border: 1px solid var(--border);
}

.image-container>img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

/* Information Section */
.section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

/* Link Cards */
.link-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.link-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.link-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border-right-width: 4px;
    border-right-color: var(--accent);
}

.link-card h3 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    color: var(--accent);
}

.link-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-alt);
}

footer {
    border-top: 1px solid var(--border);
    margin-top: 80px;
    padding-top: 40px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}