        /* Orange theme for Skins page */
        .skins-page {
            --accent: #f97316;
            --accent-hover: #fb923c;
            --accent-gradient: linear-gradient(135deg, #f97316, #dc2626);
        }

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

        /* 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);
        }

        /* Controls */
        .controls-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
            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);
        }

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

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

        .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: 130px;
        }

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

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

        /* Weapon type quick filters */
        .weapon-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }

        .weapon-filter-btn {
            padding: 0.5rem 1rem;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 999px;
            color: var(--text-secondary);
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .weapon-filter-btn:hover {
            border-color: var(--accent);
            color: var(--text-primary);
        }

        .weapon-filter-btn.active {
            background: var(--accent-gradient);
            border-color: var(--accent);
            color: white;
        }

        /* Skins list container */
        .skins-list {
            background: rgba(30, 41, 59, 0.3);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        /* Skin row */
        .skin-row {
            border-bottom: 1px solid var(--border-color);
            transition: background 0.2s ease;
        }

        .skin-row:last-child {
            border-bottom: none;
        }

        .skin-row:hover {
            background: rgba(30, 41, 59, 0.5);
        }

        .skin-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            cursor: pointer;
        }

        .skin-image {
            width: 80px;
            height: 60px;
            object-fit: contain;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 8px;
            padding: 4px;
        }

        .skin-info {
            flex: 1;
            min-width: 0;
        }

        .skin-name {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .skin-meta {
            display: flex;
            gap: 0.75rem;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .skin-rarity {
            font-weight: 600;
            padding: 0.125rem 0.5rem;
            border-radius: 4px;
            background: rgba(0, 0, 0, 0.3);
        }

        .skin-collection {
            max-width: 200px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .skin-expand-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: transform 0.2s ease;
        }

        .skin-row.expanded .skin-expand-icon {
            transform: rotate(180deg);
        }

        /* Wear conditions table */
        .wear-table {
            display: none;
            background: rgba(15, 23, 42, 0.5);
            padding: 1rem;
            border-top: 1px solid var(--border-color);
        }

        .skin-row.expanded .wear-table {
            display: block;
        }

        .wear-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .wear-table th,
        .wear-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .wear-table th {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
        }

        .wear-table tr:last-child td {
            border-bottom: none;
        }

        .wear-table .wear-name {
            font-weight: 500;
        }

        .wear-table .wear-price {
            font-weight: 700;
            color: #22c55e;
            font-family: var(--font-mono);
        }

        .wear-table .wear-price.no-price {
            color: var(--text-muted);
            font-weight: 400;
        }

        .wear-table .wear-links {
            display: flex;
            gap: 0.5rem;
            justify-content: flex-end;
        }

        .wear-link {
            padding: 0.375rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 500;
            border-radius: 4px;
            transition: all 0.2s ease;
            text-decoration: none;
        }

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

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

        .wear-link.skinport {
            background: transparent;
            color: #ffa500;
        }

        .wear-link.skinport:hover {
            color: #fff;
        }

        /* Loading */
        .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;
        }

        /* 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: #fff;
            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(249, 115, 22, 0.4);
        }

        /* 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: white;
            font-size: 1.25rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
            z-index: 50;
        }

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

        /* Mobile responsive table */
        @media (max-width: 640px) {

            .wear-table th:nth-child(1),
            .wear-table td:nth-child(1) {
                display: table-cell;
            }

            .wear-table th:nth-child(2),
            .wear-table td:nth-child(2) {
                text-align: right;
            }

            .wear-table th:nth-child(3),
            .wear-table td:nth-child(3) {
                display: none;
            }

            .skin-image {
                width: 60px;
                height: 45px;
            }
        }