        /* General reset and styles */
        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(to bottom, #ffffff, #ffffff);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 10px;
            width: 90%;
            max-width: 1200px;
        }

        li {
            background: linear-gradient(135deg, #bdffb4, #7ed957);
            border-radius: 15px;
            padding: 10px;
            text-align: center;
            font-size: 14px;
            color: #000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        li:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        li:hover .icon {
            transform: rotate(360deg);
            color: #fff;
        }

        a {
            color: #000;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            position: relative;
            z-index: 1;
        }

        .icon {
            font-size: 20px;
            transition: transform 0.5s ease, color 0.5s ease;
        }

        li::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 20%, transparent 60%);
            transform: rotate(45deg);
            transition: all 0.5s ease;
            z-index: 0;
        }

        li:hover::after {
            transform: rotate(90deg);
            opacity: 0;
        }

        hr {
            margin-top: 10px;
            border: none;
            height: 2px;
            background-color: rgba(255, 255, 255, 0.5);
            width: 40%;
            align-self: center;
        }

        /* Responsive layout: 3 columns for screens 800px or wider */
        @media (min-width: 800px) {
            ul {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Responsive layout: 1 column for screens 500px or narrower */
        @media (max-width: 500px) {
            ul {
                grid-template-columns: 1fr;
            }
        }

        .clickable-link {
            color: #000; /* Warna teks */
            font-size: 14px; /* Ukuran teks */
            font-weight: 900;
            text-decoration: none; /* Hilangkan garis bawah */
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer; /* Menunjukkan bahwa elemen bisa diklik */
        }
        
        .clickable-link:hover {
            color: #0c6300; /* Warna ungu lebih gelap saat hover */
            text-decoration: underline; /* Tambahkan garis bawah saat hover */
        }
        