:root{
    --bg1:#ffffff;
    --bg2:#ffffff;
    --card: rgba(255,255,255,.85);
    --text:#111827;   
    --muted:#4b5563; 
    --accent:#2563eb;
    --accent2:#059669;
    --border:#e5e7eb;
    --shadow: 0 10px 30px rgba(0,0,0,.10);
    --radius: 18px;
}
*{ box-sizing:border-box; }
body{
    margin:0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:var(--text);
    min-height:100vh;
    background:
    radial-gradient(900px 500px at 15% 10%, rgba(96,165,250,.25), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(52,211,153,.18), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
    display:flex;
    align-items:center;
    justify-content:center;
    padding:28px;
    padding-bottom: 40px;     
}
.wrap{
    width: min(620px, 100%);
    margin: 0 auto;
}
header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:22px;
}
.title{
    font-size: clamp(28px, 3vw, 40px);
    margin:0;
    letter-spacing:.2px;
}
.subtitle{
    margin:8px 0 0;
    color:var(--muted);
    line-height:1.4;
    max-width: 65ch;
}
.grid{
    display:grid;
    grid-template-columns: 1fr;
    gap:18px;
}

.footer-links {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 6px 16px;
    background: rgb(218, 217, 217);
    border-top: 1px solid #ddd;
    text-align: center;
    z-index: 1200;
    font-size: 13px; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.footer-links a {
    color: inherit;
    text-decoration: none;
    margin: 0 4px;
    font-size: inherit;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links .sep {
    opacity: 0.6;
    font-size: inherit;
}

.footer-links { display: flex; }    

.card{
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    backdrop-filter: blur(8px);
}
.card h2{
    margin: 0 0 8px;
    font-size: 20px;
}
.card p{
    margin: 0 0 16px;
    color: var(--muted);
    line-height:1.5;
}
.actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}
a.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration:none;
    color: var(--text);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    transition: transform .08s ease, background .15s ease, border-color .15s ease;
    font-weight: 600;
}
a.btn:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.07);
    border-color: rgba(96,165,250,.45);
}
a.btn.primary{
    border-color: rgba(96,165,250,.55);
    background: rgba(96,165,250,.12);
}
a.btn.green{
    border-color: rgba(52,211,153,.55);
    background: rgba(52,211,153,.10);
}
.pill{
    display:inline-block;
    font-size:12px;
    padding:4px 10px;
    border-radius: 999px;
    border:1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: var(--muted);
    white-space:nowrap;
}
.cookie-banner {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(20, 20, 20, 0.95);
    color: white;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25);
}

.cookie-banner-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner p {
    margin: 0;
    line-height: 1.4;
}

.cookie-banner a {
    color: white;
    text-decoration: underline;
}

.cookie-btn {
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    white-space: nowrap;
    background: #ffffff;
    color: #111111;
    font-weight: 600;
}

.cookie-btn:hover {
    background: #e6e6e6;
}

@media (max-width: 760px){
    .grid{ grid-template-columns: 1fr; }
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
}