    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
    }

    .heading-font {
        font-family: 'Playfair Display', serif;
    }

    /* Mobiel Menu Logica Fix */
    #mobile-menu {
        display: none;
    }

    #mobile-menu.active {
        display: block !important;
    }

    .fade-in {
        animation: fadeIn 0.8s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hover-lift:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .nav-link {
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #ef4444;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .edition-card {
        background: white;
        border-radius: 1.5rem;
        border: 1px solid #f3f4f6;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease;
        overflow: hidden;
    }

    .edition-card.java {
        border-top: 4px solid #ef4444;
    }

    .edition-card.bedrock {
        border-top: 4px solid #3b82f6;
    }

    .ip-box {
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 0.75rem;
        padding: 1rem 1.2rem;
    }

    .ip-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #9ca3af;
        margin-bottom: 4px;
    }

    .ip-value {
        font-family: 'Courier New', monospace;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .ip-value.java-color {
        color: #ef4444;
    }

    .ip-value.bedrock-color {
        color: #3b82f6;
    }

    .copy-btn {
        font-size: 0.75rem;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 6px;
        border: 1.5px solid #e5e7eb;
        background: white;
        color: #6b7280;
        cursor: pointer;
        transition: all 0.2s;
    }

    .copy-btn.copied {
        border-color: #86efac;
        color: #16a34a;
        background: #f0fdf4;
    }

    .step-num {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
    }

    .step-num.java {
        background: #fef2f2;
        color: #ef4444;
    }

    .step-num.bedrock {
        background: #eff6ff;
        color: #3b82f6;
    }

    .video-wrap {
        aspect-ratio: 16/9;
        background: #111827;
        border-radius: 0.75rem;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        width: 100%;
    }

    .video-wrap iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .item-card {
        background: white;
        border: 1.5px solid #f3f4f6;
        border-radius: 1rem;
        padding: 1.2rem;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        transition: all 0.25s;
    }

    .item-card:hover {
        border-color: #fca5a5;
        transform: translateY(-2px);
    }

    .toast {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%) translateY(16px);
        background: #16a34a;
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.65rem 1.4rem;
        border-radius: 9999px;
        opacity: 0;
        transition: all 0.3s;
        z-index: 9999;
    }

    .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f3f4f6;
    }

    ::-webkit-scrollbar-thumb {
        background: #ef4444;
        border-radius: 10px;
    }