* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: #aaa;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 5px solid white;
    box-shadow: 
        0 0 0 3px black,
        0 0 0 8px white,
        15px 20px 0 rgba(0, 0, 0, 0.3);
    padding: 28px 21px;
    backdrop-filter: blur(5px);
}

h1 {
    font-family: Georgia, Times New Roman, serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.brand-dot {
    color: #E3836D;
    font-size: 1.1em;
}

.subtitle {
    font-family: Georgia, Times New Roman, serif;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 25px;
    font-style: italic;
    text-align: center;
}

p {
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #333;
    text-align: left;
}

.highlight {
    font-weight: 600;
}

.cta {
    margin-top: 30px;
    font-size: 1rem;
    font-weight: 600;
}

.links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.links a {
    display: inline-block;
    margin: 10px 15px 5px 15px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-size: 0.85rem;
    transition: background 0.3s ease;
    border: 2px solid black;
    box-shadow: 0 0 0 4px white, 0 0 0 5px black, 4px 7px 0 5px rgba(0, 0, 0, 0.15)
}

.links a:hover {
    background: rgba(0, 0, 0, 0.9);
    text-decoration: none;
}
