/* Insights Models Listing CSS
 * Shared styles for game and monetization model listing pages
 */

/* ===== Container ===== */
.models-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* ===== Header ===== */
.models-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.models-header h1 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

/* ===== Card Grid ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ===== Info Card ===== */
.info-card {
    background: linear-gradient(135deg, #1e1f2e 0%, #252835 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    color: #f0f6fc;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* ===== Model Tag ===== */
.model-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    margin-bottom: 1rem;
}

/* ===== Read More Button ===== */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.85rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    transition: left 0.3s ease;
    z-index: -1;
}

.read-more-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4), 0 4px 12px rgba(139, 92, 246, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.read-more-btn:hover::before {
    left: 0;
}

.read-more-btn i {
    transition: transform 0.2s ease;
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e1f2e 0%, #252835 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
}

.empty-state-icon {
    font-size: 4rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .models-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}
