.button-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #6e8efb, #a777e3); /* Gradien ungu-biru */
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px; /* Bentuk pill */
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* Efek hover */
.button-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #a777e3, #6e8efb); /* Gradien terbalik */
}

/* Efek aktif */
.button-link:active {
    transform: translateY(1px);
}

/* Animasi garis bawah saat hover (opsional) */
.button-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.button-link:hover::after {
    width: 70%;
    left: 15%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    color: #000000;
    font-size: 2.5em;
}

.diskon-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.diskon-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
    overflow: hidden;
    transition: transform 0.3s;
}

.diskon-card:hover {
    transform: translateY(-5px);
}

.diskon-image {
    height: 200px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.diskon-info {
    padding: 20px;
}

.diskon-label {
    background-color: #000000;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.diskon-title {
    font-size: 1.2em;
    margin: 10px 0;
}

.diskon-desc {
    color: #666;
    margin-bottom: 15px;
}

.diskon-period {
    font-size: 0.9em;
    color: #888;
}