.event-log-background {
    background-image: url("../Backgrounds/mines.webp");
    background-blend-mode: multiply;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.event-log-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 0 20px 20px 20px;
    max-width: 100%;
    margin: 10rem auto;
}

.event-log-card {
    position: relative;
    width: calc(100% / 3 - 20px);
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    background-color: #fff;
    cursor: pointer;
    transition: transform 0.5s, box-shadow 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    will-change: transform, box-shadow;
}

.event-log-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(9, 117, 241, 0.8);
    border: 1px solid #0974f1;
}

.event-log-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.event-log-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.event-log-card.development::before {
  background: #000000e3;
  z-index: 10;
  content: 'Under Development\A(Coming Soon)';
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  white-space: pre;
  text-align: center;
}

.event-log-card-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    z-index: 2;
    text-align: left;
    padding: 10px;
}

.event-log-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.event-log-card p {
    font-size: 14px;
    margin: 5px 0;
}

.event-log-card button:active {
  box-shadow: none;
}


@media (max-width: 768px) {
    .event-log-card-container {
        flex-direction: column;
        align-items: center;
    }

    .event-log-card {
        width: 90%;
        max-width: 400px;
    }
}
