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

body {
    background: #000;
    font-family: 'Helvetica Neue', sans-serif;
}

.card {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 5px 30px rgba(255, 255, 255, 0.5);
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content {
    position: absolute;
    bottom: 10px;
    left: 20px;
    color: white;
    z-index: 2;
}

.content h3 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 6px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.content p {
    font-size: 16px;
    text-align: center;
    color: #ddd;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}