/* ============================================
   PHYSICAL RECORDS - ARTIFACT SHOP
   ============================================ */

.records-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 200px);
}

.records-header {
    text-align: center;
    margin-bottom: 3rem;
}

.records-description {
    max-width: 700px;
    margin: 1.5rem auto 0;
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.6);
    border-left: 3px solid var(--neon-blue);
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Search & Filter Controls */
.records-controls {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.terminal-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    margin-bottom: 1.5rem;
}

.terminal-input::placeholder {
    color: rgba(0, 217, 255, 0.4);
}

.terminal-input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(0, 217, 255, 0.3);
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

/* Records Catalog */
.records-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Record Card */
.record-card {
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid var(--neon-blue);
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.record-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.record-card.hidden {
    display: none;
}

/* Record Header */
.record-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--neon-blue);
}

.artifact-id {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--neon-blue);
    letter-spacing: 0.1rem;
}

.clearance-tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
    border-radius: 2px;
}

.clearance-tag.open {
    background: rgba(0, 217, 255, 0.2);
    color: var(--neon-blue);
}

.clearance-tag.limited {
    background: rgba(255, 200, 0, 0.2);
    color: #FFC800;
}

.clearance-tag.vibraline-free {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success-green);
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    }
}

/* Record Image */
.record-image {
    width: 100%;
    height: 250px;
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 4rem;
    opacity: 0.5;
}

/* Record Content */
.record-title {
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin: 1.5rem 1.5rem 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.3;
}

.record-description {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
}

.record-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.record-type {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1rem;
}

.record-price {
    font-size: 1.2rem;
    color: var(--neon-blue);
    font-weight: bold;
}

/* Acquire Button */
.acquire-btn {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    text-align: center;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.acquire-btn:hover {
    background: var(--neon-blue);
    color: var(--darker-bg);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

/* Vibraline Notice */
.vibraline-notice {
    max-width: 800px;
    margin: 4rem auto 2rem;
    padding: 2.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--success-green);
    text-align: center;
}

.notice-title {
    font-size: 1.5rem;
    color: var(--success-green);
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.notice-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.notice-text strong {
    color: var(--success-green);
}

.notice-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--success-green);
    color: var(--success-green);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
}

.notice-btn:hover {
    background: var(--success-green);
    color: var(--darker-bg);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .records-catalog {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .records-container {
        padding: 1rem;
    }
    
    .records-catalog {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .vibraline-notice {
        padding: 2rem 1.5rem;
    }
}
