        /* Yellow/Gold theme for Stickers page */
        .stickers-page {
            --accent: #eab308;
            --accent-hover: #facc15;
            --accent-gradient: linear-gradient(135deg, #eab308, #f59e0b);
        }

        .stickers-page .logo-icon {
            background: var(--accent-gradient);
        }

        .stickers-page .info-box {
            background: rgba(234, 179, 8, 0.1);
            border-color: rgba(234, 179, 8, 0.3);
        }

        .stickers-page .info-content strong {
            color: var(--accent);
        }

        /* Search and filter controls */
        .controls-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            align-items: center;
        }

        .search-box {
            flex: 1;
            min-width: 200px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-sm);
            color: var(--text-primary);
            font-size: 0.875rem;
            font-family: var(--font-sans);
            transition: border-color 0.2s ease;
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--accent);
        }

        .search-box::before {
            content: "🔍";
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.875rem;
        }

        .filter-select {
            padding: 0.75rem 1rem;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-sm);
            color: var(--text-primary);
            font-size: 0.875rem;
            font-family: var(--font-sans);
            cursor: pointer;
            min-width: 150px;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--accent);
        }

        .filter-select option {
            background: var(--bg-secondary);
        }

        /* Stats cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 1rem;
        }

        .stat-card-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 0.25rem;
        }

        .stat-card-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--accent);
        }

        /* Collection sections */
        .collection-section {
            margin-bottom: 2rem;
        }

        .collection-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }

        .collection-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .collection-count {
            font-size: 0.75rem;
            color: var(--text-muted);
            background: rgba(30, 41, 59, 0.5);
            padding: 0.25rem 0.5rem;
            border-radius: 999px;
        }

        /* Item grid */
        .items-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .items-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .items-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1280px) {
            .items-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        /* Item card */
        .item-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .item-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .item-image-container {
            position: relative;
            aspect-ratio: 1;
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .item-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .item-card:hover .item-image {
            transform: scale(1.1);
        }

        .item-rarity {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            font-size: 0.625rem;
            padding: 0.25rem 0.5rem;
            border-radius: 999px;
            font-weight: 600;
            text-transform: uppercase;
            background: rgba(0, 0, 0, 0.5);
        }

        .item-type-badge {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            font-size: 0.625rem;
            padding: 0.25rem 0.5rem;
            border-radius: 999px;
            font-weight: 600;
            text-transform: uppercase;
            background: rgba(234, 179, 8, 0.8);
            color: #000;
        }

        /* Rarity colors */
        .rarity-consumer {
            color: #b0c3d9;
        }

        .rarity-industrial {
            color: #5e98d9;
        }

        .rarity-mil-spec {
            color: #4b69ff;
        }

        .rarity-restricted {
            color: #8847ff;
        }

        .rarity-classified {
            color: #d32ce6;
        }

        .rarity-covert {
            color: #eb4b4b;
        }

        .rarity-extraordinary {
            color: #e4ae39;
        }

        .rarity-contraband {
            color: #e4ae39;
        }

        .rarity-base {
            color: #b0c3d9;
        }

        .rarity-high {
            color: #d32ce6;
        }

        .rarity-remarkable {
            color: #8847ff;
        }

        .rarity-exotic {
            color: #eb4b4b;
        }

        .item-info {
            padding: 0.75rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .item-name {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .item-price {
            font-size: 0.875rem;
            font-weight: 700;
            color: #22c55e;
            margin-bottom: 0.5rem;
        }

        .item-price.no-price {
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        .item-links {
            display: flex;
            gap: 0.5rem;
            margin-top: auto;
        }

        .item-link {
            flex: 1;
            text-align: center;
            padding: 0.4rem;
            font-size: 0.7rem;
            font-weight: 500;
            border-radius: var(--border-radius-sm);
            transition: all 0.2s ease;
        }

        .item-link.steam {
            background: rgba(102, 192, 244, 0.15);
            color: #66c0f4;
            border: 1px solid rgba(102, 192, 244, 0.3);
        }

        .item-link.steam:hover {
            background: rgba(102, 192, 244, 0.3);
            color: #fff;
        }

        .item-link.skinport {
            background: rgba(255, 165, 0, 0.15);
            color: #ffa500;
            border: 1px solid rgba(255, 165, 0, 0.3);
        }

        .item-link.skinport:hover {
            background: rgba(255, 165, 0, 0.3);
            color: #fff;
        }

        /* Loading state */
        .loading {
            text-align: center;
            padding: 3rem;
            color: var(--text-muted);
        }

        .loading-spinner {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 3px solid var(--border-color);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1rem;
        }

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

        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 3rem;
            color: var(--text-muted);
        }

        .empty-state-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Virtual scroll / pagination */
        .load-more-btn {
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 2rem auto;
            padding: 1rem 2rem;
            background: var(--accent-gradient);
            border: none;
            border-radius: var(--border-radius-sm);
            color: #000;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .load-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
        }

        .load-more-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Scroll to top */
        .scroll-top-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            background: var(--accent-gradient);
            border: none;
            border-radius: 50%;
            color: #000;
            font-size: 1.25rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
            z-index: 50;
        }

        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(234, 179, 8, 0.5);
        }