/* Reset & Core Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #0b0d11;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(255, 159, 28, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(136, 71, 255, 0.08) 0%, transparent 40%);
    color: #f5f6f8;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 159, 28, 0.4);
}

/* App Container Layout */
#app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 12px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    transition: max-width 0.3s ease;
}

@media (min-width: 600px) {
    #app-container {
        max-width: 700px;
    }
}

@media (min-width: 900px) {
    #app-container {
        max-width: 1000px;
    }
}

@media (min-width: 1200px) {
    #app-container {
        max-width: 1200px;
    }
}

/* Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 4px 16px 4px;
}

.logo-container {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1.5px;
}

.logo-accent {
    color: #ff9f1c;
    text-shadow: 0 0 10px rgba(255, 159, 28, 0.4);
}

.logo-text {
    color: #ffffff;
    font-weight: 400;
    margin-left: 2px;
}

/* User Status Card */
.user-status-card {
    display: flex;
    align-items: center;
    background: rgba(22, 26, 37, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 6px 12px;
    backdrop-filter: blur(8px);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff9f1c, #ff5e3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 10px;
    color: #000;
    margin-right: 8px;
    box-shadow: 0 0 8px rgba(255, 159, 28, 0.3);
}

.user-details {
    display: flex;
    flex-direction: column;
}

.username-text {
    font-size: 13px;
    font-weight: 600;
}

.steam-status-badge {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #eb4b4b;
}

.steam-status-badge.linked {
    color: #00e676;
}

/* Steam Link Box (Warning/Setup Panel) */
.steam-link-panel {
    background: rgba(22, 26, 37, 0.8);
    border: 1px solid rgba(235, 75, 75, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    animation: fadeInUp 0.4s ease;
}

.steam-link-panel h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #ffffff;
}

.steam-link-panel p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.4;
}

.input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.input-group input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: #ff9f1c;
}

.btn-primary {
    background: linear-gradient(135deg, #ff9f1c, #ff6b35);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.2s;
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.3);
}

.help-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.3;
}

/* Main Layout Workspace */
.main-layout {
    display: flex;
    flex: 1;
    gap: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}

/* Category Sidebar Navigation */
.category-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 68px;
    flex-shrink: 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-sidebar::-webkit-scrollbar {
    display: none;
}

.nav-tab {
    background: rgba(22, 26, 37, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 10px 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
    width: 100%;
}

.nav-tab .icon {
    font-size: 18px;
}

.nav-tab .label {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    word-break: break-word;
}

.nav-tab.active {
    background: rgba(255, 159, 28, 0.15);
    border-color: rgba(255, 159, 28, 0.3);
}

.nav-tab.active .label {
    color: #ff9f1c;
}

.nav-tab:active {
    transform: scale(0.95);
}

/* Desktop Sidebar Adaptivity */
@media (min-width: 768px) {
    .category-sidebar {
        width: 160px;
        gap: 10px;
    }
    .nav-tab {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 12px 16px;
        gap: 12px;
        border-radius: 12px;
    }
    .nav-tab .icon {
        font-size: 20px;
    }
    .nav-tab .label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        text-align: left;
    }
    .nav-tab.active .label {
        color: #ff9f1c;
        font-weight: 800;
    }
}

/* Content Area View */
.content-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(22, 26, 37, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 10px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.filter-header {
    margin-bottom: 10px;
}

.filter-header input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    outline: none;
}

.filter-header input:focus {
    border-color: rgba(255, 159, 28, 0.3);
}

