:root {
            --primary: #5A67D8;
            --primary-dark: #4C51BF;
            --secondary: #48BB78;
            --accent: #ED8936;
            --danger: #F56565;
            --warning: #ECC94B;
            --dark: #1A202C;
            --darker: #171923;
            --light: #F7FAFC;
            --gray: #A0AEC0;
            --card-bg: #2D3748;
            --border-radius: 8px;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.2s ease;
            --minecraft-green: #55AA55;
            --minecraft-dark: #2D2D2D;
            --minecraft-light: #F5F5F5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rubik', 'Poppins', sans-serif;
        }

        body {
            background-color: #0F1419;
            color: var(--minecraft-light);
            min-height: 100vh;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(72, 187, 120, 0.05) 0%, transparent 20%);
        }

        .user-info-display {
            text-align: center;
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 25px;
        }

        .user-info-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            margin-bottom: 15px;
        }

        .appeal-avatar {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            border: 3px solid var(--primary);
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .appeal-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .appeal-username {
            color: var(--light);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .appeal-status {
            color: var(--secondary);
            font-size: 0.9rem;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .appeal-status i {
            font-size: 1rem;
        }

        /* Minecraft-styled Container */
        .mc-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Login Page */
        #loginPage {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #0F1419 0%, #1A202C 100%);
            font-family: 'Inter', sans-serif;
        }

        .login-box {
            background: rgba(23, 25, 35, 0.95);
            border-radius: 16px;
            padding: 50px 40px;
            width: 100%;
            max-width: 480px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            text-align: center;
        }

        /* Logo bovenaan */
        .login-logo img {
            height: 80px; /* mooi formaat voor navbar/login */
            width: auto;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .login-logo img:hover {
            transform: scale(1.05);
        }

        .login-header {
            text-align: center;
            margin-bottom: 40px;
        }


        .login-subtitle {
            font-size: 1rem;
            color: var(--gray);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .login-logo {
            height: 80px; /* past mooi onder de subtitle */
            width: auto;
            margin: 0 auto 20px auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .login-logo:hover {
            transform: scale(1.05); /* subtiele hover zoom */
        }

        .login-title {
            font-size: 2.4rem;
            font-weight: 700;
            background: linear-gradient(to right, #5A67D8, #48BB78);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .login-description {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.6;
            margin-top: 10px;
        }

        .mc-input {
            width: 100%;
            padding: 14px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            color: var(--minecraft-light);
            font-size: 1rem;
            transition: var(--transition);
            margin-bottom: 25px;
            font-weight: 500;
        }

        .mc-input:focus {
            outline: none;
            border-color: rgba(4, 226, 255, 0.473);
            background: rgba(255, 255, 255, 0.08);
        }

        .mc-input::placeholder {
            color: #718096;
        }

        .mc-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }

        .mc-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(90, 103, 216, 0.3);
        }

        .info-section {
            margin-top: 30px;
            text-align: left;
            background: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: var(--border-radius);
        }

        .info-section h3 {
            color: var(--light);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .info-section p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Store Page - CubeCraft Style */
        #storePage, #updatesPage, #appealPage, #supportPage, #aboutPage {
            display: none;
            min-height: 100vh;
            background: #0F1419;
        }

        /* Avatar Popup Styles */
.avatar-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        z-index: 2000;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .popup-content {
        background: linear-gradient(145deg, #1A202C 0%, #171923 100%);
        border-radius: 12px;
        width: 100%;
        max-width: 1100px;
        max-height: 85vh;
        overflow-y: auto;
        border: 2px solid rgba(4, 226, 255, 0.473);
        box-shadow: 0 0 40px rgba(4, 226, 255, 0.2);
    }

    .popup-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.3);
    }

    .popup-header h3 {
        color: var(--light);
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .close-popup {
        background: rgba(245, 101, 101, 0.2);
        color: var(--danger);
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-popup:hover {
        background: var(--danger);
        color: white;
    }

    .popup-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        min-height: 500px;
    }

    .popup-section {
        padding: 25px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .popup-section:last-child {
        border-right: none;
    }

    .stats-info {
        margin-bottom: 25px;
    }

    .stats-info h4 {
        color: var(--light);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.2rem;
    }

    .stats-info p {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .game-modes {
        margin-bottom: 25px;
    }

    .game-modes h5 {
        color: var(--light);
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .mode-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mode-btn {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius);
        padding: 15px;
        color: var(--light);
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
    }

    .mode-btn:hover {
        background: rgba(4, 226, 255, 0.1);
        border-color: rgba(4, 226, 255, 0.473);
        transform: translateY(-3px);
    }

    .mode-btn i {
        font-size: 1.5rem;
        color: rgba(4, 226, 255, 0.8);
    }

    .stats-display, .history-display {
        margin-top: 25px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: var(--border-radius);
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .stats-box {
        text-align: center;
    }

    .stats-box h5 {
        color: var(--light);
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        padding: 15px;
        text-align: center;
    }

    .stat-value {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--secondary);
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.85rem;
        color: var(--gray);
    }

    .history-section h4 {
        color: var(--light);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.2rem;
    }

    .history-item {
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--border-radius);
        padding: 20px;
        margin-bottom: 15px;
        border-left: 4px solid var(--danger);
    }

    .history-item.mute {
        border-left-color: var(--warning);
    }

    .history-item.approved {
        border-left-color: var(--secondary);
    }

    .history-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .history-type {
        display: inline-block;
        padding: 4px 12px;
        background: rgba(245, 101, 101, 0.2);
        color: var(--danger);
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .history-item.mute .history-type {
        background: rgba(236, 201, 75, 0.2);
        color: var(--warning);
    }

    .history-item.approved .history-type {
        background: rgba(72, 187, 120, 0.2);
        color: var(--secondary);
    }

    .history-date {
        color: var(--gray);
        font-size: 0.85rem;
    }

    .history-reason {
        color: var(--light);
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .history-mod {
        color: var(--gray);
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .history-evidence {
        margin-top: 15px;
    }

    .evidence-label {
        color: var(--gray);
        font-size: 0.9rem;
        margin-bottom: 8px;
        display: block;
    }

    .evidence-images {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .evidence-img {
        width: 80px;
        height: 60px;
        border-radius: 6px;
        object-fit: cover;
        cursor: pointer;
        border: 2px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition);
    }

    .evidence-img:hover {
        transform: scale(1.1);
        border-color: rgba(4, 226, 255, 0.473);
    }

    .no-history {
        text-align: center;
        padding: 40px 20px;
        color: var(--gray);
    }

    .no-history i {
        font-size: 3rem;
        margin-bottom: 15px;
        opacity: 0.5;
    }

    /* Evidence Modal */
    .evidence-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 3000;
        justify-content: center;
        align-items: center;
    }

    .evidence-modal .modal-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
    }

    .evidence-modal img {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 8px;
    }

    .close-modal {
        position: absolute;
        top: -40px;
        right: 0;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        background: rgba(0, 0, 0, 0.5);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-modal:hover {
        background: var(--danger);
    }
    

/* Responsive */
@media (max-width: 768px) {
    .popup-body {
        grid-template-columns: 1fr;
    }
    
    .popup-section {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .popup-section:last-child {
        border-bottom: none;
    }
    
    .mode-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .popup-content {
        max-height: 90vh;
    }
}

        /* Store Header */
        .store-header {
            background: rgba(15, 20, 25, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .store-brand {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .brand-logo img {
            height: 45px;
            width: auto;
            display: block;
        }

        .store-nav {
            display: flex;
            gap: 25px;
        }

        .nav-item {
    /* Basisstijlen */
    --nav-item-color: var(--gray, #718096);
    --nav-item-color-hover: var(--light, #f7fafc);
    --nav-item-color-active: var(--light, #f7fafc);
    --nav-item-indicator-color: #16c9c9;
    --nav-item-indicator-height: 3px;
    --nav-item-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-item-font-weight: 500;
    --nav-item-font-size: clamp(0.875rem, 2vw, 1.125rem);
    --nav-item-padding-y: 0.75rem;
    --nav-item-padding-x: 1rem;
    --nav-item-gap: 0.5rem;
    
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: var(--nav-item-gap);
    
    /* Typografie */
    color: var(--nav-item-color);
    font-size: var(--nav-item-font-size);
    font-weight: var(--nav-item-font-weight);
    text-decoration: none;
    line-height: 1.5;
    letter-spacing: 0.01em;
    
    /* Spacing & Box-model */
    padding: var(--nav-item-padding-y) var(--nav-item-padding-x);
    margin: 0 0.25rem;
    
    /* Visuele effecten */
    border-radius: 0.5rem;
    background: transparent;
    border: 2px solid transparent;
    
    /* Transities */
    transition: var(--nav-item-transition);
    transition-property: color, background-color, border-color, transform;
    
    /* Toegankelijkheid */
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    
    /* Focus management */
    outline: none;
    
    /* Performance */
    will-change: transform, color, background-color;
    backface-visibility: hidden;
}

/* Hover state met gradient effect */
.nav-item:hover {
    color: var(--nav-item-color-hover);
    background-color: rgba(22, 201, 201, 0.08);
    transform: translateY(-1px);
    border-color: rgba(4, 226, 255, 0.473);
}

/* Active/Current state */
.nav-item.active {
    color: var(--nav-item-color-active);
    font-weight: 600;
    background-color: rgba(22, 201, 201, 0.12);
}

/* Indicator animatie */
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: var(--nav-item-indicator-height);
    background: linear-gradient(
        90deg,
        transparent,
        var(--nav-item-indicator-color),
        transparent
    );
    border-radius: 4px;
    animation: indicator-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(22, 201, 201, 0.4);
}

/* Focus state voor toetsenbordnavigatie */
.nav-item:focus-visible {
    outline: 2px solid var(--nav-item-indicator-color);
    outline-offset: 2px;
    background-color: rgba(22, 201, 201, 0.15);
    transform: scale(1.05);
}

/* Active state voor klik-interactie */
.nav-item:active {
    transform: translateY(0px);
    transition-duration: 0.1s;
}

/* Disabled state */
.nav-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Icon ondersteuning */
.nav-item .nav-icon {
    width: 1.25em;
    height: 1.25em;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-item:hover .nav-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Badge/counter ondersteuning */
.nav-item .nav-badge {
    background-color: var(--nav-item-indicator-color);
    color: white;
    font-size: 0.75em;
    padding: 0.125em 0.5em;
    border-radius: 1em;
    margin-left: 0.25em;
    font-weight: 600;
}

/* Mobile responsive aanpassingen */
@media (max-width: 768px) {
    .nav-item {
        --nav-item-padding-x: 0.75rem;
        --nav-item-padding-y: 0.625rem;
        --nav-item-font-size: 1rem;
        width: 100%;
        justify-content: flex-start;
        margin: 0.125rem 0;
        border-radius: 0.75rem;
    }
    
    .nav-item.active::after {
        left: 0;
        transform: none;
        width: 4px;
        height: 60%;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(
            to bottom,
            transparent,
            var(--nav-item-indicator-color),
            transparent
        );
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .nav-item {
        --nav-item-color: #a0aec0;
        --nav-item-color-hover: #e2e8f0;
        --nav-item-color-active: #ffffff;
        --nav-item-indicator-color: #4fd1d1;
    }
    
    .nav-item:hover {
        background-color: rgba(79, 209, 209, 0.12);
    }
}

/* Hoge contrast modus */
@media (prefers-contrast: high) {
    .nav-item {
        border-width: 3px;
    }
    
    .nav-item.active::after {
        height: 4px;
        box-shadow: 0 0 8px currentColor;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .nav-item {
        --nav-item-transition: none;
        animation: none;
    }
    
    .nav-item:hover {
        transform: none;
    }
    
    .nav-item .nav-icon {
        transition: none;
    }
}

/* Animatie voor indicator */
@keyframes indicator-pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(22, 201, 201, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(22, 201, 201, 0.6);
    }
}

/* Loading state */
.nav-item.loading {
    position: relative;
    color: transparent !important;
}

.nav-item.loading::before {
    content: '';
    position: absolute;
    width: 1.5em;
    height: 1.5em;
    border: 2px solid var(--nav-item-indicator-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

        .user-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .user-avatar {
            width: 45px;
            height: 45px;
            border-radius: 8px;
            border: 2px solid #0ed3d3c4;
            overflow: hidden;
            transition: var(--transition);
        }

        .user-avatar:hover {
            transform: scale(1.1);
            border-color: var(--secondary);
        }

        .avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .username {
            font-weight: 600;
            color: var(--light);
            font-size: 1rem;
        }

        .logout-btn {
            background: rgba(239, 68, 68, 0.1);
            color: #F56565;
            border: 1px solid rgba(245, 101, 101, 0.3);
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logout-btn:hover {
            background: rgba(239, 68, 68, 0.2);
            border-color: #F56565;
        }

        /* Page Hero */
        .page-hero {
            padding: 60px 0 40px;
            text-align: center;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(to right, var(--light), var(--gray));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        /* Page Content */
        .page-content {
            padding: 40px 0 80px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--light);
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        /* Products Grid - CubeCraft Style */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .product-card {
            background: linear-gradient(145deg, #1A202C 0%, #171923 100%);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: rgba(4, 226, 255, 0.473);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .products-grid .product-card > div:last-child {
            padding: 0 25px 25px !important;
            text-align: center !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            margin-top: auto !important;
        }

        /* Make the button take proper width */
        .products-grid .product-card .mc-btn {
            width: 100% !important;
            max-width: 250px !important;
            margin: 0 auto !important;
        }

        /* Ensure all product cards have equal height */
        .product-card {
            display: flex !important;
            flex-direction: column !important;
        }

        /* STAFF PAGE STYLES */
        .staff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .staff-card {
            background: linear-gradient(145deg, #1A202C 0%, #171923 100%);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }

        .staff-card:hover {
            transform: translateY(-5px);
            border-color: rgba(4, 226, 255, 0.473);
        }

        .staff-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid var(--primary);
            margin: 0 auto 20px;
            overflow: hidden;
            background: var(--dark);
        }

        .staff-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .staff-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--light);
        }

        .staff-role {
            display: inline-block;
            padding: 6px 15px;
            background: rgba(90, 103, 216, 0.2);
            color: var(--primary);
            border-radius: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .staff-role.owner { background: #5555ff42; color: #5555ff; }
        .staff-role.admin { background: #0e0eae5d; color: #1010c7; }
        .staff-role.senior-moderator { background: #be1f2742; color: #be1f27; }
        .staff-role.mod { background: #be1f2742; color: #be1f27; }
        .staff-role.dev { background: #00aa0042; color: #00aa00; }
        .staff-role.designer { background: #00aaaa42; color: #00aaaa; }
        .staff-role.helper { background: #c81b5542; color: #c81b54; }

        /* Hiring Section */
        .hiring-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 40px;
            margin-top: 60px;
            border-left: 4px solid var(--secondary);
        }

        .job-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .job-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 25px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .job-card:hover {
            border-color: rgba(72, 233, 40, 0.473);
            transform: translateY(-5px);
        }

        .job-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--gray);
        }

        .job-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--light);
        }

        .job-desc {
            font-size: 0.95rem;
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .apply-btn {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(90, 103, 216, 0.3);
        }

        /* Shopping Cart Styles */
        .cart-container {
            position: relative;
            margin-right: 15px;
        }

        .cart-btn {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            color: var(--light);
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .cart-btn:hover {
            background: rgba(4, 226, 255, 0.1);
            border-color: rgba(4, 226, 255, 0.473);
            transform: translateY(-2px);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--danger);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--darker);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        /* Cart Popup */
        .cart-popup {
            display: none;
            position: absolute;
            top: 55px;
            right: 0;
            width: 400px;
            max-width: 90vw;
            background: linear-gradient(145deg, #1A202C 0%, #171923 100%);
            border-radius: 12px;
            border: 2px solid rgba(4, 226, 255, 0.473);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

        .cart-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h3 {
            color: var(--light);
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cart-body {
            max-height: 400px;
            overflow-y: auto;
            padding: 15px;
        }

        .cart-empty {
            text-align: center;
            padding: 40px 20px;
            color: var(--gray);
        }

        .cart-empty i {
            font-size: 3rem;
            margin-bottom: 15px;
            opacity: 0.5;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            margin-bottom: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .cart-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .cart-item-info h4 {
            color: var(--light);
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: var(--secondary);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .cart-item-remove {
            background: rgba(245, 101, 101, 0.2);
            color: var(--danger);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 6px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-item-remove:hover {
            background: var(--danger);
            color: white;
        }

        .cart-footer {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.3);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            color: var(--light);
            font-size: 1.2rem;
        }

        .cart-total span:last-child {
            color: var(--secondary);
            font-weight: 700;
        }

        .cart-actions {
            display: flex;
            gap: 10px;
        }

        .cart-actions .mc-btn {
            flex: 1;
            padding: 12px;
            font-size: 0.95rem;
        }

        /* Close cart button */
        .close-cart {
            background: transparent;
            color: var(--gray);
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            padding: 5px;
        }

        .close-cart:hover {
            color: var(--danger);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cart-popup {
                position: fixed;
                top: 80px;
                right: 10px;
                left: 10px;
                width: auto;
                max-height: 70vh;
            }

            .cart-btn {
                width: 40px;
                height: 40px;
            }
        }   
        
        /* Appeals Page */
        .appeal-form {
            background: linear-gradient(145deg, #1A202C 0%, #171923 100%);
            border-radius: 12px;
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--light);
            font-size: 1.1rem;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            color: var(--light);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: rgba(4, 226, 255, 0.473);
            background: rgba(255, 255, 255, 0.08);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Updates Page */
        .updates-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .update-card {
            background: linear-gradient(145deg, #1A202C 0%, #171923 100%);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }

        .update-card:hover {
            border-color: rgba(4, 226, 255, 0.473);
            transform: translateY(-3px);
        }

        .update-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .update-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            overflow: hidden;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--light);
        }

        .author-info .role {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 500;
        }

        .update-date {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .update-content {
            line-height: 1.7;
            color: var(--light);
            margin-bottom: 20px;
        }

        .update-image {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 20px 0;
            max-height: 400px;
            object-fit: cover;
        }

        .update-tags {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .tag {
            padding: 5px 12px;
            background: rgba(90, 103, 216, 0.2);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .tag.update { background: rgba(72, 187, 120, 0.2); color: var(--secondary); }
        .tag.announcement { background: rgba(245, 101, 101, 0.2); color: var(--danger); }
        .tag.event { background: rgba(236, 201, 75, 0.2); color: var(--warning); }

        /* Admin Controls */
        .admin-controls {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            border: 2px dashed rgba(255, 255, 255, 0.1);
        }

        .admin-controls h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .admin-only {
            display: none;
        }

        /* Support Page */
        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .support-card {
            background: linear-gradient(145deg, #1A202C 0%, #171923 100%);
            border-radius: 12px;
            padding: 35px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }

        .support-card:hover {
            border-color: rgba(4, 226, 255, 0.473);
            transform: translateY(-5px);
        }

        .support-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .support-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--light);
        }

        .support-desc {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        /* Store Footer */
        .store-footer {
            background: rgba(15, 20, 25, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 50px 0 30px;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--light);
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--light);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.85rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .staff-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .store-nav {
                order: 3;
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .user-section {
                order: 2;
            }
            
            .login-box {
                padding: 40px 30px;
            }
            
            .login-title {
                font-size: 2.2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

/* Floating blurred blobs background */
        .bg-pattern {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
            opacity: 0.12;
        }

        .bg-pattern .blob {
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            filter: blur(70px);
            mix-blend-mode: screen;
            transform: translate3d(0,0,0);
            will-change: transform, opacity;
            animation: float 10s ease-in-out infinite;
            opacity: 0.9;
        }

        .bg-pattern .blob.b1 { left: -8%; top: 10%; background: radial-gradient(circle at 30% 30%, rgba(90,103,216,0.95), rgba(72,187,120,0.7)); animation-duration: 12s; }
        .bg-pattern .blob.b2 { right: -6%; bottom: 5%; background: radial-gradient(circle at 30% 30%, rgba(72,187,120,0.95), rgba(90,103,216,0.6)); animation-duration: 18s; width: 380px; height: 380px; filter: blur(90px); }
        .bg-pattern .blob.b3 { left: 30%; bottom: 30%; background: radial-gradient(circle at 30% 30%, rgba(4,226,255,0.12), rgba(255,255,255,0.02)); animation-duration: 24s; width: 140px; height: 140px; filter: blur(40px); }

        @keyframes float {
            0% { transform: translate3d(0,0,0) scale(1); }
            50% { transform: translate3d(20px,-30px,0) scale(1.05); }
            100% { transform: translate3d(0,0,0) scale(1); }
        }

        /* Moving subtle dot-grid overlay */
        .bg-dots {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.035;
            background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
            background-size: 24px 24px;
            animation: moveDots 40s linear infinite;
            mix-blend-mode: overlay;
        }

        @keyframes moveDots { from { background-position: 0 0; } to { background-position: 200px 200px; } }

        /* Scroll reveal for .fade-in */
        .fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .fade-in.in-view { opacity: 1; transform: translateY(0); }

        /* CTA micro-interactions */
        .mc-btn { position: relative; overflow: visible; }
        .mc-btn.pulse-cta { animation: pulse 2.6s infinite; }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(72,187,120,0.18); }
            70% { box-shadow: 0 0 0 12px rgba(72,187,120,0); }
            100% { box-shadow: 0 0 0 0 rgba(72,187,120,0); }
        }

        /* Small pop when added to cart */
        .product-btn.added { transform: scale(1.03); box-shadow: 0 12px 30px rgba(72,187,120,0.12); transition: transform 0.2s ease; }

        /* Respect prefers-reduced-motion */
        @media (prefers-reduced-motion: reduce) {
            .bg-pattern, .bg-dots, .fade-in, .mc-btn.pulse-cta { animation: none !important; transition: none !important; }
        }

/* Image Thumbnail Styles */
            .image-thumbnail {
                position: relative;
                display: inline-block;
                margin: 5px;
                border-radius: 6px;
                overflow: hidden;
                border: 2px solid rgba(255,255,255,0.1);
            }

            .image-thumbnail img {
                width: 80px;
                height: 60px;
                object-fit: cover;
                cursor: pointer;
                transition: transform 0.2s;
            }

            .image-thumbnail img:hover {
                transform: scale(1.1);
            }

            .remove-image-btn {
                position: absolute;
                top: 5px;
                right: 5px;
                background: rgba(245, 101, 101, 0.9);
                color: white;
                border: none;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                cursor: pointer;
                font-size: 0.7rem;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .remove-image-btn:hover {
                background: var(--danger);
            }

            /* Post Item in Delete Modal */
            .post-item {
                background: rgba(255,255,255,0.05);
                border-radius: 8px;
                padding: 15px;
                margin-bottom: 10px;
                border-left: 4px solid var(--primary);
            }

            .post-item:hover {
                background: rgba(255,255,255,0.08);
            }

            .post-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 10px;
            }

            .post-title {
                font-weight: 600;
                color: var(--light);
                font-size: 1.1rem;
            }

            .post-date {
                font-size: 0.85rem;
                color: var(--gray);
            }

            .post-preview {
                color: var(--gray);
                font-size: 0.9rem;
                margin-bottom: 10px;
                line-height: 1.4;
                max-height: 60px;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .post-actions {
                display: flex;
                justify-content: flex-end;
                gap: 10px;
            }

            .delete-post-btn {
                background: rgba(245, 101, 101, 0.2);
                color: var(--danger);
                border: 1px solid rgba(245, 101, 101, 0.3);
                padding: 5px 12px;
                border-radius: 4px;
                cursor: pointer;
                font-size: 0.85rem;
                transition: all 0.2s;
                display: flex;
                align-items: center;
                gap: 5px;
            }

            .delete-post-btn:hover {
                background: var(--danger);
                color: white;
            }