.card {
    background: #1e1e2d;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.badge-custom {
    background: rgba(54, 153, 255, 0.1);
    color: #3699ff;
    border: 1px solid rgba(54, 153, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.badge-custom:hover {
    background: rgba(54, 153, 255, 0.2);
}

.card-text {
    color: #92929f;
    font-size: 0.9rem;
    line-height: 1.6;
}

.btn-primary {
    background: #3699ff;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a86ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 153, 255, 0.3);
}

.img-container {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .img-container img {
    transform: scale(1.05);
}

.date-text {
    color: #565674;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.card {
    background: #1e1e2d;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Image Container */
.img-container {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .img-container img {
    transform: scale(1.05);
}

/* Badge & Date */
.badge-custom {
    background: rgba(54, 153, 255, 0.1);
    color: #3699ff;
    border: 1px solid rgba(54, 153, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.badge-custom:hover {
    background: rgba(54, 153, 255, 0.2);
}

.date-text {
    color: #565674;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Filter Section */
.filter-card {
    background: #1e1e2d;
    border: none;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background-color: #171723;
    border: 1px solid #323248;
    color: #92929f;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: #171723;
    border-color: #3699ff;
    color: #ffffff;
    box-shadow: none;
}

/* Search Button */
.search-btn {
    background: linear-gradient(135deg, #3699ff 0%, #2284e6 100%);
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(54, 153, 255, 0.2);
    height: 45px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #2284e6 0%, #1a76d2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 153, 255, 0.3);
}

.search-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(54, 153, 255, 0.2);
}

.search-btn .material-icons-two-tone {
    font-size: 20px;
    margin-right: 8px;
}

.search-btn span {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.reset-btn {
    background: #565674;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(86, 86, 116, 0.2);
    height: 45px;
    color: #ffffff;
}

.reset-btn:hover {
    background: #4a4a62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(86, 86, 116, 0.3);
}

.reset-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(86, 86, 116, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.search-btn:hover .material-icons-two-tone {
    animation: pulse 1s infinite;
}
