.modal-assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}
.asset-card-modal {
    background: #2d2d3f;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #3a3a4a;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.asset-card-modal:hover {
    border-color: #646cff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 108, 255, 0.2);
}
.asset-thumb {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, rgba(100, 108, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 2rem;
    color: #646cff;
    position: relative;
    overflow: hidden;
}
.asset-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.asset-info-modal h4 {
    color: #e2e2e2;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}
.asset-creator {
    color: #a0a0b0;
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}
.asset-creator a {
    color: #646cff;
    text-decoration: none;
}
.asset-creator a:hover {
    text-decoration: underline;
}
.asset-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.asset-type-badge {
    background: #646cff;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}
.using-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #64ffa3;
    color: #1e1e2e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: bold;
}
.purchased-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #64ffa3;
    color: #1e1e2e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: bold;
}
.purchased-badge {
    background: #646cff;
    color: white;
}
.asset-view-btn {
    background: rgba(100, 108, 255, 0.2);
    border: 1px solid #646cff;
    color: #646cff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.asset-view-btn:hover {
    background: #646cff;
    color: white;
}
.asset-info-modal p {
    color: #a0a0b0;
    font-size: 12px;
    margin-bottom: 10px;
}
.asset-actions {
    display: flex;
    gap: 5px;
}
.clickable-asset-card:hover {
    border-color: #646cff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(100, 108, 255, 0.3) !important;
}
.asset-selection-container {
    margin: 10px 0;
    border: 1px solid #3a3a4a;
    border-radius: 8px;
    padding: 15px;
    background: #252536;
}
.load-more-assets:hover {
    background: #646cff !important;
    color: white !important;
}
.cancel-asset-selection:hover {
    background: #ff6464 !important;
    color: white !important;
}