@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-bg: #121212;
    --secondary-bg: #1e1e1e;
    --accent-color: #ff6b00;
    --accent-hover: #e65100;
    --text-light: #f5f5f5;
    --text-gray: #a0a0a0;
    --border-color: #333;
    --card-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

.font-roboto {
    font-family: 'Roboto', sans-serif;
}
.material-card {
    background-color: var(--secondary-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--card-shadow);
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.material-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.material-info {
    padding: 20px;
}

.material-tag {
    background: #333;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.material-property {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.material-property:last-child {
    border-bottom: none;
}