body {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

h1 {
    color: #fff;
    text-align: center;
}

p {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

.card {
    background: linear-gradient(-45deg, #232526, #1a2980, #26d0ce, #232526);
    background-size: 400% 400%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26, 41, 128, 0.2);
    overflow: hidden;
    width: 340px;
    text-align: center;
    transition: box-shadow 0.3s;
    position: relative;
    animation: glow-gradient 3s ease-in-out infinite;
}

@keyframes glow-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.card:hover {
    box-shadow: 0 8px 32px rgba(38, 208, 206, 0.25);
}

.card-img {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(8px);
    transition: filter 0.5s;
}

.card-img.loaded {
    filter: blur(0);
}

.card-content {
    padding: 24px 16px;
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    background: #ff5f6d;         /* Changed to a vibrant pink-red */
    color: #fff;                 /* White text */
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
}

.card-link:hover {
    background: #ffc371;         /* Orange-yellow on hover */
    color: #232526;
}