* {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    :root {
        --primary: #2e7d32;
        --primary-dark: #1b5e20;
        --secondary: #fbc02d;
        --gradient-start: #2e7d32;
        --gradient-end: #1b5e20;
        --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    body {
        font-family: 'Minecraft', Arial, sans-serif;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
        min-height: 100vh;
    }
    
    .navbar {
        background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
    }
    
    .navbar-brand {
        font-weight: bold;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .navbar-brand i {
        font-size: 1.8rem;
    }
    
    .premium-badge {
        cursor: pointer;
        color: var(--secondary);
        font-size: 0.8rem;
        transition: transform 0.3s, color 0.3s;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .premium-badge:hover {
        transform: scale(1.1);
        color: #fff;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .addon-card {
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: var(--card-shadow);
        border: none;
    }
    
    .addon-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--hover-shadow);
    }
    
    .premium-tag {
        position: absolute;
        top: 10px;
        left: 10px;
        background: linear-gradient(135deg, var(--secondary) 0%, #ffa000 100%);
        color: #000;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .download-btn {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        border: none;
        border-radius: 8px;
        padding: 10px 20px;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .download-btn:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3d12 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .premium-btn {
        background: linear-gradient(135deg, var(--secondary) 0%, #ffa000 100%);
        color: #000;
        border: none;
        border-radius: 8px;
        padding: 10px 20px;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .premium-btn:hover {
        background: linear-gradient(135deg, #ffa000 0%, #e69100 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .modal-premium {
        background-color: #1e1e1e;
        color: white;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .modal-premium .btn-close {
        filter: invert(1);
    }
    
    @font-face {
        font-family: 'Minecraft';
    }

    /* Loading spinner */
    .spinner-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 200px;
    }

    .spinner {
        width: 3rem;
        height: 3rem;
    }

    /* Enhanced Hamburger Menu */
    .menu-container {
        position: relative;
        display: inline-block;
    }
    
    /* Modern Hamburger Button */
    .hamburger {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border: 2px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .hamburger:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    
    .hamburger.active {
        background: rgba(255, 255, 255, 0.25);
        transform: rotate(90deg);
    }
    
    /* Animated Hamburger Lines */
    .hamburger .line {
        width: 24px;
        height: 2px;
        background-color: white;
        margin: 3px 0;
        border-radius: 2px;
        transition: all 0.4s ease;
        transform-origin: center;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Enhanced Menu */
    .menu {
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        width: 250px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        overflow: hidden;
    }
    
    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    
    .menu::before {
        content: '';
        position: absolute;
        top: -10px;
        right: 20px;
        width: 20px;
        height: 20px;
        background: white;
        transform: rotate(45deg);
        z-index: -1;
    }
    
    .menu ul {
        list-style: none;
        padding: 10px 0;
        margin: 0;
    }
    
    .menu li {
        padding: 12px 25px;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        overflow: hidden;
    }
    
    .menu li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--primary);
        transform: scaleY(0);
        transition: transform 0.2s;
    }
    
    .menu li:hover {
        background-color: #f8f9fa;
    }
    
    .menu li:hover::before {
        transform: scaleY(1);
    }
    
    .menu li i {
        color: var(--primary);
        width: 20px;
        text-align: center;
    }
    
    a {
        text-decoration: none;
        color: black;
        width: 100%;
        display: block;
    }
    
    .privacy-widget {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 350px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        padding: 15px;
        z-index: 1000;
        transform: translateY(100px);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;
        font-size: 0.9rem;
    }
    
    .privacy-widget.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .privacy-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }
    
    .privacy-header h3 {
        color: #2c3e50;
        font-size: 1.1rem;
    }
    
    .close-btn {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: #7f8c8d;
        transition: color 0.3s;
    }
    
    .close-btn:hover {
        color: #e74c3c;
    }
    
    .privacy-content {
        margin-bottom: 15px;
        color: #34495e;
        line-height: 1.5;
    }
    
    .privacy-content a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .privacy-content a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    
    .privacy-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .privacy-btn {
        padding: 8px 15px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .accept-btn {
        background-color: #27ae60;
        color: white;
    }
    
    .accept-btn:hover {
        background-color: #219653;
        transform: translateY(-2px);
    }
    
    .settings-btn {
        background-color: #f1f1f1;
        color: #333;
    }
    
    .settings-btn:hover {
        background-color: #e0e0e0;
        transform: translateY(-2px);
    }
    
    .animate-text {
        display: inline-block;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s forwards;
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .highlight {
        color: #e74c3c;
        font-weight: 600;
    }
    
    .icon {
        margin-right: 8px;
        color: #3498db;
    }
    
    @media (max-width: 500px) {
        .privacy-widget {
            width: 90%;
            right: 5%;
            left: 5%;
        }
    }
    
    /* Search Box Enhancement */
    .input-group {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
        border: none;
        padding: 12px 15px;
    }
    
    .form-control:focus {
        box-shadow: none;
        border-color: var(--primary);
    }
    
    .btn-outline-success {
        border: none;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        padding: 12px 20px;
        transition: all 0.3s;
    }
    
    .btn-outline-success:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3d12 100%);
        transform: translateY(-2px);
    }
    
    /* Section Headers */
    h2 {
        color: var(--primary);
        font-weight: 700;
        position: relative;
        padding-bottom: 10px;
    }
    
    h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        border-radius: 2px;
    }

    /* Style untuk centang biru */
    .fa-check-circle {
        vertical-align: middle;
        margin-left: 2px;
    }

    /* Enhanced Search & Filter Section */
    .search-filter-section {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: var(--card-shadow);
        margin-bottom: 25px;
    }

    .filter-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }

    .filter-btn {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 20px;
        padding: 8px 15px;
        font-size: 0.9rem;
        transition: all 0.3s;
        cursor: pointer;
    }

    .filter-btn:hover {
        background: #e9ecef;
    }

    .filter-btn.active {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        border-color: var(--primary);
    }

    .sort-options {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .sort-label {
        font-weight: 600;
        color: var(--primary);
    }

    .sort-select {
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 8px 12px;
        background: white;
        cursor: pointer;
    }

    .trending-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: bold;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .popular-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: bold;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .search-suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
        max-height: 200px;
        overflow-y: auto;
        display: none;
    }

    .search-suggestion-item {
        padding: 10px 15px;
        cursor: pointer;
        border-bottom: 1px solid #f1f1f1;
        transition: background 0.2s;
    }

    .search-suggestion-item:hover {
        background: #f8f9fa;
    }

    .search-suggestion-item:last-child {
        border-bottom: none;
    }

    .search-container {
        position: relative;
    }

    .search-results-info {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #6c757d;
    }

    .no-results {
        text-align: center;
        padding: 40px 0;
    }

    .no-results i {
        font-size: 3rem;
        color: #dee2e6;
        margin-bottom: 15px;
    }

    /* Ads container styling */
    .ads-container {
        margin: 20px 0;
        text-align: center;
        padding: 15px;
        background: white;
        border-radius: 12px;
        box-shadow: var(--card-shadow);
    }