 body {
            background: radial-gradient(circle at top, #450a0a 0, #020617 55%);
            color: #e5e7eb;
            min-height: 100vh;
        }

        .navbar-brand {
            font-weight: 700;
            letter-spacing: .05em;
        }

        .shop-header {
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .shop-header h1 {
            font-size: 2.2rem;
            font-weight: 700;
        }

        .shop-header p {
            color: #9ca3af;
        }

        .nav-pills .nav-link {
            padding: 0.35rem 0.95rem;
            font-size: 0.9rem;
			color:white;
        }

        .nav-pills .nav-link.active {
            background: linear-gradient(135deg, #ef4444, #b91c1c);
            color: #fff;
        }

        .shop-item-card {
            border: 1px solid rgba(248, 113, 113, 0.25);
            border-radius: 0.85rem;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(15,23,42,0.98), rgba(15,23,42,0.85));
            backdrop-filter: blur(4px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.6);
            transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, border-color 0.12s ease-out;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .shop-item-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 45px rgba(0,0,0,0.8);
            border-color: rgba(248, 113, 113, 0.8);
        }

        .shop-item-thumb-wrapper {
            position: relative;
            background: radial-gradient(circle at top, rgba(248,113,113,0.18), rgba(15,23,42,1));
            padding: 1.2rem 0.75rem 0.75rem;
        }

        .shop-item-thumb {
            width: 100%;
            max-height: 120px;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.8));
        }

        .rarity-badge {
            position: absolute;
            right: 0.85rem;
            top: 0.55rem;
            padding: 0.1rem 0.6rem;
            font-size: 0.7rem;
            border-radius: 999px;
            background: rgba(15,23,42,0.9);
            border: 1px solid rgba(248,113,113,0.7);
            color: #fecaca;
            text-transform: uppercase;
            letter-spacing: .06em;
        }

        .discount-badge {
            position: absolute;
            left: 0.85rem;
            top: 0.55rem;
            padding: 0.1rem 0.6rem;
            font-size: 0.7rem;
            border-radius: 999px;
            background: linear-gradient(135deg, #f97316, #b91c1c);
            color: #fef2f2;
            font-weight: 600;
            letter-spacing: .06em;
        }

        .command-badge {
            position: absolute;
            left: 0.85rem;
            bottom: 0.55rem;
            padding: 0.1rem 0.6rem;
            font-size: 0.7rem;
            border-radius: 999px;
            background: rgba(15,23,42,0.9);
            border: 1px solid rgba(96,165,250,0.7);
            color: #bfdbfe;
            text-transform: uppercase;
            letter-spacing: .06em;
        }

        .card-body {
            padding: 0.85rem 1rem 1rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .item-top {
            flex: 0 0 auto;
        }

        .item-bottom {
            margin-top: auto;
        }

        .item-title-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: .25rem;
        }

        .item-title-row h5 {
            font-size: 1.05rem;
            margin: 0;
        }

        .item-category-badge {
            font-size: 0.7rem;
            padding: 0.18rem 0.55rem;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: .08em;
            background: rgba(15,23,42,0.95);
            border: 1px solid rgba(148,163,184,0.55);
            color: #9ca3af;
        }

        .item-meta {
            font-size: 0.8rem;
            color: #9ca3af;
        }

        .item-desc {
            font-size: 0.85rem;
            color: #9ca3af;
            margin-top: 0.35rem;
            min-height: 3.2em;
            max-height: 4.5em;
            overflow: hidden;
        }

        .quality-price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: .75rem;
            margin-top: 0.5rem;
            margin-bottom: 0.4rem;
            min-height: 70px;
        }

        .quality-select {
            max-width: 110px;
        }

        .price-pill {
            font-size: 0.9rem;
            padding: 0.28rem 0.75rem;
            border-radius: 999px;
            background: rgba(15,23,42,0.95);
            border: 1px solid rgba(239,68,68,0.8);
            color: #fecaca;
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            white-space: nowrap;
        }

        .price-original {
            text-decoration: line-through;
        }

        .buy-btn {
            width: 100%;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 0.75rem;
            background: linear-gradient(135deg, #ef4444, #b91c1c);
            border: none;
        }

        .buy-btn:disabled,
        .fast-buy-btn:disabled {
            background: #4b5563;
            cursor: not-allowed;
        }

        .buy-btn:not(:disabled):hover {
            filter: brightness(1.05);
        }

        .fast-buy-btn {
            width: 100%;
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: 0.65rem;
        }

        .btn-group-vertical-custom {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.35rem;
        }

        .modal-elevated {
            background: radial-gradient(circle at top, #111827, #020617);
            border-radius: 1rem;
            border: 1px solid rgba(248, 113, 113, 0.5);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
        }

        .modal-header-strong {
            background: linear-gradient(135deg, #b91c1c, #7f1d1d);
            border-bottom: 1px solid rgba(248, 113, 113, 0.5);
        }

        .modal-footer-strong {
            background: rgba(15, 23, 42, 0.95);
            border-top: 1px solid rgba(30, 64, 175, 0.5);
        }

        .modal-body-soft {
            background: rgba(15, 23, 42, 0.92);
        }

        .history-table thead th {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: #9ca3af;
            border-bottom-color: #4b5563;
            background: rgba(15, 23, 42, 0.95);
        }
        .history-table tbody td {
            font-size: 0.85rem;
            border-color: #1f2933;
        }
        .history-table tbody tr:nth-child(even) {
            background: rgba(15, 23, 42, 0.7);
        }
        .history-table tbody tr:nth-child(odd) {
            background: rgba(15, 23, 42, 0.4);
        }
        .badge-claimed {
            background-color: #16a34a;
        }
        .badge-pending {
            background-color: #ea580c;
        }

        /* Warenkorb-Leiste rechts */
        .cart-sidebar-wrapper {
            position: relative;
        }

        .cart-sidebar {
            border-radius: 1rem;
            border: 1px solid rgba(248, 113, 113, 0.35);
            background: linear-gradient(145deg, rgba(15,23,42,0.98), rgba(15,23,42,0.9));
            box-shadow: 0 18px 35px rgba(0,0,0,0.6);
            padding: 0.9rem 1rem 0.8rem;
            position: sticky;
            top: 80px;
        }

        .cart-sidebar-header {
            border-bottom: 1px solid rgba(31,41,55,1);
            padding-bottom: 0.6rem;
            margin-bottom: 0.6rem;
        }

        .cart-sidebar-body {
            max-height: calc(100vh - 260px);
            overflow-y: auto;
            padding-right: 0.25rem;
        }

        .cart-sidebar-footer {
            border-top: 1px solid rgba(31,41,55,1);
            padding-top: 0.6rem;
            margin-top: 0.6rem;
        }

        @media (max-width: 991.98px) {
            .cart-sidebar {
                position: static;
                margin-top: 1rem;
            }
            .cart-sidebar-body {
                max-height: none;
            }
        }

        @media (max-width: 767px) {
            .shop-header h1 {
                font-size: 1.7rem;
            }
            .card-body {
                padding: 0.8rem;
            }
            .history-table {
                font-size: 0.8rem;
            }
        }
		

.ranking-table thead th {
            cursor: pointer;
            user-select: none;
            white-space: nowrap;
            border-bottom: 2px solid rgba(255,255,255,0.15);
        }
        .ranking-table thead th .sort-indicator {
            font-size: 0.7rem;
            opacity: 0.6;
            margin-left: 0.25rem;
        }
        .ranking-table thead th.sorted-asc,
        .ranking-table thead th.sorted-desc {
            color: #ffc107;
        }
        .ranking-table tbody tr:hover {
            background-color: rgba(255,255,255,0.05);
        }
        .ranking-row-top1 {
            background: linear-gradient(90deg, rgba(255,215,0,0.18), transparent);
        }
        .ranking-row-top2 {
            background: linear-gradient(90deg, rgba(192,192,192,0.18), transparent);
        }
        .ranking-row-top3 {
            background: linear-gradient(90deg, rgba(205,127,50,0.18), transparent);
        }
        .ranking-table td,
        .ranking-table th {
            vertical-align: middle;
        }
		
		
		
	