    body {
        background: radial-gradient(circle, #f9f5f1 0%, #e7d5c7 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        font-family: "Playfair Display", serif;
        text-align: center;
        padding: 20px;
    }

    .mensaje {
        background: #fff;
        padding: 50px 30px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        max-width: 450px;
    }

    h2 {
        font-family: "Great Vibes", cursive;
        color: #8b5e3c;
        font-size: 2.6em;
        margin-bottom: 0.4em;
    }

    p {
        font-size: 1em;
        color: #5a4636;
        margin-bottom: 1em;
    }

    a {
        text-decoration: none;
        color: #fff;
        background: #8b5e3c;
        padding: 10px 25px;
        border-radius: 25px;
        transition: background 0.3s;
    }

    a:hover {
        background: #a16a48;
    }