/* Back Navigation Bar */
.back-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-back {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-back:active {
    transform: scale(0.95);
}

.weapon-view-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Slot Card styling */
.slot-status-badge {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
}

.status-default {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-equipped {
    background: rgba(255, 159, 28, 0.12);
    color: #ff9f1c;
    border: 1px solid rgba(255, 159, 28, 0.25);
}

.skin-card.slot-unselected .skin-card-img {
    filter: grayscale(1) opacity(0.3) drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.skin-card.slot-selected {
    border-color: rgba(255, 159, 28, 0.35) !important;
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.12) !important;
}

/* Grid Scroll Container */
.items-grid-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    grid-auto-rows: max-content;
    gap: 10px;
    overflow-y: auto;
    padding-right: 4px;
}

/* Cards Design */
.skin-card {
    background: rgba(22, 26, 37, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 8px 10px 12px 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.skin-card:hover {
    transform: translateY(-2px);
}

.skin-card:active {
    transform: scale(0.97);
}

/* Glowing background related to rarity */
.rarity-indicator-bg {
    position: absolute;
    top: -50px;
    width: 100px;
    height: 100px;
    filter: blur(40px);
    opacity: 0.15;
    z-index: 0;
    border-radius: 50%;
}

.skin-card-img {
    width: 90%;
    max-height: 80px;
    object-fit: contain;
    margin: 8px 0;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.skin-card-info {
    width: 100%;
    text-align: left;
    z-index: 1;
}

.weapon-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
}

.skin-title {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}

/* Card Rarity Bottom Line */
.rarity-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 0 0 14px 14px;
}

/* Covert (Red) */
.rarity-covert { background-color: #eb4b4b; }
.card-glow-covert { box-shadow: 0 0 15px rgba(235, 75, 75, 0.1); }
/* Classified (Pink) */
.rarity-classified { background-color: #d32ce6; }
.card-glow-classified { box-shadow: 0 0 15px rgba(211, 44, 230, 0.1); }
/* Restricted (Purple) */
.rarity-restricted { background-color: #8847ff; }
.card-glow-restricted { box-shadow: 0 0 15px rgba(136, 71, 255, 0.1); }
/* Mil-spec (Blue) */
.rarity-milspec { background-color: #4b69ff; }
.card-glow-milspec { box-shadow: 0 0 15px rgba(75, 105, 255, 0.1); }
/* Gold (Yellow) */
.rarity-gold { background-color: #e4ae39; }
.card-glow-gold { box-shadow: 0 0 15px rgba(228, 174, 57, 0.1); }

/* Modal Customizer */
.modal-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 16px;
    animation: fadeIn 0.25s ease;
}

.modal-content {
    background: rgba(22, 26, 37, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-button {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

/* Modal Preview Section */
.item-preview-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 70%);
    padding: 24px 16px;
    position: relative;
}

.item-rarity-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    filter: blur(50px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
}

#modal-item-image {
    max-width: 60%;
    max-height: 120px;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

#modal-item-name {
    font-size: 18px;
    font-weight: 800;
    margin-top: 14px;
    text-align: center;
    z-index: 1;
}

.rarity-badge {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    z-index: 1;
}

/* Modal Settings Section */
.item-settings-section {
    background: rgba(14, 18, 28, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 24px 24px 24px;
}

.item-settings-section h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.control-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.control-group label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    font-weight: 600;
}

.control-group input[type="number"],
.control-group input[type="text"] {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.control-group input[type="number"]:focus,
.control-group input[type="text"]:focus {
    border-color: #ff9f1c;
}

/* Wear Range Slider Styling */
.control-group input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
}

.control-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff9f1c;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 159, 28, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    font-size: 9px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
}

/* Checkbox Toggle Switch */
.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group .label-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider.round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border-radius: 34px;
}

.slider.round:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider.round {
    background-color: #ff9f1c;
}

input:focus + .slider.round {
    box-shadow: 0 0 1px #ff9f1c;
}

input:checked + .slider.round:before {
    transform: translateX(20px);
}

/* Apply button inside Customizer */
#btn-apply-skin {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    font-size: 15px;
}

/* Utility classes */
.hidden {
    display: none !important;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Team View Switcher & Customizer Selector */
.team-view-toggle-container {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-view-team {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-team:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.btn-view-team.active[data-team="2"] {
    background: linear-gradient(135deg, rgba(222, 155, 53, 0.15), rgba(222, 155, 53, 0.05));
    border: 1px solid rgba(222, 155, 53, 0.3);
    color: #de9b35;
    box-shadow: 0 4px 15px rgba(222, 155, 53, 0.1);
}

.btn-view-team.active[data-team="3"] {
    background: linear-gradient(135deg, rgba(75, 109, 255, 0.15), rgba(75, 109, 255, 0.05));
    border: 1px solid rgba(75, 109, 255, 0.3);
    color: #5d7cff;
    box-shadow: 0 4px 15px rgba(75, 109, 255, 0.1);
}

.team-selector-buttons {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.btn-team {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-team:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn-team.active[data-team="both"] {
    background: linear-gradient(135deg, #ff9f1c, #ff4d00);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.2);
}

.btn-team.active[data-team="2"] {
    background: linear-gradient(135deg, #de9b35, #b86214);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(222, 155, 53, 0.2);
}

.btn-team.active[data-team="3"] {
    background: linear-gradient(135deg, #4b6dff, #1d3399);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(75, 109, 255, 0.2);
}

/* Triangular Hover Action Buttons */
.triangle-btn {
    position: absolute;
    width: 36px;
    height: 36px;
    z-index: 15;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease, filter 0.15s ease;
    opacity: 0;
    pointer-events: none; /* Only enable interaction when visible */
}

.skin-card:hover .triangle-btn {
    opacity: 1;
    pointer-events: auto;
}

.triangle-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.triangle-left {
    top: 0;
    left: 0;
    background: #ff9f1c;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    box-shadow: 0 0 10px rgba(255, 159, 28, 0.4);
}

.triangle-left .triangle-icon {
    position: absolute;
    top: 3px;
    left: 4px;
    font-size: 11px;
    color: #000;
}

.triangle-right {
    bottom: 0;
    right: 0;
    background: #eb4b4b;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    box-shadow: 0 0 10px rgba(235, 75, 75, 0.4);
}

.triangle-right .triangle-icon {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 11px;
    color: #fff;
}

/* Stickers Layout */
.stickers-slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.sticker-slot-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
    transition: all 0.2s ease;
}

.sticker-slot-btn.disabled {
    pointer-events: none;
    opacity: 0.3;
    background: rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    cursor: default;
}


.sticker-slot-btn.active-slot {
    border-color: #ff9f1c;
    box-shadow: 0 0 10px rgba(255, 159, 28, 0.2);
    background: rgba(255, 159, 28, 0.1);
}

.sticker-icon-empty {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.sticker-slot-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.sticker-slot-desc {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
    text-transform: uppercase;
}

.sticker-scratch-controls {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}

.btn-remove-sticker-action {
    background: rgba(235, 75, 75, 0.15);
    border: 1px solid rgba(235, 75, 75, 0.3);
    border-radius: 6px;
    color: #eb4b4b;
    padding: 2px 8px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-remove-sticker-action:hover {
    background: rgba(235, 75, 75, 0.3);
    color: #fff;
}

/* Sticker Selector sub-modal */
.sticker-selector-content {
    max-width: 500px !important;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.stickers-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    overflow-y: auto;
    max-height: 50vh;
    padding: 8px;
}

.sticker-select-card {
    background: rgba(22, 26, 37, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sticker-select-card:hover {
    border-color: #ff9f1c;
    transform: translateY(-2px);
    background: rgba(255, 159, 28, 0.05);
}

.sticker-select-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.sticker-select-card span {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
}

