
:root {
    --primary-color: #ff6347;
    --secondary-color: #20B2AA;
    --text-color: #333;
    --bg-color: #fff;
}

        body {
            cursor: none;
            padding-bottom: 60px; /* Untuk navbar bawah */
        }
        
        .cursor {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: rgba(255, 99, 71, 0.6);
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease;
            mix-blend-mode: difference;
        }

        .cursor-shadow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 99, 71, 0.2);
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            transition: transform 0.15s ease;
        }

        .navbar {
    padding: 1.5rem 2rem;
}

        /* Slim hamburger button */
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0;
            width: 30px;
            height: 30px;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: none !important;
            display: inline-block;
            width: 24px;
            height: 2px;
            background-color: var(--text-color);
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        .navbar-toggler-icon::before {
            transform: translateY(-8px);
        }

        .navbar-toggler-icon::after {
            transform: translateY(8px);
        }

        /* Offcanvas styles */
        .offcanvas {
            width: 280px;
            background-color: #f8f9fa;
            border-left: 1px solid rgba(0,0,0,0.1);
        }

        .offcanvas-header {
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .offcanvas-body .nav-link {
            padding: 0.75rem 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .offcanvas-body .nav-link:hover {
            background-color: rgba(0, 0, 0, 0.05);
            color: var(--primary-color);
            transform: translateX(5px);
        }

        /* Bottom Navbar */
        .bottom-navbar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #f8f9fa;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .bottom-text {
            margin: 0;
            font-weight: 500;
        }

        .donate-btn {
            background-color: #ff6347;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 6px 15px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .donate-btn:hover {
            background-color: #e05a40;
            transform: translateY(-2px);
        }

        /* Bookmark icon */
        .bookmark-icon-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 40px 0;
        }

        .bookmark-icon {
            font-size: 60px;
            color: #ff6347;
            animation: pulse 2s infinite;
        }

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

        .bookmark-title {
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
        }

        /* Bookmark cards */
        .bookmark-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .bookmark-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .bookmark-card .card-body {
            padding: 20px;
        }

        .bookmark-card h3 {
            margin-bottom: 10px;
            font-weight: 600;
        }

        .bookmark-card .view-link {
            position: absolute;
            top: 15px;
            right: 15px;
            color: #ff6347;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .bookmark-card .view-link:hover {
            transform: scale(1.2);
            color: #e05a40;
        }