/*---------- Asset Cards Template ---------*/
.assets-wrapper {
    padding: 30px 40px;
    max-width: 1400px;
    margin: auto;
}

.assets-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00AFFF;
    text-shadow: 0 0 12px #0088cc;
}

.asset-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #00AFFF22;
    background: #0A0F14;
    margin-bottom: 5px;
}

.asset-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asset-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-shrink: 0;
    justify-content: center;
    gap: 20px;
}

.asset-card {
    width: 15rem;
    background: #05070A;
    border: 1px solid #00AFFF33;
    box-shadow: 0 0 18px #00AFFF22;
    border-radius: 12px;
    padding: 15px;
    transition: 0.2s ease;
}

.asset-card:hover {
    box-shadow: 0 0 25px #00AFFF55;
}

.asset-name {
    font-size: 1.2rem;
    color: #00AFFF;
    font-weight: bold;
    text-shadow: 0 0 6px #0077bb;
}

.asset-meta {
    font-size: 0.85rem;
    color: #9ecff5;
    margin-bottom: 6px;
    word-break: break-word;
}

.asset-status {
    margin: 8px 0;
    font-size: 0.9rem;
    font-weight: bold;
}

.asset-actions a {
    color: #00AFFF;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 10px;
}

.asset-actions a:hover {
    text-shadow: 0 0 8px #00AFFF;
}

.empty-msg {
    text-align: center;
    color: #9ecff5;
    font-size: 1.1rem;
    margin-top: 30px;
}

.asset-section { margin-bottom: 25px; }
.asset-box {
    background: #05070A;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #00AFFF25;
    box-shadow: 0 0 18px #00AFFF22;
}
.asset-box h3 { margin-top: 0; }

.asset-img-main {
    max-width: 450px;
    border-radius: 10px;
    border: 1px solid #00AFFF33;
    box-shadow: 0 0 20px #00AFFF33;
}

.asset-gallery img {
    width:150px; height:150px;
    object-fit:cover;
    border-radius:8px;
    border:1px solid #00AFFF33;
    box-shadow:0 0 10px #00AFFF33;
}

.asset_is_deleted {
    color:red;
}

.asset_is_active {
    color:#28c728;
}

.asset_version_label {
    font-size:0.8rem;
    opacity:0.7;
}

.asset-preview {
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    border:1px solid #000;
    margin-bottom:6px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.asset-preview img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.asset-frame {
    position: relative;
    border-radius: 10px;
    padding:2px;
    padding-bottom:-10px;
    margin-bottom:5px;
    height:14.75rem;
    
}

.asset-frame.verified {
    box-shadow: 0 0 18px rgba(0, 180, 255, 0.6);
    border: 1px solid #00aaff;
}

/* Badge must sit ABOVE the image */
.asset-frame .verified-badge {
    width:auto;
    position: absolute;
    font-size: 9px;
    padding: 6px 12px;
    background: rgba(0,180,255,0.10);
    color: #66ccff;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;

}

/* Text */
.neon-marketplace-asset-title {
    font-size: 1.2rem;
    color: #00AFFF;
    font-weight: bold;
    margin-bottom: 6px;
}

.neon-marketplace-asset-title a {
    color: #00AFFF;
    text-decoration: none;
}

.neon-marketplace-meta {
    font-size: 0.8rem;
    color: #9ecff5;
    padding-top: 1px;
    padding-bottom: 1px;
}

.neon-marketplace-meta-lg {
    font-size: 0.9rem;
    color: #9ecff5;
    margin-top: 6px;
}

.neon_card_price_tag {
    font-size: 1.1rem;
    color: var(--mist);
    margin-bottom: 4px;
}
