/**
 * Retro Asset Manager Styles
 * Neo-Brutalist / Retro aesthetic
 * Prefixed with 'ram-' to avoid conflicts
 */

:root {
    --ram-color-bg: #f0f0f0;
    --ram-color-card-bg: #ffffff;
    --ram-color-text: #000000;
    --ram-color-border: #000000;
    --ram-color-accent: #2ecc71;
    /* Green */
    --ram-color-accent-2: #3498db;
    /* Blue */
    --ram-color-accent-3: #f1c40f;
    /* Yellow */
    --ram-color-shadow: #000000;

    --ram-border-width: 3px;
    --ram-shadow-depth: 6px;
    --ram-radius: 12px;
}

/* Main Container */
.ram-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    color: var(--ram-color-text);
}

/* Header */
.ram-asset-header {
    margin-bottom: 40px;
}

.ram-breadcrumb {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #666;
}

.ram-breadcrumb a {
    color: var(--ram-color-text);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.ram-breadcrumb a:hover {
    border-color: var(--ram-color-accent);
}

.ram-asset-title {
    font-size: 48px;
    font-weight: 800;
    margin: 10px 0 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.ram-asset-meta {
    display: flex;
    gap: 10px;
}

.ram-badge {
    display: inline-block;
    padding: 6px 12px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    border: 2px solid var(--ram-color-border);
    border-radius: 6px;
    box-shadow: 3px 3px 0 var(--ram-color-shadow);
}

.ram-badge-category {
    background-color: var(--ram-color-accent-2);
    color: white;
}

.ram-badge-price {
    background-color: var(--ram-color-accent-3);
    color: black;
}

/* Grid Layout */
.ram-asset-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .ram-asset-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Section */
.ram-asset-image-container {
    margin-bottom: 40px;
}

.ram-asset-image-frame {
    border: var(--ram-border-width) solid var(--ram-color-border);
    border-radius: var(--ram-radius);
    box-shadow: var(--ram-shadow-depth) var(--ram-shadow-depth) 0 var(--ram-color-shadow);
    overflow: hidden;
    background-color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ram-asset-image-frame:hover {
    transform: translate(-2px, -2px);
    box-shadow: calc(var(--ram-shadow-depth) + 2px) calc(var(--ram-shadow-depth) + 2px) 0 var(--ram-color-shadow);
}

.ram-asset-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Card */
.ram-content-card,
.ram-sidebar-card {
    background-color: var(--ram-color-card-bg);
    border: var(--ram-border-width) solid var(--ram-color-border);
    border-radius: var(--ram-radius);
    box-shadow: var(--ram-shadow-depth) var(--ram-shadow-depth) 0 var(--ram-color-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.ram-section-title,
.ram-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--ram-color-bg);
    text-transform: uppercase;
}

.ram-asset-description p {
    margin-bottom: 15px;
    font-size: 16px;
}

.ram-asset-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.ram-asset-description li {
    margin-bottom: 8px;
    font-weight: 600;
}

/* Sidebar */
.ram-download-card {
    background-color: #fff;
    text-align: center;
}

.ram-download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ram-download-note {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* Details List */
.ram-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ram-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 2px dashed #eee;
}

.ram-detail-item:last-child {
    border-bottom: none;
}

.ram-detail-label {
    font-weight: 600;
    color: #666;
}

.ram-detail-value {
    font-weight: 800;
}

/* Tags */
.ram-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ram-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: #eee;
    border: 2px solid var(--ram-color-border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s;
    cursor: pointer;
}

.ram-tag:hover {
    background-color: var(--ram-color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 2px 2px 0 var(--ram-color-shadow);
}