*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #3b2e1e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f5ebe0, #ede0d0, #e8e4de);
    padding: 2rem;
}

.card {
    text-align: center;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(120, 80, 30, 0.15);
    border: 1px solid rgba(190, 160, 120, 0.3);
}

h1 {
    font-size: 2.5rem;
    color: #2d6a2e;
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #8a7560;
    margin-bottom: 1.5rem;
}

img {
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(100, 70, 30, 0.25);
    margin-bottom: 1.5rem;
}

.footer-note {
    font-size: 0.9rem;
    color: #a89580;
    font-style: italic;
}
