/* Crafting Area */
.crafting-area {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 20px;
}

.crafting-header {
    text-align: center;
    margin-bottom: 20px;
}

.crafting-header h4 {
    margin: 0 0 5px;
}

.crafting-header p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.crafting-slots-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.crafting-slots {
    display: flex;
    gap: 10px;
}

.craft-slot {
    width: 50px;
    aspect-ratio: 2/3;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background-size: cover;
    background-position: center;
    position: relative;
}

.craft-slot:hover {
    border-color: var(--primary-color);
}

.craft-slot.filled {
    border-style: solid;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
}

.crafting-actions {
    text-align: center;
    margin-bottom: 24px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

@media (min-width: 768px) {
    .craft-slot {
        width: 70px;
    }
}